Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1OrganizationProjectMapping
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1OrganizationProjectMapping
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb
Instance Attribute Summary collapse
-
#organization ⇒ String
Name of the Apigee organization.
-
#project_ids ⇒ Array<String>
List of GCP projects associated with the Apigee organization.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1OrganizationProjectMapping
constructor
A new instance of GoogleCloudApigeeV1OrganizationProjectMapping.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1OrganizationProjectMapping
Returns a new instance of GoogleCloudApigeeV1OrganizationProjectMapping.
5213 5214 5215 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5213 def initialize(**args) update!(**args) end |
Instance Attribute Details
#organization ⇒ String
Name of the Apigee organization.
Corresponds to the JSON property organization
5206 5207 5208 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5206 def organization @organization end |
#project_ids ⇒ Array<String>
List of GCP projects associated with the Apigee organization.
Corresponds to the JSON property projectIds
5211 5212 5213 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5211 def project_ids @project_ids end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5218 5219 5220 5221 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 5218 def update!(**args) @organization = args[:organization] if args.key?(:organization) @project_ids = args[:project_ids] if args.key?(:project_ids) end |