Class: Google::Apis::ClouddeployV1::Rollout

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/clouddeploy_v1/classes.rb,
lib/google/apis/clouddeploy_v1/representations.rb,
lib/google/apis/clouddeploy_v1/representations.rb

Overview

A Rollout resource in the Google Cloud Deploy API. A Rollout contains information around a specific deployment to a Target.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Rollout

Returns a new instance of Rollout.



1529
1530
1531
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1529

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#annotationsHash<String,String>

User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations. Corresponds to the JSON property annotations

Returns:

  • (Hash<String,String>)


1434
1435
1436
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1434

def annotations
  @annotations
end

#approval_stateString

Output only. Approval state of the Rollout. Corresponds to the JSON property approvalState

Returns:

  • (String)


1439
1440
1441
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1439

def approval_state
  @approval_state
end

#approve_timeString

Output only. Time at which the Rollout was approved. Corresponds to the JSON property approveTime

Returns:

  • (String)


1444
1445
1446
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1444

def approve_time
  @approve_time
end

#create_timeString

Output only. Time at which the Rollout was created. Corresponds to the JSON property createTime

Returns:

  • (String)


1449
1450
1451
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1449

def create_time
  @create_time
end

#deploy_end_timeString

Output only. Time at which the Rollout finished deploying. Corresponds to the JSON property deployEndTime

Returns:

  • (String)


1454
1455
1456
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1454

def deploy_end_time
  @deploy_end_time
end

#deploy_failure_causeString

Output only. The reason this rollout failed. This will always be unspecified while the rollout is in progress. Corresponds to the JSON property deployFailureCause

Returns:

  • (String)


1460
1461
1462
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1460

def deploy_failure_cause
  @deploy_failure_cause
end

#deploy_start_timeString

Output only. Time at which the Rollout started deploying. Corresponds to the JSON property deployStartTime

Returns:

  • (String)


1465
1466
1467
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1465

def deploy_start_time
  @deploy_start_time
end

#deploying_buildString

Output only. The resource name of the Cloud Build Build object that is used to deploy the Rollout. Format is projects/project/locations/location/ builds/build`. Corresponds to the JSON propertydeployingBuild`

Returns:

  • (String)


1472
1473
1474
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1472

def deploying_build
  @deploying_build
end

#descriptionString

Description of the Rollout for user purposes. Max length is 255 characters. Corresponds to the JSON property description

Returns:

  • (String)


1477
1478
1479
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1477

def description
  @description
end

#enqueue_timeString

Output only. Time at which the Rollout was enqueued. Corresponds to the JSON property enqueueTime

Returns:

  • (String)


1482
1483
1484
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1482

def enqueue_time
  @enqueue_time
end

#etagString

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. Corresponds to the JSON property etag

Returns:

  • (String)


1489
1490
1491
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1489

def etag
  @etag
end

#failure_reasonString

Output only. Additional information about the rollout failure, if available. Corresponds to the JSON property failureReason

Returns:

  • (String)


1494
1495
1496
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1494

def failure_reason
  @failure_reason
end

#labelsHash<String,String>

Labels are attributes that can be set and used by both the user and by Google 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. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


1505
1506
1507
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1505

def labels
  @labels
end

#nameString

Optional. Name of the Rollout. Format is projects/project/ locations/ location/deliveryPipelines/deliveryPipeline/ releases/release/rollouts/a- z0,62. Corresponds to the JSON property name

Returns:

  • (String)


1512
1513
1514
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1512

def name
  @name
end

#stateString

Output only. Current state of the Rollout. Corresponds to the JSON property state

Returns:

  • (String)


1517
1518
1519
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1517

def state
  @state
end

#target_idString

Required. The ID of Target to which this Rollout is deploying. Corresponds to the JSON property targetId

Returns:

  • (String)


1522
1523
1524
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1522

def target_id
  @target_id
end

#uidString

Output only. Unique identifier of the Rollout. Corresponds to the JSON property uid

Returns:

  • (String)


1527
1528
1529
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1527

def uid
  @uid
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1534

def update!(**args)
  @annotations = args[:annotations] if args.key?(:annotations)
  @approval_state = args[:approval_state] if args.key?(:approval_state)
  @approve_time = args[:approve_time] if args.key?(:approve_time)
  @create_time = args[:create_time] if args.key?(:create_time)
  @deploy_end_time = args[:deploy_end_time] if args.key?(:deploy_end_time)
  @deploy_failure_cause = args[:deploy_failure_cause] if args.key?(:deploy_failure_cause)
  @deploy_start_time = args[:deploy_start_time] if args.key?(:deploy_start_time)
  @deploying_build = args[:deploying_build] if args.key?(:deploying_build)
  @description = args[:description] if args.key?(:description)
  @enqueue_time = args[:enqueue_time] if args.key?(:enqueue_time)
  @etag = args[:etag] if args.key?(:etag)
  @failure_reason = args[:failure_reason] if args.key?(:failure_reason)
  @labels = args[:labels] if args.key?(:labels)
  @name = args[:name] if args.key?(:name)
  @state = args[:state] if args.key?(:state)
  @target_id = args[:target_id] if args.key?(:target_id)
  @uid = args[:uid] if args.key?(:uid)
end