Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ReferenceConfig
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ReferenceConfig
- 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
Instance Attribute Summary collapse
-
#name ⇒ String
Name of the reference in the following format:
organizations/org/ environments/env/references/reference`Corresponds to the JSON propertyname`. -
#resource_name ⇒ String
Name of the referenced resource in the following format:
organizations/org/ environments/env/keystores/keystore`` Only references to keystore resources are supported.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ReferenceConfig
constructor
A new instance of GoogleCloudApigeeV1ReferenceConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ReferenceConfig
Returns a new instance of GoogleCloudApigeeV1ReferenceConfig.
7466 7467 7468 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7466 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Name of the reference in the following format: organizations/org/
environments/env/references/reference`
Corresponds to the JSON propertyname`
7457 7458 7459 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7457 def name @name end |
#resource_name ⇒ String
Name of the referenced resource in the following format: organizations/org/
environments/env/keystores/keystore`Only references to keystore resources
are supported.
Corresponds to the JSON propertyresourceName`
7464 7465 7466 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7464 def resource_name @resource_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7471 7472 7473 7474 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 7471 def update!(**args) @name = args[:name] if args.key?(:name) @resource_name = args[:resource_name] if args.key?(:resource_name) end |