Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProvisionOrganizationRequest
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProvisionOrganizationRequest
- 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
Overview
Request for ProvisionOrganization.
Instance Attribute Summary collapse
-
#analytics_region ⇒ String
Primary Cloud Platform region for analytics data storage.
-
#authorized_network ⇒ String
Name of the customer project's VPC network.
-
#runtime_location ⇒ String
Cloud Platform location for the runtime instance.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ProvisionOrganizationRequest
constructor
A new instance of GoogleCloudApigeeV1ProvisionOrganizationRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ProvisionOrganizationRequest
Returns a new instance of GoogleCloudApigeeV1ProvisionOrganizationRequest.
4571 4572 4573 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 4571 def initialize(**args) update!(**args) end |
Instance Attribute Details
#analytics_region ⇒ String
Primary Cloud Platform region for analytics data storage. For valid values,
see Create an organization. Defaults to us-west1.
Corresponds to the JSON property analyticsRegion
4557 4558 4559 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 4557 def analytics_region @analytics_region end |
#authorized_network ⇒ String
Name of the customer project's VPC network. If provided, the network needs to
be peered through Service Networking. If none is provided, the organization
will have access only to the public internet.
Corresponds to the JSON property authorizedNetwork
4564 4565 4566 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 4564 def @authorized_network end |
#runtime_location ⇒ String
Cloud Platform location for the runtime instance. Defaults to us-west1-a.
Corresponds to the JSON property runtimeLocation
4569 4570 4571 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 4569 def runtime_location @runtime_location end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4576 4577 4578 4579 4580 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 4576 def update!(**args) @analytics_region = args[:analytics_region] if args.key?(:analytics_region) @authorized_network = args[:authorized_network] if args.key?(:authorized_network) @runtime_location = args[:runtime_location] if args.key?(:runtime_location) end |