Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions src/CloudOSLogin/SignSshPublicKeyRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,16 @@ class SignSshPublicKeyRequest extends \Google\Model
* @var string
*/
public $appEngineInstance;
/**
* Optional. The Cloud Run resource to sign the SSH public key for. Expected
* formats: - `projects/{project}/locations/{location}/services/{service}` -
* `projects/{project}/locations/{location}/workerPools/{worker_pool}` -
* `projects/{project}/locations/{location}/jobs/{job}` -
* `projects/{project}/locations/{location}/instances/{instance}`
*
* @var string
*/
public $cloudRunResource;
/**
* The Compute instance to sign the SSH public key for. Expected format:
* projects/{project}/zones/{zone}/instances/{numeric_instance_id}
Expand Down Expand Up @@ -66,6 +76,26 @@ public function getAppEngineInstance()
{
return $this->appEngineInstance;
}
/**
* Optional. The Cloud Run resource to sign the SSH public key for. Expected
* formats: - `projects/{project}/locations/{location}/services/{service}` -
* `projects/{project}/locations/{location}/workerPools/{worker_pool}` -
* `projects/{project}/locations/{location}/jobs/{job}` -
* `projects/{project}/locations/{location}/instances/{instance}`
*
* @param string $cloudRunResource
*/
public function setCloudRunResource($cloudRunResource)
{
$this->cloudRunResource = $cloudRunResource;
}
/**
* @return string
*/
public function getCloudRunResource()
{
return $this->cloudRunResource;
}
/**
* The Compute instance to sign the SSH public key for. Expected format:
* projects/{project}/zones/{zone}/instances/{numeric_instance_id}
Expand Down
Loading