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
Output only. The time at which the environment group was created as milliseconds since epoch. Corresponds to the JSON property `createdAt` @return [Fixnum]
Required. Host names for this environment group. Corresponds to the JSON property `hostnames` @return [Array<String>]
Output only. The time at which the environment group was last updated as milliseconds since epoch. Corresponds to the JSON property `lastModifiedAt` @return [Fixnum]
ID of the environment group. Corresponds to the JSON property `name` @return [String]
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
# File lib/google/apis/apigee_v1/classes.rb, line 3119 def initialize(**args) update!(**args) end
Public Instance Methods
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