Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment
- 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
-
#api_proxy ⇒ String
Name of the deployed API proxy revision containing the base path.
-
#basepath ⇒ String
Base path receiving traffic.
-
#environment ⇒ String
Name of the environment in which the proxy is deployed.
-
#revision ⇒ String
Name of the deployed API proxy revision containing the base path.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment
constructor
A new instance of GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment
Returns a new instance of GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment.
2217 2218 2219 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2217 def initialize(**args) update!(**args) end |
Instance Attribute Details
#api_proxy ⇒ String
Name of the deployed API proxy revision containing the base path.
Corresponds to the JSON property apiProxy
2200 2201 2202 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2200 def api_proxy @api_proxy end |
#basepath ⇒ String
Base path receiving traffic.
Corresponds to the JSON property basepath
2205 2206 2207 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2205 def basepath @basepath end |
#environment ⇒ String
Name of the environment in which the proxy is deployed.
Corresponds to the JSON property environment
2210 2211 2212 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2210 def environment @environment end |
#revision ⇒ String
Name of the deployed API proxy revision containing the base path.
Corresponds to the JSON property revision
2215 2216 2217 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2215 def revision @revision end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2222 2223 2224 2225 2226 2227 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2222 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 |