Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRoute
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRoute
- 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
Route deployed in the ingress routing table.
Instance Attribute Summary collapse
-
#basepath ⇒ String
Base path in the routing table.
-
#envgroup ⇒ String
Environment group where this route is installed.
-
#environment ⇒ String
Destination environment.
-
#percentage ⇒ Fixnum
Percentage of ingress replicas reporting this route.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRoute
constructor
A new instance of GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRoute.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRoute
Returns a new instance of GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRoute.
5644 5645 5646 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5644 def initialize(**args) update!(**args) end |
Instance Attribute Details
#basepath ⇒ String
Base path in the routing table.
Corresponds to the JSON property basepath
5627 5628 5629 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5627 def basepath @basepath end |
#envgroup ⇒ String
Environment group where this route is installed.
Corresponds to the JSON property envgroup
5632 5633 5634 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5632 def envgroup @envgroup end |
#environment ⇒ String
Destination environment. This will be empty if the route is not yet reported.
Corresponds to the JSON property environment
5637 5638 5639 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5637 def environment @environment end |
#percentage ⇒ Fixnum
Percentage of ingress replicas reporting this route.
Corresponds to the JSON property percentage
5642 5643 5644 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5642 def percentage @percentage end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5649 5650 5651 5652 5653 5654 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5649 def update!(**args) @basepath = args[:basepath] if args.key?(:basepath) @envgroup = args[:envgroup] if args.key?(:envgroup) @environment = args[:environment] if args.key?(:environment) @percentage = args[:percentage] if args.key?(:percentage) end |