Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict

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

Overview

Describes a routing conflict that may cause a deployment not to receive traffic at some base path.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict

Returns a new instance of GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict.



3507
3508
3509
# File 'lib/google/apis/apigee_v1/classes.rb', line 3507

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

Instance Attribute Details

#conflicting_deploymentGoogle::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment

Tuple representing a base path and the deployment containing it. Corresponds to the JSON property conflictingDeployment



3495
3496
3497
# File 'lib/google/apis/apigee_v1/classes.rb', line 3495

def conflicting_deployment
  @conflicting_deployment
end

#descriptionString

Human-readable description of this conflict. Corresponds to the JSON property description

Returns:

  • (String)


3500
3501
3502
# File 'lib/google/apis/apigee_v1/classes.rb', line 3500

def description
  @description
end

#environment_groupString

Name of the environment group in which this conflict exists. Corresponds to the JSON property environmentGroup

Returns:

  • (String)


3505
3506
3507
# File 'lib/google/apis/apigee_v1/classes.rb', line 3505

def environment_group
  @environment_group
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3512
3513
3514
3515
3516
# File 'lib/google/apis/apigee_v1/classes.rb', line 3512

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