class Google::Apis::ApigeeV1::GoogleCloudApigeeV1IngressConfig
Attributes
List of environment groups in the organization. Corresponds to the JSON property `environmentGroups` @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1EnvironmentGroupConfig>]
Name of the resource in the following format: `organizations/`org`/ deployedIngressConfig`. Corresponds to the JSON property `name` @return [String]
Time at which the IngressConfig revision was created. Corresponds to the JSON property `revisionCreateTime` @return [String]
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]
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
# File lib/google/apis/apigee_v1/classes.rb, line 3649 def initialize(**args) update!(**args) end
Public Instance Methods
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