class Google::Apis::ApigeeV1::GoogleCloudApigeeV1EnvironmentGroup

EnvironmentGroup configuration. An environment group is used to group one or more Apigee environments under a single host name.

Attributes

created_at[RW]

Output only. The time at which the environment group was created as milliseconds since epoch. Corresponds to the JSON property `createdAt` @return [Fixnum]

hostnames[RW]

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

last_modified_at[RW]

Output only. The time at which the environment group was last updated as milliseconds since epoch. Corresponds to the JSON property `lastModifiedAt` @return [Fixnum]

name[RW]

ID of the environment group. Corresponds to the JSON property `name` @return [String]

state[RW]

Output only. State of the environment group. Values other than ACTIVE means the resource is not ready to use. Corresponds to the JSON property `state` @return [String]

Public Class Methods

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