Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaProjectProperties
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaProjectProperties
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1/classes.rb,
lib/google/apis/integrations_v1/representations.rb,
lib/google/apis/integrations_v1/representations.rb
Overview
Metadata information for the given project
Instance Attribute Summary collapse
-
#billing_type ⇒ String
Required.
-
#ip_enablement_state ⇒ String
An enum value of what the enablement state is for the given project Corresponds to the JSON property
ipEnablementState
. -
#provisioned_regions ⇒ Array<String>
A list of provisioned regions on the current project Corresponds to the JSON property
provisionedRegions
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaProjectProperties
constructor
A new instance of GoogleCloudIntegrationsV1alphaProjectProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaProjectProperties
Returns a new instance of GoogleCloudIntegrationsV1alphaProjectProperties.
9782 9783 9784 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9782 def initialize(**args) update!(**args) end |
Instance Attribute Details
#billing_type ⇒ String
Required. Required: The client billing type that was requested
Corresponds to the JSON property billingType
9770 9771 9772 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9770 def billing_type @billing_type end |
#ip_enablement_state ⇒ String
An enum value of what the enablement state is for the given project
Corresponds to the JSON property ipEnablementState
9775 9776 9777 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9775 def ip_enablement_state @ip_enablement_state end |
#provisioned_regions ⇒ Array<String>
A list of provisioned regions on the current project
Corresponds to the JSON property provisionedRegions
9780 9781 9782 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9780 def provisioned_regions @provisioned_regions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9787 9788 9789 9790 9791 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9787 def update!(**args) @billing_type = args[:billing_type] if args.key?(:billing_type) @ip_enablement_state = args[:ip_enablement_state] if args.key?(:ip_enablement_state) @provisioned_regions = args[:provisioned_regions] if args.key?(:provisioned_regions) end |