class Google::Apis::ApigeeV1::GoogleCloudApigeeV1IngressConfig

Attributes

environment_groups[RW]

List of environment groups in the organization. Corresponds to the JSON property `environmentGroups` @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1EnvironmentGroupConfig>]

name[RW]

Name of the resource in the following format: `organizations/`org`/ deployedIngressConfig`. Corresponds to the JSON property `name` @return [String]

revision_create_time[RW]

Time at which the IngressConfig revision was created. Corresponds to the JSON property `revisionCreateTime` @return [String]

revision_id[RW]

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

uid[RW]

A unique id for the ingress config that will only change if the organization 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 3649
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 3654
def update!(**args)
  @environment_groups = args[:environment_groups] if args.key?(:environment_groups)
  @name = args[:name] if args.key?(:name)
  @revision_create_time = args[:revision_create_time] if args.key?(:revision_create_time)
  @revision_id = args[:revision_id] if args.key?(:revision_id)
  @uid = args[:uid] if args.key?(:uid)
end