Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/apigee_v1/classes.rb,
generated/google/apis/apigee_v1/representations.rb,
generated/google/apis/apigee_v1/representations.rb
Overview
Describes a routing conflict that may cause a deployment not to receive traffic at some basepath.
Instance Attribute Summary collapse
-
#conflicting_deployment ⇒ Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment
A tuple representing a basepath and the deployment containing it.
-
#description ⇒ String
A human-readable description of this conflict.
-
#environment_group ⇒ String
The name of the environment group in which this conflict exists.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict
constructor
A new instance of GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict
Returns a new instance of GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict.
2120 2121 2122 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 2120 def initialize(**args) update!(**args) end |
Instance Attribute Details
#conflicting_deployment ⇒ Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment
A tuple representing a basepath and the deployment containing it.
Corresponds to the JSON property conflictingDeployment
2108 2109 2110 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 2108 def conflicting_deployment @conflicting_deployment end |
#description ⇒ String
A human-readable description of this conflict.
Corresponds to the JSON property description
2113 2114 2115 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 2113 def description @description end |
#environment_group ⇒ String
The name of the environment group in which this conflict exists.
Corresponds to the JSON property environmentGroup
2118 2119 2120 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 2118 def environment_group @environment_group end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2125 2126 2127 2128 2129 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 2125 def update!(**args) @conflicting_deployment = args[:conflicting_deployment] if args.key?(:conflicting_deployment) @description = args[:description] if args.key?(:description) @environment_group = args[:environment_group] if args.key?(:environment_group) end |