1. Packages
  2. Google Cloud Native
  3. API Docs
  4. clouddeploy
  5. clouddeploy/v1
  6. Rollout

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

google-native.clouddeploy/v1.Rollout

Explore with Pulumi AI

google-native logo

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

    Creates a new Rollout in a given project and location. Note - this resource’s API doesn’t support deletion. When deleted, the resource will persist on Google Cloud even though it will be deleted from Pulumi state.

    Create Rollout Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Rollout(name: string, args: RolloutArgs, opts?: CustomResourceOptions);
    @overload
    def Rollout(resource_name: str,
                args: RolloutArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Rollout(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                release_id: Optional[str] = None,
                delivery_pipeline_id: Optional[str] = None,
                target_id: Optional[str] = None,
                rollout_id: Optional[str] = None,
                name: Optional[str] = None,
                location: Optional[str] = None,
                annotations: Optional[Mapping[str, str]] = None,
                project: Optional[str] = None,
                labels: Optional[Mapping[str, str]] = None,
                request_id: Optional[str] = None,
                etag: Optional[str] = None,
                starting_phase_id: Optional[str] = None,
                description: Optional[str] = None)
    func NewRollout(ctx *Context, name string, args RolloutArgs, opts ...ResourceOption) (*Rollout, error)
    public Rollout(string name, RolloutArgs args, CustomResourceOptions? opts = null)
    public Rollout(String name, RolloutArgs args)
    public Rollout(String name, RolloutArgs args, CustomResourceOptions options)
    
    type: google-native:clouddeploy/v1:Rollout
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args RolloutArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args RolloutArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args RolloutArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RolloutArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RolloutArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var rolloutResource = new GoogleNative.CloudDeploy.V1.Rollout("rolloutResource", new()
    {
        ReleaseId = "string",
        DeliveryPipelineId = "string",
        TargetId = "string",
        RolloutId = "string",
        Name = "string",
        Location = "string",
        Annotations = 
        {
            { "string", "string" },
        },
        Project = "string",
        Labels = 
        {
            { "string", "string" },
        },
        RequestId = "string",
        Etag = "string",
        StartingPhaseId = "string",
        Description = "string",
    });
    
    example, err := clouddeploy.NewRollout(ctx, "rolloutResource", &clouddeploy.RolloutArgs{
    ReleaseId: pulumi.String("string"),
    DeliveryPipelineId: pulumi.String("string"),
    TargetId: pulumi.String("string"),
    RolloutId: pulumi.String("string"),
    Name: pulumi.String("string"),
    Location: pulumi.String("string"),
    Annotations: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    Project: pulumi.String("string"),
    Labels: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    RequestId: pulumi.String("string"),
    Etag: pulumi.String("string"),
    StartingPhaseId: pulumi.String("string"),
    Description: pulumi.String("string"),
    })
    
    var rolloutResource = new Rollout("rolloutResource", RolloutArgs.builder()        
        .releaseId("string")
        .deliveryPipelineId("string")
        .targetId("string")
        .rolloutId("string")
        .name("string")
        .location("string")
        .annotations(Map.of("string", "string"))
        .project("string")
        .labels(Map.of("string", "string"))
        .requestId("string")
        .etag("string")
        .startingPhaseId("string")
        .description("string")
        .build());
    
    rollout_resource = google_native.clouddeploy.v1.Rollout("rolloutResource",
        release_id="string",
        delivery_pipeline_id="string",
        target_id="string",
        rollout_id="string",
        name="string",
        location="string",
        annotations={
            "string": "string",
        },
        project="string",
        labels={
            "string": "string",
        },
        request_id="string",
        etag="string",
        starting_phase_id="string",
        description="string")
    
    const rolloutResource = new google_native.clouddeploy.v1.Rollout("rolloutResource", {
        releaseId: "string",
        deliveryPipelineId: "string",
        targetId: "string",
        rolloutId: "string",
        name: "string",
        location: "string",
        annotations: {
            string: "string",
        },
        project: "string",
        labels: {
            string: "string",
        },
        requestId: "string",
        etag: "string",
        startingPhaseId: "string",
        description: "string",
    });
    
    type: google-native:clouddeploy/v1:Rollout
    properties:
        annotations:
            string: string
        deliveryPipelineId: string
        description: string
        etag: string
        labels:
            string: string
        location: string
        name: string
        project: string
        releaseId: string
        requestId: string
        rolloutId: string
        startingPhaseId: string
        targetId: string
    

    Rollout Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Rollout resource accepts the following input properties:

    DeliveryPipelineId string
    ReleaseId string
    RolloutId string
    Required. ID of the Rollout.
    TargetId string
    The ID of Target to which this Rollout is deploying.
    Annotations Dictionary<string, string>
    User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.
    Description string
    Description of the Rollout for user purposes. Max length is 255 characters.
    Etag string
    This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
    Labels Dictionary<string, string>
    Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 128 bytes.
    Location string
    Name string
    Optional. Name of the Rollout. Format is projects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/{release}/rollouts/a-z{0,62}.
    Project string
    RequestId string
    Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
    StartingPhaseId string
    Optional. The starting phase ID for the Rollout. If empty the Rollout will start at the first phase.
    DeliveryPipelineId string
    ReleaseId string
    RolloutId string
    Required. ID of the Rollout.
    TargetId string
    The ID of Target to which this Rollout is deploying.
    Annotations map[string]string
    User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.
    Description string
    Description of the Rollout for user purposes. Max length is 255 characters.
    Etag string
    This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
    Labels map[string]string
    Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 128 bytes.
    Location string
    Name string
    Optional. Name of the Rollout. Format is projects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/{release}/rollouts/a-z{0,62}.
    Project string
    RequestId string
    Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
    StartingPhaseId string
    Optional. The starting phase ID for the Rollout. If empty the Rollout will start at the first phase.
    deliveryPipelineId String
    releaseId String
    rolloutId String
    Required. ID of the Rollout.
    targetId String
    The ID of Target to which this Rollout is deploying.
    annotations Map<String,String>
    User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.
    description String
    Description of the Rollout for user purposes. Max length is 255 characters.
    etag String
    This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
    labels Map<String,String>
    Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 128 bytes.
    location String
    name String
    Optional. Name of the Rollout. Format is projects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/{release}/rollouts/a-z{0,62}.
    project String
    requestId String
    Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
    startingPhaseId String
    Optional. The starting phase ID for the Rollout. If empty the Rollout will start at the first phase.
    deliveryPipelineId string
    releaseId string
    rolloutId string
    Required. ID of the Rollout.
    targetId string
    The ID of Target to which this Rollout is deploying.
    annotations {[key: string]: string}
    User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.
    description string
    Description of the Rollout for user purposes. Max length is 255 characters.
    etag string
    This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
    labels {[key: string]: string}
    Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 128 bytes.
    location string
    name string
    Optional. Name of the Rollout. Format is projects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/{release}/rollouts/a-z{0,62}.
    project string
    requestId string
    Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
    startingPhaseId string
    Optional. The starting phase ID for the Rollout. If empty the Rollout will start at the first phase.
    delivery_pipeline_id str
    release_id str
    rollout_id str
    Required. ID of the Rollout.
    target_id str
    The ID of Target to which this Rollout is deploying.
    annotations Mapping[str, str]
    User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.
    description str
    Description of the Rollout for user purposes. Max length is 255 characters.
    etag str
    This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
    labels Mapping[str, str]
    Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 128 bytes.
    location str
    name str
    Optional. Name of the Rollout. Format is projects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/{release}/rollouts/a-z{0,62}.
    project str
    request_id str
    Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
    starting_phase_id str
    Optional. The starting phase ID for the Rollout. If empty the Rollout will start at the first phase.
    deliveryPipelineId String
    releaseId String
    rolloutId String
    Required. ID of the Rollout.
    targetId String
    The ID of Target to which this Rollout is deploying.
    annotations Map<String>
    User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.
    description String
    Description of the Rollout for user purposes. Max length is 255 characters.
    etag String
    This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
    labels Map<String>
    Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 128 bytes.
    location String
    name String
    Optional. Name of the Rollout. Format is projects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/{release}/rollouts/a-z{0,62}.
    project String
    requestId String
    Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
    startingPhaseId String
    Optional. The starting phase ID for the Rollout. If empty the Rollout will start at the first phase.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Rollout resource produces the following output properties:

    ApprovalState string
    Approval state of the Rollout.
    ApproveTime string
    Time at which the Rollout was approved.
    ControllerRollout string
    Name of the ControllerRollout. Format is projects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/{release}/rollouts/a-z{0,62}.
    CreateTime string
    Time at which the Rollout was created.
    DeployEndTime string
    Time at which the Rollout finished deploying.
    DeployFailureCause string
    The reason this rollout failed. This will always be unspecified while the rollout is in progress.
    DeployStartTime string
    Time at which the Rollout started deploying.
    DeployingBuild string
    The resource name of the Cloud Build Build object that is used to deploy the Rollout. Format is projects/{project}/locations/{location}/builds/{build}.
    EnqueueTime string
    Time at which the Rollout was enqueued.
    FailureReason string
    Additional information about the rollout failure, if available.
    Id string
    The provider-assigned unique ID for this managed resource.
    Metadata Pulumi.GoogleNative.CloudDeploy.V1.Outputs.MetadataResponse
    Metadata contains information about the rollout.
    Phases List<Pulumi.GoogleNative.CloudDeploy.V1.Outputs.PhaseResponse>
    The phases that represent the workflows of this Rollout.
    RollbackOfRollout string
    Name of the Rollout that is rolled back by this Rollout. Empty if this Rollout wasn't created as a rollback.
    RolledBackByRollouts List<string>
    Names of Rollouts that rolled back this Rollout.
    State string
    Current state of the Rollout.
    Uid string
    Unique identifier of the Rollout.
    ApprovalState string
    Approval state of the Rollout.
    ApproveTime string
    Time at which the Rollout was approved.
    ControllerRollout string
    Name of the ControllerRollout. Format is projects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/{release}/rollouts/a-z{0,62}.
    CreateTime string
    Time at which the Rollout was created.
    DeployEndTime string
    Time at which the Rollout finished deploying.
    DeployFailureCause string
    The reason this rollout failed. This will always be unspecified while the rollout is in progress.
    DeployStartTime string
    Time at which the Rollout started deploying.
    DeployingBuild string
    The resource name of the Cloud Build Build object that is used to deploy the Rollout. Format is projects/{project}/locations/{location}/builds/{build}.
    EnqueueTime string
    Time at which the Rollout was enqueued.
    FailureReason string
    Additional information about the rollout failure, if available.
    Id string
    The provider-assigned unique ID for this managed resource.
    Metadata MetadataResponse
    Metadata contains information about the rollout.
    Phases []PhaseResponse
    The phases that represent the workflows of this Rollout.
    RollbackOfRollout string
    Name of the Rollout that is rolled back by this Rollout. Empty if this Rollout wasn't created as a rollback.
    RolledBackByRollouts []string
    Names of Rollouts that rolled back this Rollout.
    State string
    Current state of the Rollout.
    Uid string
    Unique identifier of the Rollout.
    approvalState String
    Approval state of the Rollout.
    approveTime String
    Time at which the Rollout was approved.
    controllerRollout String
    Name of the ControllerRollout. Format is projects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/{release}/rollouts/a-z{0,62}.
    createTime String
    Time at which the Rollout was created.
    deployEndTime String
    Time at which the Rollout finished deploying.
    deployFailureCause String
    The reason this rollout failed. This will always be unspecified while the rollout is in progress.
    deployStartTime String
    Time at which the Rollout started deploying.
    deployingBuild String
    The resource name of the Cloud Build Build object that is used to deploy the Rollout. Format is projects/{project}/locations/{location}/builds/{build}.
    enqueueTime String
    Time at which the Rollout was enqueued.
    failureReason String
    Additional information about the rollout failure, if available.
    id String
    The provider-assigned unique ID for this managed resource.
    metadata MetadataResponse
    Metadata contains information about the rollout.
    phases List<PhaseResponse>
    The phases that represent the workflows of this Rollout.
    rollbackOfRollout String
    Name of the Rollout that is rolled back by this Rollout. Empty if this Rollout wasn't created as a rollback.
    rolledBackByRollouts List<String>
    Names of Rollouts that rolled back this Rollout.
    state String
    Current state of the Rollout.
    uid String
    Unique identifier of the Rollout.
    approvalState string
    Approval state of the Rollout.
    approveTime string
    Time at which the Rollout was approved.
    controllerRollout string
    Name of the ControllerRollout. Format is projects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/{release}/rollouts/a-z{0,62}.
    createTime string
    Time at which the Rollout was created.
    deployEndTime string
    Time at which the Rollout finished deploying.
    deployFailureCause string
    The reason this rollout failed. This will always be unspecified while the rollout is in progress.
    deployStartTime string
    Time at which the Rollout started deploying.
    deployingBuild string
    The resource name of the Cloud Build Build object that is used to deploy the Rollout. Format is projects/{project}/locations/{location}/builds/{build}.
    enqueueTime string
    Time at which the Rollout was enqueued.
    failureReason string
    Additional information about the rollout failure, if available.
    id string
    The provider-assigned unique ID for this managed resource.
    metadata MetadataResponse
    Metadata contains information about the rollout.
    phases PhaseResponse[]
    The phases that represent the workflows of this Rollout.
    rollbackOfRollout string
    Name of the Rollout that is rolled back by this Rollout. Empty if this Rollout wasn't created as a rollback.
    rolledBackByRollouts string[]
    Names of Rollouts that rolled back this Rollout.
    state string
    Current state of the Rollout.
    uid string
    Unique identifier of the Rollout.
    approval_state str
    Approval state of the Rollout.
    approve_time str
    Time at which the Rollout was approved.
    controller_rollout str
    Name of the ControllerRollout. Format is projects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/{release}/rollouts/a-z{0,62}.
    create_time str
    Time at which the Rollout was created.
    deploy_end_time str
    Time at which the Rollout finished deploying.
    deploy_failure_cause str
    The reason this rollout failed. This will always be unspecified while the rollout is in progress.
    deploy_start_time str
    Time at which the Rollout started deploying.
    deploying_build str
    The resource name of the Cloud Build Build object that is used to deploy the Rollout. Format is projects/{project}/locations/{location}/builds/{build}.
    enqueue_time str
    Time at which the Rollout was enqueued.
    failure_reason str
    Additional information about the rollout failure, if available.
    id str
    The provider-assigned unique ID for this managed resource.
    metadata MetadataResponse
    Metadata contains information about the rollout.
    phases Sequence[PhaseResponse]
    The phases that represent the workflows of this Rollout.
    rollback_of_rollout str
    Name of the Rollout that is rolled back by this Rollout. Empty if this Rollout wasn't created as a rollback.
    rolled_back_by_rollouts Sequence[str]
    Names of Rollouts that rolled back this Rollout.
    state str
    Current state of the Rollout.
    uid str
    Unique identifier of the Rollout.
    approvalState String
    Approval state of the Rollout.
    approveTime String
    Time at which the Rollout was approved.
    controllerRollout String
    Name of the ControllerRollout. Format is projects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/{release}/rollouts/a-z{0,62}.
    createTime String
    Time at which the Rollout was created.
    deployEndTime String
    Time at which the Rollout finished deploying.
    deployFailureCause String
    The reason this rollout failed. This will always be unspecified while the rollout is in progress.
    deployStartTime String
    Time at which the Rollout started deploying.
    deployingBuild String
    The resource name of the Cloud Build Build object that is used to deploy the Rollout. Format is projects/{project}/locations/{location}/builds/{build}.
    enqueueTime String
    Time at which the Rollout was enqueued.
    failureReason String
    Additional information about the rollout failure, if available.
    id String
    The provider-assigned unique ID for this managed resource.
    metadata Property Map
    Metadata contains information about the rollout.
    phases List<Property Map>
    The phases that represent the workflows of this Rollout.
    rollbackOfRollout String
    Name of the Rollout that is rolled back by this Rollout. Empty if this Rollout wasn't created as a rollback.
    rolledBackByRollouts List<String>
    Names of Rollouts that rolled back this Rollout.
    state String
    Current state of the Rollout.
    uid String
    Unique identifier of the Rollout.

    Supporting Types

    AutomationRolloutMetadataResponse, AutomationRolloutMetadataResponseArgs

    AdvanceAutomationRuns List<string>
    The IDs of the AutomationRuns initiated by an advance rollout rule.
    PromoteAutomationRun string
    The ID of the AutomationRun initiated by a promote release rule.
    RepairAutomationRuns List<string>
    The IDs of the AutomationRuns initiated by a repair rollout rule.
    AdvanceAutomationRuns []string
    The IDs of the AutomationRuns initiated by an advance rollout rule.
    PromoteAutomationRun string
    The ID of the AutomationRun initiated by a promote release rule.
    RepairAutomationRuns []string
    The IDs of the AutomationRuns initiated by a repair rollout rule.
    advanceAutomationRuns List<String>
    The IDs of the AutomationRuns initiated by an advance rollout rule.
    promoteAutomationRun String
    The ID of the AutomationRun initiated by a promote release rule.
    repairAutomationRuns List<String>
    The IDs of the AutomationRuns initiated by a repair rollout rule.
    advanceAutomationRuns string[]
    The IDs of the AutomationRuns initiated by an advance rollout rule.
    promoteAutomationRun string
    The ID of the AutomationRun initiated by a promote release rule.
    repairAutomationRuns string[]
    The IDs of the AutomationRuns initiated by a repair rollout rule.
    advance_automation_runs Sequence[str]
    The IDs of the AutomationRuns initiated by an advance rollout rule.
    promote_automation_run str
    The ID of the AutomationRun initiated by a promote release rule.
    repair_automation_runs Sequence[str]
    The IDs of the AutomationRuns initiated by a repair rollout rule.
    advanceAutomationRuns List<String>
    The IDs of the AutomationRuns initiated by an advance rollout rule.
    promoteAutomationRun String
    The ID of the AutomationRun initiated by a promote release rule.
    repairAutomationRuns List<String>
    The IDs of the AutomationRuns initiated by a repair rollout rule.

    ChildRolloutJobsResponse, ChildRolloutJobsResponseArgs

    AdvanceRolloutJobs []JobResponse
    List of AdvanceChildRolloutJobs
    CreateRolloutJobs []JobResponse
    List of CreateChildRolloutJobs
    advanceRolloutJobs List<JobResponse>
    List of AdvanceChildRolloutJobs
    createRolloutJobs List<JobResponse>
    List of CreateChildRolloutJobs
    advanceRolloutJobs JobResponse[]
    List of AdvanceChildRolloutJobs
    createRolloutJobs JobResponse[]
    List of CreateChildRolloutJobs
    advance_rollout_jobs Sequence[JobResponse]
    List of AdvanceChildRolloutJobs
    create_rollout_jobs Sequence[JobResponse]
    List of CreateChildRolloutJobs
    advanceRolloutJobs List<Property Map>
    List of AdvanceChildRolloutJobs
    createRolloutJobs List<Property Map>
    List of CreateChildRolloutJobs

    CloudRunMetadataResponse, CloudRunMetadataResponseArgs

    Job string
    The name of the Cloud Run job that is associated with a Rollout. Format is projects/{project}/locations/{location}/jobs/{job_name}.
    Revision string
    The Cloud Run Revision id associated with a Rollout.
    Service string
    The name of the Cloud Run Service that is associated with a Rollout. Format is projects/{project}/locations/{location}/services/{service}.
    ServiceUrls List<string>
    The Cloud Run Service urls that are associated with a Rollout.
    Job string
    The name of the Cloud Run job that is associated with a Rollout. Format is projects/{project}/locations/{location}/jobs/{job_name}.
    Revision string
    The Cloud Run Revision id associated with a Rollout.
    Service string
    The name of the Cloud Run Service that is associated with a Rollout. Format is projects/{project}/locations/{location}/services/{service}.
    ServiceUrls []string
    The Cloud Run Service urls that are associated with a Rollout.
    job String
    The name of the Cloud Run job that is associated with a Rollout. Format is projects/{project}/locations/{location}/jobs/{job_name}.
    revision String
    The Cloud Run Revision id associated with a Rollout.
    service String
    The name of the Cloud Run Service that is associated with a Rollout. Format is projects/{project}/locations/{location}/services/{service}.
    serviceUrls List<String>
    The Cloud Run Service urls that are associated with a Rollout.
    job string
    The name of the Cloud Run job that is associated with a Rollout. Format is projects/{project}/locations/{location}/jobs/{job_name}.
    revision string
    The Cloud Run Revision id associated with a Rollout.
    service string
    The name of the Cloud Run Service that is associated with a Rollout. Format is projects/{project}/locations/{location}/services/{service}.
    serviceUrls string[]
    The Cloud Run Service urls that are associated with a Rollout.
    job str
    The name of the Cloud Run job that is associated with a Rollout. Format is projects/{project}/locations/{location}/jobs/{job_name}.
    revision str
    The Cloud Run Revision id associated with a Rollout.
    service str
    The name of the Cloud Run Service that is associated with a Rollout. Format is projects/{project}/locations/{location}/services/{service}.
    service_urls Sequence[str]
    The Cloud Run Service urls that are associated with a Rollout.
    job String
    The name of the Cloud Run job that is associated with a Rollout. Format is projects/{project}/locations/{location}/jobs/{job_name}.
    revision String
    The Cloud Run Revision id associated with a Rollout.
    service String
    The name of the Cloud Run Service that is associated with a Rollout. Format is projects/{project}/locations/{location}/services/{service}.
    serviceUrls List<String>
    The Cloud Run Service urls that are associated with a Rollout.

    DeploymentJobsResponse, DeploymentJobsResponseArgs

    DeployJob Pulumi.GoogleNative.CloudDeploy.V1.Inputs.JobResponse
    The deploy Job. This is the deploy job in the phase.
    PostdeployJob Pulumi.GoogleNative.CloudDeploy.V1.Inputs.JobResponse
    The postdeploy Job, which is the last job on the phase.
    PredeployJob Pulumi.GoogleNative.CloudDeploy.V1.Inputs.JobResponse
    The predeploy Job, which is the first job on the phase.
    VerifyJob Pulumi.GoogleNative.CloudDeploy.V1.Inputs.JobResponse
    The verify Job. Runs after a deploy if the deploy succeeds.
    DeployJob JobResponse
    The deploy Job. This is the deploy job in the phase.
    PostdeployJob JobResponse
    The postdeploy Job, which is the last job on the phase.
    PredeployJob JobResponse
    The predeploy Job, which is the first job on the phase.
    VerifyJob JobResponse
    The verify Job. Runs after a deploy if the deploy succeeds.
    deployJob JobResponse
    The deploy Job. This is the deploy job in the phase.
    postdeployJob JobResponse
    The postdeploy Job, which is the last job on the phase.
    predeployJob JobResponse
    The predeploy Job, which is the first job on the phase.
    verifyJob JobResponse
    The verify Job. Runs after a deploy if the deploy succeeds.
    deployJob JobResponse
    The deploy Job. This is the deploy job in the phase.
    postdeployJob JobResponse
    The postdeploy Job, which is the last job on the phase.
    predeployJob JobResponse
    The predeploy Job, which is the first job on the phase.
    verifyJob JobResponse
    The verify Job. Runs after a deploy if the deploy succeeds.
    deploy_job JobResponse
    The deploy Job. This is the deploy job in the phase.
    postdeploy_job JobResponse
    The postdeploy Job, which is the last job on the phase.
    predeploy_job JobResponse
    The predeploy Job, which is the first job on the phase.
    verify_job JobResponse
    The verify Job. Runs after a deploy if the deploy succeeds.
    deployJob Property Map
    The deploy Job. This is the deploy job in the phase.
    postdeployJob Property Map
    The postdeploy Job, which is the last job on the phase.
    predeployJob Property Map
    The predeploy Job, which is the first job on the phase.
    verifyJob Property Map
    The verify Job. Runs after a deploy if the deploy succeeds.

    JobResponse, JobResponseArgs

    AdvanceChildRolloutJob Pulumi.GoogleNative.CloudDeploy.V1.Inputs.AdvanceChildRolloutJobResponse
    An advanceChildRollout Job.
    CreateChildRolloutJob Pulumi.GoogleNative.CloudDeploy.V1.Inputs.CreateChildRolloutJobResponse
    A createChildRollout Job.
    DeployJob Pulumi.GoogleNative.CloudDeploy.V1.Inputs.DeployJobResponse
    A deploy Job.
    JobRun string
    The name of the JobRun responsible for the most recent invocation of this Job.
    PostdeployJob Pulumi.GoogleNative.CloudDeploy.V1.Inputs.PostdeployJobResponse
    A postdeploy Job.
    PredeployJob Pulumi.GoogleNative.CloudDeploy.V1.Inputs.PredeployJobResponse
    A predeploy Job.
    SkipMessage string
    Additional information on why the Job was skipped, if available.
    State string
    The current state of the Job.
    VerifyJob Pulumi.GoogleNative.CloudDeploy.V1.Inputs.VerifyJobResponse
    A verify Job.
    AdvanceChildRolloutJob AdvanceChildRolloutJobResponse
    An advanceChildRollout Job.
    CreateChildRolloutJob CreateChildRolloutJobResponse
    A createChildRollout Job.
    DeployJob DeployJobResponse
    A deploy Job.
    JobRun string
    The name of the JobRun responsible for the most recent invocation of this Job.
    PostdeployJob PostdeployJobResponse
    A postdeploy Job.
    PredeployJob PredeployJobResponse
    A predeploy Job.
    SkipMessage string
    Additional information on why the Job was skipped, if available.
    State string
    The current state of the Job.
    VerifyJob VerifyJobResponse
    A verify Job.
    advanceChildRolloutJob AdvanceChildRolloutJobResponse
    An advanceChildRollout Job.
    createChildRolloutJob CreateChildRolloutJobResponse
    A createChildRollout Job.
    deployJob DeployJobResponse
    A deploy Job.
    jobRun String
    The name of the JobRun responsible for the most recent invocation of this Job.
    postdeployJob PostdeployJobResponse
    A postdeploy Job.
    predeployJob PredeployJobResponse
    A predeploy Job.
    skipMessage String
    Additional information on why the Job was skipped, if available.
    state String
    The current state of the Job.
    verifyJob VerifyJobResponse
    A verify Job.
    advanceChildRolloutJob AdvanceChildRolloutJobResponse
    An advanceChildRollout Job.
    createChildRolloutJob CreateChildRolloutJobResponse
    A createChildRollout Job.
    deployJob DeployJobResponse
    A deploy Job.
    jobRun string
    The name of the JobRun responsible for the most recent invocation of this Job.
    postdeployJob PostdeployJobResponse
    A postdeploy Job.
    predeployJob PredeployJobResponse
    A predeploy Job.
    skipMessage string
    Additional information on why the Job was skipped, if available.
    state string
    The current state of the Job.
    verifyJob VerifyJobResponse
    A verify Job.
    advance_child_rollout_job AdvanceChildRolloutJobResponse
    An advanceChildRollout Job.
    create_child_rollout_job CreateChildRolloutJobResponse
    A createChildRollout Job.
    deploy_job DeployJobResponse
    A deploy Job.
    job_run str
    The name of the JobRun responsible for the most recent invocation of this Job.
    postdeploy_job PostdeployJobResponse
    A postdeploy Job.
    predeploy_job PredeployJobResponse
    A predeploy Job.
    skip_message str
    Additional information on why the Job was skipped, if available.
    state str
    The current state of the Job.
    verify_job VerifyJobResponse
    A verify Job.
    advanceChildRolloutJob Property Map
    An advanceChildRollout Job.
    createChildRolloutJob Property Map
    A createChildRollout Job.
    deployJob Property Map
    A deploy Job.
    jobRun String
    The name of the JobRun responsible for the most recent invocation of this Job.
    postdeployJob Property Map
    A postdeploy Job.
    predeployJob Property Map
    A predeploy Job.
    skipMessage String
    Additional information on why the Job was skipped, if available.
    state String
    The current state of the Job.
    verifyJob Property Map
    A verify Job.

    MetadataResponse, MetadataResponseArgs

    Automation Pulumi.GoogleNative.CloudDeploy.V1.Inputs.AutomationRolloutMetadataResponse
    AutomationRolloutMetadata contains the information about the interactions between Automation service and this rollout.
    CloudRun Pulumi.GoogleNative.CloudDeploy.V1.Inputs.CloudRunMetadataResponse
    The name of the Cloud Run Service that is associated with a Rollout.
    Automation AutomationRolloutMetadataResponse
    AutomationRolloutMetadata contains the information about the interactions between Automation service and this rollout.
    CloudRun CloudRunMetadataResponse
    The name of the Cloud Run Service that is associated with a Rollout.
    automation AutomationRolloutMetadataResponse
    AutomationRolloutMetadata contains the information about the interactions between Automation service and this rollout.
    cloudRun CloudRunMetadataResponse
    The name of the Cloud Run Service that is associated with a Rollout.
    automation AutomationRolloutMetadataResponse
    AutomationRolloutMetadata contains the information about the interactions between Automation service and this rollout.
    cloudRun CloudRunMetadataResponse
    The name of the Cloud Run Service that is associated with a Rollout.
    automation AutomationRolloutMetadataResponse
    AutomationRolloutMetadata contains the information about the interactions between Automation service and this rollout.
    cloud_run CloudRunMetadataResponse
    The name of the Cloud Run Service that is associated with a Rollout.
    automation Property Map
    AutomationRolloutMetadata contains the information about the interactions between Automation service and this rollout.
    cloudRun Property Map
    The name of the Cloud Run Service that is associated with a Rollout.

    PhaseResponse, PhaseResponseArgs

    ChildRolloutJobs Pulumi.GoogleNative.CloudDeploy.V1.Inputs.ChildRolloutJobsResponse
    ChildRollout job composition.
    DeploymentJobs Pulumi.GoogleNative.CloudDeploy.V1.Inputs.DeploymentJobsResponse
    Deployment job composition.
    SkipMessage string
    Additional information on why the Phase was skipped, if available.
    State string
    Current state of the Phase.
    ChildRolloutJobs ChildRolloutJobsResponse
    ChildRollout job composition.
    DeploymentJobs DeploymentJobsResponse
    Deployment job composition.
    SkipMessage string
    Additional information on why the Phase was skipped, if available.
    State string
    Current state of the Phase.
    childRolloutJobs ChildRolloutJobsResponse
    ChildRollout job composition.
    deploymentJobs DeploymentJobsResponse
    Deployment job composition.
    skipMessage String
    Additional information on why the Phase was skipped, if available.
    state String
    Current state of the Phase.
    childRolloutJobs ChildRolloutJobsResponse
    ChildRollout job composition.
    deploymentJobs DeploymentJobsResponse
    Deployment job composition.
    skipMessage string
    Additional information on why the Phase was skipped, if available.
    state string
    Current state of the Phase.
    child_rollout_jobs ChildRolloutJobsResponse
    ChildRollout job composition.
    deployment_jobs DeploymentJobsResponse
    Deployment job composition.
    skip_message str
    Additional information on why the Phase was skipped, if available.
    state str
    Current state of the Phase.
    childRolloutJobs Property Map
    ChildRollout job composition.
    deploymentJobs Property Map
    Deployment job composition.
    skipMessage String
    Additional information on why the Phase was skipped, if available.
    state String
    Current state of the Phase.

    PostdeployJobResponse, PostdeployJobResponseArgs

    Actions List<string>
    The custom actions that the postdeploy Job executes.
    Actions []string
    The custom actions that the postdeploy Job executes.
    actions List<String>
    The custom actions that the postdeploy Job executes.
    actions string[]
    The custom actions that the postdeploy Job executes.
    actions Sequence[str]
    The custom actions that the postdeploy Job executes.
    actions List<String>
    The custom actions that the postdeploy Job executes.

    PredeployJobResponse, PredeployJobResponseArgs

    Actions List<string>
    The custom actions that the predeploy Job executes.
    Actions []string
    The custom actions that the predeploy Job executes.
    actions List<String>
    The custom actions that the predeploy Job executes.
    actions string[]
    The custom actions that the predeploy Job executes.
    actions Sequence[str]
    The custom actions that the predeploy Job executes.
    actions List<String>
    The custom actions that the predeploy Job executes.

    Package Details

    Repository
    Google Cloud Native pulumi/pulumi-google-native
    License
    Apache-2.0
    google-native logo

    Google Cloud Native is in preview. Google Cloud Classic is fully supported.

    Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi