Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ProvisionOrganizationRequest

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1ProvisionOrganizationRequest

Returns a new instance of GoogleCloudApigeeV1ProvisionOrganizationRequest.



5614
5615
5616
# File 'lib/google/apis/apigee_v1/classes.rb', line 5614

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#analytics_regionString

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

Returns:

  • (String)


5598
5599
5600
# File 'lib/google/apis/apigee_v1/classes.rb', line 5598

def analytics_region
  @analytics_region
end

#authorized_networkString

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

Returns:

  • (String)


5605
5606
5607
# File 'lib/google/apis/apigee_v1/classes.rb', line 5605

def authorized_network
  @authorized_network
end

#runtime_locationString

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

Returns:

  • (String)


5612
5613
5614
# File 'lib/google/apis/apigee_v1/classes.rb', line 5612

def runtime_location
  @runtime_location
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5619
5620
5621
5622
5623
# File 'lib/google/apis/apigee_v1/classes.rb', line 5619

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