Class: Google::Apis::RunV1::ListRoutesResponse
- Inherits:
-
Object
- Object
- Google::Apis::RunV1::ListRoutesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/run_v1/classes.rb,
lib/google/apis/run_v1/representations.rb,
lib/google/apis/run_v1/representations.rb
Overview
ListRoutesResponse is a list of Route resources.
Instance Attribute Summary collapse
-
#api_version ⇒ String
The API version for this call such as "serving.knative.dev/v1".
-
#items ⇒ Array<Google::Apis::RunV1::Route>
List of Routes.
-
#kind ⇒ String
The kind of this resource, in this case always "RouteList".
-
#metadata ⇒ Google::Apis::RunV1::ListMeta
ListMeta describes metadata that synthetic resources must have, including lists and various status objects.
-
#unreachable ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListRoutesResponse
constructor
A new instance of ListRoutesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListRoutesResponse
Returns a new instance of ListRoutesResponse.
1886 1887 1888 |
# File 'lib/google/apis/run_v1/classes.rb', line 1886 def initialize(**args) update!(**args) end |
Instance Attribute Details
#api_version ⇒ String
The API version for this call such as "serving.knative.dev/v1".
Corresponds to the JSON property apiVersion
1862 1863 1864 |
# File 'lib/google/apis/run_v1/classes.rb', line 1862 def api_version @api_version end |
#items ⇒ Array<Google::Apis::RunV1::Route>
List of Routes.
Corresponds to the JSON property items
1867 1868 1869 |
# File 'lib/google/apis/run_v1/classes.rb', line 1867 def items @items end |
#kind ⇒ String
The kind of this resource, in this case always "RouteList".
Corresponds to the JSON property kind
1872 1873 1874 |
# File 'lib/google/apis/run_v1/classes.rb', line 1872 def kind @kind end |
#metadata ⇒ Google::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
1879 1880 1881 |
# File 'lib/google/apis/run_v1/classes.rb', line 1879 def @metadata end |
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
1884 1885 1886 |
# File 'lib/google/apis/run_v1/classes.rb', line 1884 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1891 1892 1893 1894 1895 1896 1897 |
# File 'lib/google/apis/run_v1/classes.rb', line 1891 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 |