class Google::Apis::RunV1::ListConfigurationsResponse
ListConfigurationsResponse
is a list of Configuration
resources.
Attributes
The API version for this call such as “serving.knative.dev/v1”. Corresponds to the JSON property `apiVersion` @return [String]
List of Configurations. Corresponds to the JSON property `items` @return [Array<Google::Apis::RunV1::Configuration>]
The kind of this resource, in this case “ConfigurationList”. Corresponds to the JSON property `kind` @return [String]
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]
Locations that could not be reached. Corresponds to the JSON property `unreachable` @return [Array<String>]
Public Class Methods
# File lib/google/apis/run_v1/classes.rb, line 1166 def initialize(**args) update!(**args) end
Public Instance Methods
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