Class: Google::Apis::ClouddeployV1::DeliveryPipeline
- Inherits:
-
Object
- Object
- Google::Apis::ClouddeployV1::DeliveryPipeline
- 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 DeliveryPipeline resource in the Cloud Deploy API. A DeliveryPipeline
defines a pipeline through which a Skaffold configuration can progress.
Instance Attribute Summary collapse
-
#annotations ⇒ Hash<String,String>
User annotations.
-
#condition ⇒ Google::Apis::ClouddeployV1::PipelineCondition
PipelineCondition contains all conditions relevant to a Delivery Pipeline.
-
#create_time ⇒ String
Output only.
-
#description ⇒ String
Description of the
DeliveryPipeline. -
#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 ⇒ Hash<String,String>
Labels are attributes that can be set and used by both the user and by Cloud Deploy.
-
#name ⇒ String
Optional.
-
#serial_pipeline ⇒ Google::Apis::ClouddeployV1::SerialPipeline
SerialPipeline defines a sequential set of stages for a
DeliveryPipeline. -
#suspended ⇒ Boolean
(also: #suspended?)
When suspended, no new releases or rollouts can be created, but in-progress ones will complete.
-
#uid ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeliveryPipeline
constructor
A new instance of DeliveryPipeline.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DeliveryPipeline
Returns a new instance of DeliveryPipeline.
914 915 916 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 914 def initialize(**args) update!(**args) end |
Instance Attribute Details
#annotations ⇒ Hash<String,String>
User annotations. These attributes can only be set and used by the user, and
not by Cloud Deploy.
Corresponds to the JSON property annotations
851 852 853 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 851 def annotations @annotations end |
#condition ⇒ Google::Apis::ClouddeployV1::PipelineCondition
PipelineCondition contains all conditions relevant to a Delivery Pipeline.
Corresponds to the JSON property condition
856 857 858 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 856 def condition @condition end |
#create_time ⇒ String
Output only. Time at which the pipeline was created.
Corresponds to the JSON property createTime
861 862 863 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 861 def create_time @create_time end |
#description ⇒ String
Description of the DeliveryPipeline. Max length is 255 characters.
Corresponds to the JSON property description
866 867 868 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 866 def description @description end |
#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.
Corresponds to the JSON property etag
873 874 875 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 873 def etag @etag end |
#labels ⇒ Hash<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.
Corresponds to the JSON property
labels
884 885 886 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 884 def labels @labels end |
#name ⇒ String
Optional. Name of the DeliveryPipeline. Format is projects/project/
locations/location/deliveryPipelines/a-z0,62.
Corresponds to the JSON property name
890 891 892 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 890 def name @name end |
#serial_pipeline ⇒ Google::Apis::ClouddeployV1::SerialPipeline
SerialPipeline defines a sequential set of stages for a DeliveryPipeline.
Corresponds to the JSON property serialPipeline
895 896 897 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 895 def serial_pipeline @serial_pipeline end |
#suspended ⇒ Boolean Also known as: suspended?
When suspended, no new releases or rollouts can be created, but in-progress
ones will complete.
Corresponds to the JSON property suspended
901 902 903 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 901 def suspended @suspended end |
#uid ⇒ String
Output only. Unique identifier of the DeliveryPipeline.
Corresponds to the JSON property uid
907 908 909 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 907 def uid @uid end |
#update_time ⇒ String
Output only. Most recent time at which the pipeline was updated.
Corresponds to the JSON property updateTime
912 913 914 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 912 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
919 920 921 922 923 924 925 926 927 928 929 930 931 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 919 def update!(**args) @annotations = args[:annotations] if args.key?(:annotations) @condition = args[:condition] if args.key?(:condition) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @etag = args[:etag] if args.key?(:etag) @labels = args[:labels] if args.key?(:labels) @name = args[:name] if args.key?(:name) @serial_pipeline = args[:serial_pipeline] if args.key?(:serial_pipeline) @suspended = args[:suspended] if args.key?(:suspended) @uid = args[:uid] if args.key?(:uid) @update_time = args[:update_time] if args.key?(:update_time) end |