Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment

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

Tuple representing a base path and the deployment containing it.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment

Returns a new instance of GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment.



2158
2159
2160
# File 'lib/google/apis/apigee_v1/classes.rb', line 2158

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

Instance Attribute Details

#api_proxyString

Name of the deployed API proxy revision containing the base path. Corresponds to the JSON property apiProxy

Returns:

  • (String)


2141
2142
2143
# File 'lib/google/apis/apigee_v1/classes.rb', line 2141

def api_proxy
  @api_proxy
end

#basepathString

Base path receiving traffic. Corresponds to the JSON property basepath

Returns:

  • (String)


2146
2147
2148
# File 'lib/google/apis/apigee_v1/classes.rb', line 2146

def basepath
  @basepath
end

#environmentString

Name of the environment in which the proxy is deployed. Corresponds to the JSON property environment

Returns:

  • (String)


2151
2152
2153
# File 'lib/google/apis/apigee_v1/classes.rb', line 2151

def environment
  @environment
end

#revisionString

Name of the deployed API proxy revision containing the base path. Corresponds to the JSON property revision

Returns:

  • (String)


2156
2157
2158
# File 'lib/google/apis/apigee_v1/classes.rb', line 2156

def revision
  @revision
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2163
2164
2165
2166
2167
2168
# File 'lib/google/apis/apigee_v1/classes.rb', line 2163

def update!(**args)
  @api_proxy = args[:api_proxy] if args.key?(:api_proxy)
  @basepath = args[:basepath] if args.key?(:basepath)
  @environment = args[:environment] if args.key?(:environment)
  @revision = args[:revision] if args.key?(:revision)
end