class Google::Apis::ApigeeV1::GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRoute

Route deployed in the ingress routing table.

Attributes

basepath[RW]

Base path in the routing table. Corresponds to the JSON property `basepath` @return [String]

envgroup[RW]

Environment group where this route is installed. Corresponds to the JSON property `envgroup` @return [String]

environment[RW]

Destination environment. This will be empty if the route is not yet reported. Corresponds to the JSON property `environment` @return [String]

percentage[RW]

Percentage of ingress replicas reporting this route. Corresponds to the JSON property `percentage` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 3870
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 3875
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