Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiProxy
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiProxy
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/apigee_v1/classes.rb,
generated/google/apis/apigee_v1/representations.rb,
generated/google/apis/apigee_v1/representations.rb
Overview
Metadata describing the API proxy
Instance Attribute Summary collapse
-
#latest_revision_id ⇒ String
The id of the most recently created revision for this api proxy.
-
#meta_data ⇒ Google::Apis::ApigeeV1::GoogleCloudApigeeV1EntityMetadata
Metadata common to many entities in this API.
-
#name ⇒ String
Name of the API proxy.
-
#revision ⇒ Array<String>
List of revisons defined for the API proxy.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ApiProxy
constructor
A new instance of GoogleCloudApigeeV1ApiProxy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ApiProxy
Returns a new instance of GoogleCloudApigeeV1ApiProxy.
553 554 555 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 553 def initialize(**args) update!(**args) end |
Instance Attribute Details
#latest_revision_id ⇒ String
The id of the most recently created revision for this api proxy.
Corresponds to the JSON property latestRevisionId
536 537 538 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 536 def latest_revision_id @latest_revision_id end |
#meta_data ⇒ Google::Apis::ApigeeV1::GoogleCloudApigeeV1EntityMetadata
Metadata common to many entities in this API.
Corresponds to the JSON property metaData
541 542 543 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 541 def @meta_data end |
#name ⇒ String
Name of the API proxy.
Corresponds to the JSON property name
546 547 548 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 546 def name @name end |
#revision ⇒ Array<String>
List of revisons defined for the API proxy.
Corresponds to the JSON property revision
551 552 553 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 551 def revision @revision end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
558 559 560 561 562 563 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 558 def update!(**args) @latest_revision_id = args[:latest_revision_id] if args.key?(:latest_revision_id) @meta_data = args[:meta_data] if args.key?(:meta_data) @name = args[:name] if args.key?(:name) @revision = args[:revision] if args.key?(:revision) end |