class Google::Apis::ApigeeV1::GoogleCloudApigeeV1Organization

Attributes

addons_config[RW]

Add-on configurations for the Apigee organization. Corresponds to the JSON property `addonsConfig` @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1AddonsConfig]

analytics_region[RW]

Required. Primary GCP region for analytics data storage. For valid values, see [Create an Apigee organization](cloud.google.com/apigee/docs/api- platform/get-started/create-org). Corresponds to the JSON property `analyticsRegion` @return [String]

attributes[RW]

Not used by Apigee. Corresponds to the JSON property `attributes` @return [Array<String>]

authorized_network[RW]

Compute Engine network used for Service Networking to be peered with Apigee runtime instances. See [Getting started with the Service Networking API](https: //cloud.google.com/service-infrastructure/docs/service-networking/getting- started). Valid only when [RuntimeType](#RuntimeType) is set to `CLOUD`. The value must be set before the creation of a runtime instance and can be updated only when there are no runtime instances. For example: `default`. 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](cloud. google.com/vpc/docs/shared-vpc). 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` Note: Not supported for Apigee hybrid. Corresponds to the JSON property `authorizedNetwork` @return [String]

billing_type[RW]

Billing type of the Apigee organization. See [Apigee pricing](cloud. google.com/apigee/pricing). Corresponds to the JSON property `billingType` @return [String]

ca_certificate[RW]

Output only. Base64-encoded public certificate for the root CA of the Apigee organization. Valid only when [RuntimeType](#RuntimeType) is `CLOUD`. Corresponds to the JSON property `caCertificate` NOTE: Values are automatically base64 encoded/decoded in the client library. @return [String]

created_at[RW]

Output only. Time that the Apigee organization was created in milliseconds since epoch. Corresponds to the JSON property `createdAt` @return [Fixnum]

customer_name[RW]

Not used by Apigee. Corresponds to the JSON property `customerName` @return [String]

description[RW]

Description of the Apigee organization. Corresponds to the JSON property `description` @return [String]

display_name[RW]

Corresponds to the JSON property `displayName` @return [String]

environments[RW]

Output only. List of environments in the Apigee organization. Corresponds to the JSON property `environments` @return [Array<String>]

expires_at[RW]

Output only. Time that the Apigee organization is scheduled for deletion. Corresponds to the JSON property `expiresAt` @return [Fixnum]

last_modified_at[RW]

Output only. Time that the Apigee organization was last modified in milliseconds since epoch. Corresponds to the JSON property `lastModifiedAt` @return [Fixnum]

name[RW]

Output only. Name of the Apigee organization. Corresponds to the JSON property `name` @return [String]

project_id[RW]

Output only. Project ID associated with the Apigee organization. Corresponds to the JSON property `projectId` @return [String]

properties[RW]

Message for compatibility with legacy Edge specification for Java Properties object in JSON. Corresponds to the JSON property `properties` @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1Properties]

runtime_database_encryption_key_name[RW]

Cloud KMS key name used for encrypting the data that is stored and replicated across runtime instances. Update is not allowed after the organization is created. Required when [RuntimeType](#RuntimeType) is `CLOUD`. If not specified when [RuntimeType](#RuntimeType) is `TRIAL`, a Google-Managed encryption key will be used. For example: “projects/foo/locations/us/keyRings/ bar/cryptoKeys/baz”. Note: Not supported for Apigee hybrid. Corresponds to the JSON property `runtimeDatabaseEncryptionKeyName` @return [String]

runtime_type[RW]

Required. Runtime type of the Apigee organization based on the Apigee subscription purchased. Corresponds to the JSON property `runtimeType` @return [String]

state[RW]

Output only. State of the organization. Values other than ACTIVE means the resource is not ready to use. Corresponds to the JSON property `state` @return [String]

subscription_type[RW]

Output only. DEPRECATED: This will eventually be replaced by BillingType. Subscription type of the Apigee organization. Valid values include trial (free, limited, and for evaluation purposes only) or paid (full subscription has been purchased). See [Apigee pricing](cloud.google.com/apigee/pricing/) . Corresponds to the JSON property `subscriptionType` @return [String]

type[RW]

Not used by Apigee. Corresponds to the JSON property `type` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 5096
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/apigee_v1/classes.rb, line 5101
def update!(**args)
  @addons_config = args[:addons_config] if args.key?(:addons_config)
  @analytics_region = args[:analytics_region] if args.key?(:analytics_region)
  @attributes = args[:attributes] if args.key?(:attributes)
  @authorized_network = args[:authorized_network] if args.key?(:authorized_network)
  @billing_type = args[:billing_type] if args.key?(:billing_type)
  @ca_certificate = args[:ca_certificate] if args.key?(:ca_certificate)
  @created_at = args[:created_at] if args.key?(:created_at)
  @customer_name = args[:customer_name] if args.key?(:customer_name)
  @description = args[:description] if args.key?(:description)
  @display_name = args[:display_name] if args.key?(:display_name)
  @environments = args[:environments] if args.key?(:environments)
  @expires_at = args[:expires_at] if args.key?(:expires_at)
  @last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
  @name = args[:name] if args.key?(:name)
  @project_id = args[:project_id] if args.key?(:project_id)
  @properties = args[:properties] if args.key?(:properties)
  @runtime_database_encryption_key_name = args[:runtime_database_encryption_key_name] if args.key?(:runtime_database_encryption_key_name)
  @runtime_type = args[:runtime_type] if args.key?(:runtime_type)
  @state = args[:state] if args.key?(:state)
  @subscription_type = args[:subscription_type] if args.key?(:subscription_type)
  @type = args[:type] if args.key?(:type)
end