Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaProjectProperties

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_typeString

Required. Required: The client billing type that was requested Corresponds to the JSON property billingType

Returns:

  • (String)


9770
9771
9772
# File 'lib/google/apis/integrations_v1/classes.rb', line 9770

def billing_type
  @billing_type
end

#ip_enablement_stateString

An enum value of what the enablement state is for the given project Corresponds to the JSON property ipEnablementState

Returns:

  • (String)


9775
9776
9777
# File 'lib/google/apis/integrations_v1/classes.rb', line 9775

def ip_enablement_state
  @ip_enablement_state
end

#provisioned_regionsArray<String>

A list of provisioned regions on the current project Corresponds to the JSON property provisionedRegions

Returns:

  • (Array<String>)


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