Class: Google::Apis::RunV1alpha1::ListDomainMappingsResponse
- Inherits:
-
Object
- Object
- Google::Apis::RunV1alpha1::ListDomainMappingsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/run_v1alpha1/classes.rb,
generated/google/apis/run_v1alpha1/representations.rb,
generated/google/apis/run_v1alpha1/representations.rb
Overview
ListDomainMappingsResponse is a list of DomainMapping resources.
Instance Attribute Summary collapse
-
#api_version ⇒ String
The API version for this call such as "v1alpha1".
-
#items ⇒ Array<Google::Apis::RunV1alpha1::DomainMapping>
List of DomainMappings.
-
#kind ⇒ String
The kind of this resource, in this case "DomainMappingList".
-
#metadata ⇒ Google::Apis::RunV1alpha1::ListMeta
ListMeta describes metadata that synthetic resources must have, including lists and various status objects.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListDomainMappingsResponse
constructor
A new instance of ListDomainMappingsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListDomainMappingsResponse
Returns a new instance of ListDomainMappingsResponse
1394 1395 1396 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1394 def initialize(**args) update!(**args) end |
Instance Attribute Details
#api_version ⇒ String
The API version for this call such as "v1alpha1".
Corresponds to the JSON property apiVersion
1375 1376 1377 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1375 def api_version @api_version end |
#items ⇒ Array<Google::Apis::RunV1alpha1::DomainMapping>
List of DomainMappings.
Corresponds to the JSON property items
1380 1381 1382 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1380 def items @items end |
#kind ⇒ String
The kind of this resource, in this case "DomainMappingList".
Corresponds to the JSON property kind
1385 1386 1387 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1385 def kind @kind end |
#metadata ⇒ Google::Apis::RunV1alpha1::ListMeta
ListMeta describes metadata that synthetic resources must have, including
lists and various status objects. A resource may have only one of
ObjectMeta, ListMeta
.
Corresponds to the JSON property metadata
1392 1393 1394 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1392 def @metadata end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1399 1400 1401 1402 1403 1404 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1399 def update!(**args) @api_version = args[:api_version] if args.key?(:api_version) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) @metadata = args[:metadata] if args.key?(:metadata) end |