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
Compute Engine network used for Service Networking to be peered with Apigee runtime instances.
-
#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.
6626 6627 6628 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6626 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
6604 6605 6606 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6604 def analytics_region @analytics_region end |
#authorized_network ⇒ String
Compute Engine network used for Service Networking to be peered with Apigee
runtime instances. See Getting started with the Service Networking API. Apigee also supports shared VPC (that is, the host network project
is not the same as the one that is peering with Apigee). See Shared VPC
overview. To use a shared VPC
network, use the following format: projects/host-project-id/region/
networks/network-name`. For example:projects/my-sharedvpc-host/global/
networks/mynetwork
Corresponds to the JSON propertyauthorizedNetwork`
6617 6618 6619 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6617 def @authorized_network end |
#runtime_location ⇒ String
Cloud Platform location for the runtime instance. Defaults to zone us-west1-a
. If a region is provided, EVAL organizations will use the region for
automatically selecting a zone for the runtime instance.
Corresponds to the JSON property runtimeLocation
6624 6625 6626 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6624 def runtime_location @runtime_location end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6631 6632 6633 6634 6635 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6631 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 |