class Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict
Describes a routing conflict that may cause a deployment not to receive traffic at some base path.
Attributes
conflicting_deployment[RW]
Tuple representing a base path and the deployment containing it. Corresponds to the JSON property `conflictingDeployment` @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment]
description[RW]
Human-readable description of this conflict. Corresponds to the JSON property `description` @return [String]
environment_group[RW]
Name of the environment group in which this conflict exists. Corresponds to the JSON property `environmentGroup` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 2320 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/apigee_v1/classes.rb, line 2325 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