Telco Automation v1 API - Class SearchDeploymentRevisionsRequest (1.0.0)

public sealed class SearchDeploymentRevisionsRequest : IMessage<SearchDeploymentRevisionsRequest>, IEquatable<SearchDeploymentRevisionsRequest>, IDeepCloneable<SearchDeploymentRevisionsRequest>, IBufferMessage, IMessage, IPageRequest

Reference documentation and code samples for the Telco Automation v1 API class SearchDeploymentRevisionsRequest.

Request object for SearchDeploymentRevisions.

Inheritance

object > SearchDeploymentRevisionsRequest

Namespace

Google.Cloud.TelcoAutomation.V1

Assembly

Google.Cloud.TelcoAutomation.V1.dll

Constructors

SearchDeploymentRevisionsRequest()

public SearchDeploymentRevisionsRequest()

SearchDeploymentRevisionsRequest(SearchDeploymentRevisionsRequest)

public SearchDeploymentRevisionsRequest(SearchDeploymentRevisionsRequest other)
Parameter
NameDescription
otherSearchDeploymentRevisionsRequest

Properties

PageSize

public int PageSize { get; set; }

Optional. The maximum number of deployment revisions to return per page. max page size = 100, default page size = 20.

Property Value
TypeDescription
int

PageToken

public string PageToken { get; set; }

Optional. The page token, received from a previous search call. It can be provided to retrieve the subsequent page.

Property Value
TypeDescription
string

Parent

public string Parent { get; set; }

Required. The name of parent orchestration cluster resource. Format should be - "projects/{project_id}/locations/{location_name}/orchestrationClusters/{orchestration_cluster}".

Property Value
TypeDescription
string

ParentAsOrchestrationClusterName

public OrchestrationClusterName ParentAsOrchestrationClusterName { get; set; }

OrchestrationClusterName-typed view over the Parent resource name property.

Property Value
TypeDescription
OrchestrationClusterName

Query

public string Query { get; set; }

Required. Supported queries:

  1. "" : Lists all revisions across all deployments.
  2. "latest=true" : Lists latest revisions across all deployments.
  3. "name={name}" : Lists all revisions of deployment with name {name}.
  4. "name={name} latest=true": Lists latest revision of deployment with name {name}
Property Value
TypeDescription
string