class Google::Apis::ApigeeV1::GoogleCloudApigeeV1EnvironmentGroupAttachment

EnvironmentGroupAttachment is a resource which defines an attachment of an environment to an environment group.

Attributes

created_at[RW]

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

environment[RW]

Required. ID of the attached environment. Corresponds to the JSON property `environment` @return [String]

name[RW]

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

Public Class Methods

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