class Google::Apis::ApigeeV1::GoogleCloudApigeeV1EnvironmentGroupConfig

EnvironmentGroupConfig is a revisioned snapshot of an EnvironmentGroup and its associated routing rules.

Attributes

hostnames[RW]

Host names for the environment group. Corresponds to the JSON property `hostnames` @return [Array<String>]

name[RW]

Name of the environment group in the following format: `organizations/`org`/ envgroups/`envgroup“. Corresponds to the JSON property `name` @return [String]

revision_id[RW]

Revision id that defines the ordering of the EnvironmentGroupConfig resource. The higher the revision, the more recently the configuration was deployed. Corresponds to the JSON property `revisionId` @return [Fixnum]

routing_rules[RW]

Ordered list of routing rules defining how traffic to this environment group's hostnames should be routed to different environments. Corresponds to the JSON property `routingRules` @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1RoutingRule>]

uid[RW]

A unique id for the environment group config that will only change if the environment group is deleted and recreated. Corresponds to the JSON property `uid` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 3200
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 3205
def update!(**args)
  @hostnames = args[:hostnames] if args.key?(:hostnames)
  @name = args[:name] if args.key?(:name)
  @revision_id = args[:revision_id] if args.key?(:revision_id)
  @routing_rules = args[:routing_rules] if args.key?(:routing_rules)
  @uid = args[:uid] if args.key?(:uid)
end