Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeConfig
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeConfig
- 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
Runtime configuration for the organization. Response for GetRuntimeConfig.
Instance Attribute Summary collapse
-
#analytics_bucket ⇒ String
Cloud Storage bucket used for uploading Analytics records.
-
#name ⇒ String
Name of the resource in the following format:
organizations/
org/ runtimeConfig
. -
#tenant_project_id ⇒ String
Output only.
-
#trace_bucket ⇒ String
Cloud Storage bucket used for uploading Trace records.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1RuntimeConfig
constructor
A new instance of GoogleCloudApigeeV1RuntimeConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1RuntimeConfig
Returns a new instance of GoogleCloudApigeeV1RuntimeConfig.
8922 8923 8924 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 8922 def initialize(**args) update!(**args) end |
Instance Attribute Details
#analytics_bucket ⇒ String
Cloud Storage bucket used for uploading Analytics records.
Corresponds to the JSON property analyticsBucket
8899 8900 8901 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 8899 def analytics_bucket @analytics_bucket end |
#name ⇒ String
Name of the resource in the following format: organizations/
org/
runtimeConfig
.
Corresponds to the JSON property name
8905 8906 8907 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 8905 def name @name end |
#tenant_project_id ⇒ String
Output only. Tenant project ID associated with the Apigee organization. The
tenant project is used to host Google-managed resources that are dedicated to
this Apigee organization. Clients have limited access to resources within the
tenant project used to support Apigee runtime instances. Access to the tenant
project is managed using SetSyncAuthorization. It can be empty if the tenant
project hasn't been created yet.
Corresponds to the JSON property tenantProjectId
8915 8916 8917 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 8915 def tenant_project_id @tenant_project_id end |
#trace_bucket ⇒ String
Cloud Storage bucket used for uploading Trace records.
Corresponds to the JSON property traceBucket
8920 8921 8922 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 8920 def trace_bucket @trace_bucket end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8927 8928 8929 8930 8931 8932 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 8927 def update!(**args) @analytics_bucket = args[:analytics_bucket] if args.key?(:analytics_bucket) @name = args[:name] if args.key?(:name) @tenant_project_id = args[:tenant_project_id] if args.key?(:tenant_project_id) @trace_bucket = args[:trace_bucket] if args.key?(:trace_bucket) end |