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.



7669
7670
7671
# File 'lib/google/apis/apigee_v1/classes.rb', line 7669

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)


7632
7633
7634
# File 'lib/google/apis/apigee_v1/classes.rb', line 7632

def analytics_region
  @analytics_region
end

#authorized_networkString

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`

Returns:

  • (String)


7645
7646
7647
# File 'lib/google/apis/apigee_v1/classes.rb', line 7645

def authorized_network
  @authorized_network
end

#disable_vpc_peeringBoolean Also known as: disable_vpc_peering?

Optional. Flag that specifies whether the VPC Peering through Private Google Access should be disabled between the consumer network and Apigee. Required if an authorizedNetwork on the consumer project is not provided, in which case the flag should be set to true. The value must be set before the creation of any Apigee runtime instance and can be updated only when there are no runtime instances. Note: Apigee will be deprecating the vpc peering model that requires you to provide 'authorizedNetwork', by making the non-peering model as the default way of provisioning Apigee organization in future. So, this will be a temporary flag to enable the transition. Not supported for Apigee hybrid. Corresponds to the JSON property disableVpcPeering

Returns:

  • (Boolean)


7659
7660
7661
# File 'lib/google/apis/apigee_v1/classes.rb', line 7659

def disable_vpc_peering
  @disable_vpc_peering
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)


7667
7668
7669
# File 'lib/google/apis/apigee_v1/classes.rb', line 7667

def runtime_location
  @runtime_location
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7674
7675
7676
7677
7678
7679
# File 'lib/google/apis/apigee_v1/classes.rb', line 7674

def update!(**args)
  @analytics_region = args[:analytics_region] if args.key?(:analytics_region)
  @authorized_network = args[:authorized_network] if args.key?(:authorized_network)
  @disable_vpc_peering = args[:disable_vpc_peering] if args.key?(:disable_vpc_peering)
  @runtime_location = args[:runtime_location] if args.key?(:runtime_location)
end