class Google::Apis::RunV1::ListConfigurationsResponse

ListConfigurationsResponse is a list of Configuration resources.

Attributes

api_version[RW]

The API version for this call such as “serving.knative.dev/v1”. Corresponds to the JSON property `apiVersion` @return [String]

items[RW]

List of Configurations. Corresponds to the JSON property `items` @return [Array<Google::Apis::RunV1::Configuration>]

kind[RW]

The kind of this resource, in this case “ConfigurationList”. Corresponds to the JSON property `kind` @return [String]

metadata[RW]

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` @return [Google::Apis::RunV1::ListMeta]

unreachable[RW]

Locations that could not be reached. Corresponds to the JSON property `unreachable` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/run_v1/classes.rb, line 1166
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/run_v1/classes.rb, line 1171
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