Class: Google::Apis::ClouddeployV1::CloudRunConfig
- Inherits:
-
Object
- Object
- Google::Apis::ClouddeployV1::CloudRunConfig
- 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
CloudRunConfig contains the Cloud Run runtime configuration.
Instance Attribute Summary collapse
-
#automatic_traffic_control ⇒ Boolean
(also: #automatic_traffic_control?)
Whether Cloud Deploy should update the traffic stanza in a Cloud Run Service on the user's behalf to facilitate traffic splitting.
-
#canary_revision_tags ⇒ Array<String>
Optional.
-
#prior_revision_tags ⇒ Array<String>
Optional.
-
#stable_revision_tags ⇒ Array<String>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CloudRunConfig
constructor
A new instance of CloudRunConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CloudRunConfig
Returns a new instance of CloudRunConfig.
1092 1093 1094 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1092 def initialize(**args) update!(**args) end |
Instance Attribute Details
#automatic_traffic_control ⇒ Boolean Also known as: automatic_traffic_control?
Whether Cloud Deploy should update the traffic stanza in a Cloud Run Service
on the user's behalf to facilitate traffic splitting. This is required to be
true for CanaryDeployments, but optional for CustomCanaryDeployments.
Corresponds to the JSON property automaticTrafficControl
1071 1072 1073 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1071 def automatic_traffic_control @automatic_traffic_control end |
#canary_revision_tags ⇒ Array<String>
Optional. A list of tags that are added to the canary revision while the
canary phase is in progress.
Corresponds to the JSON property canaryRevisionTags
1078 1079 1080 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1078 def @canary_revision_tags end |
#prior_revision_tags ⇒ Array<String>
Optional. A list of tags that are added to the prior revision while the canary
phase is in progress.
Corresponds to the JSON property priorRevisionTags
1084 1085 1086 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1084 def @prior_revision_tags end |
#stable_revision_tags ⇒ Array<String>
Optional. A list of tags that are added to the final stable revision when the
stable phase is applied.
Corresponds to the JSON property stableRevisionTags
1090 1091 1092 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1090 def @stable_revision_tags end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1097 1098 1099 1100 1101 1102 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1097 def update!(**args) @automatic_traffic_control = args[:automatic_traffic_control] if args.key?(:automatic_traffic_control) @canary_revision_tags = args[:canary_revision_tags] if args.key?(:canary_revision_tags) @prior_revision_tags = args[:prior_revision_tags] if args.key?(:prior_revision_tags) @stable_revision_tags = args[:stable_revision_tags] if args.key?(:stable_revision_tags) end |