class Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment
Tuple representing a base path and the deployment containing it.
Attributes
api_proxy[RW]
Name of the deployed API proxy revision containing the base path. Corresponds to the JSON property `apiProxy` @return [String]
basepath[RW]
Base path receiving traffic. Corresponds to the JSON property `basepath` @return [String]
environment[RW]
Name of the environment in which the proxy is deployed. Corresponds to the JSON property `environment` @return [String]
revision[RW]
Name of the deployed API proxy revision containing the base path. Corresponds to the JSON property `revision` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 2356 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 2361 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