Class: Google::Apis::RunV1::ListRevisionsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/run_v1/classes.rb,
generated/google/apis/run_v1/representations.rb,
generated/google/apis/run_v1/representations.rb

Overview

ListRevisionsResponse is a list of Revision resources.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListRevisionsResponse

Returns a new instance of ListRevisionsResponse.



1358
1359
1360
# File 'generated/google/apis/run_v1/classes.rb', line 1358

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#api_versionString

The API version for this call such as "serving.knative.dev/v1". Corresponds to the JSON property apiVersion

Returns:

  • (String)


1334
1335
1336
# File 'generated/google/apis/run_v1/classes.rb', line 1334

def api_version
  @api_version
end

#itemsArray<Google::Apis::RunV1::Revision>

List of Revisions. Corresponds to the JSON property items

Returns:



1339
1340
1341
# File 'generated/google/apis/run_v1/classes.rb', line 1339

def items
  @items
end

#kindString

The kind of this resource, in this case "RevisionList". Corresponds to the JSON property kind

Returns:

  • (String)


1344
1345
1346
# File 'generated/google/apis/run_v1/classes.rb', line 1344

def kind
  @kind
end

#metadataGoogle::Apis::RunV1::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



1351
1352
1353
# File 'generated/google/apis/run_v1/classes.rb', line 1351

def 
  @metadata
end

#unreachableArray<String>

Locations that could not be reached. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


1356
1357
1358
# File 'generated/google/apis/run_v1/classes.rb', line 1356

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1363
1364
1365
1366
1367
1368
1369
# File 'generated/google/apis/run_v1/classes.rb', line 1363

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)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end