Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/apigee_v1/classes.rb,
generated/google/apis/apigee_v1/representations.rb,
generated/google/apis/apigee_v1/representations.rb
Overview
A tuple representing a basepath and the deployment containing it.
Instance Attribute Summary collapse
-
#api_proxy ⇒ String
The name of the deployed proxy revision containing the basepath.
-
#basepath ⇒ String
The basepath receiving traffic.
-
#environment ⇒ String
The name of the environment in which the proxy is deployed.
-
#revision ⇒ String
The name of the deployed proxy revision containing the basepath.
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.
2156 2157 2158 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 2156 def initialize(**args) update!(**args) end |
Instance Attribute Details
#api_proxy ⇒ String
The name of the deployed proxy revision containing the basepath.
Corresponds to the JSON property apiProxy
2139 2140 2141 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 2139 def api_proxy @api_proxy end |
#basepath ⇒ String
The basepath receiving traffic.
Corresponds to the JSON property basepath
2144 2145 2146 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 2144 def basepath @basepath end |
#environment ⇒ String
The name of the environment in which the proxy is deployed.
Corresponds to the JSON property environment
2149 2150 2151 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 2149 def environment @environment end |
#revision ⇒ String
The name of the deployed proxy revision containing the basepath.
Corresponds to the JSON property revision
2154 2155 2156 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 2154 def revision @revision end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2161 2162 2163 2164 2165 2166 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 2161 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 |