google-cloud-container-v1beta1 0.54.0 → 0.55.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/google/cloud/container/v1beta1/cluster_manager/client.rb +5 -3
- data/lib/google/cloud/container/v1beta1/cluster_manager/credentials.rb +3 -1
- data/lib/google/cloud/container/v1beta1/version.rb +1 -1
- data/lib/google/container/v1beta1/cluster_service_pb.rb +24 -1
- data/lib/google/container/v1beta1/cluster_service_services_pb.rb +1 -1
- data/proto_docs/google/api/client.rb +4 -0
- data/proto_docs/google/api/field_info.rb +88 -0
- data/proto_docs/google/container/v1beta1/cluster_service.rb +497 -45
- data/proto_docs/google/type/date.rb +10 -7
- data/proto_docs/google/type/timeofday.rb +49 -0
- metadata +3 -1
|
@@ -24,14 +24,17 @@ module Google
|
|
|
24
24
|
# date is relative to the Gregorian Calendar. This can represent one of the
|
|
25
25
|
# following:
|
|
26
26
|
#
|
|
27
|
-
# * A full date, with non-zero year, month, and day values
|
|
28
|
-
# * A month and day
|
|
29
|
-
# * A year on its own, with zero month and day
|
|
30
|
-
# * A year and month
|
|
31
|
-
#
|
|
27
|
+
# * A full date, with non-zero year, month, and day values.
|
|
28
|
+
# * A month and day, with a zero year (for example, an anniversary).
|
|
29
|
+
# * A year on its own, with a zero month and a zero day.
|
|
30
|
+
# * A year and month, with a zero day (for example, a credit card expiration
|
|
31
|
+
# date).
|
|
32
32
|
#
|
|
33
|
-
# Related types
|
|
34
|
-
#
|
|
33
|
+
# Related types:
|
|
34
|
+
#
|
|
35
|
+
# * {::Google::Type::TimeOfDay google.type.TimeOfDay}
|
|
36
|
+
# * [google.type.DateTime][google.type.DateTime]
|
|
37
|
+
# * {::Google::Protobuf::Timestamp google.protobuf.Timestamp}
|
|
35
38
|
# @!attribute [rw] year
|
|
36
39
|
# @return [::Integer]
|
|
37
40
|
# Year of the date. Must be from 1 to 9999, or 0 to specify a date without
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2026 Google LLC
|
|
4
|
+
#
|
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
# you may not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
# See the License for the specific language governing permissions and
|
|
15
|
+
# limitations under the License.
|
|
16
|
+
|
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
module Google
|
|
21
|
+
module Type
|
|
22
|
+
# Represents a time of day. The date and time zone are either not significant
|
|
23
|
+
# or are specified elsewhere. An API may choose to allow leap seconds. Related
|
|
24
|
+
# types are {::Google::Type::Date google.type.Date} and
|
|
25
|
+
# `google.protobuf.Timestamp`.
|
|
26
|
+
# @!attribute [rw] hours
|
|
27
|
+
# @return [::Integer]
|
|
28
|
+
# Hours of a day in 24 hour format. Must be greater than or equal to 0 and
|
|
29
|
+
# typically must be less than or equal to 23. An API may choose to allow the
|
|
30
|
+
# value "24:00:00" for scenarios like business closing time.
|
|
31
|
+
# @!attribute [rw] minutes
|
|
32
|
+
# @return [::Integer]
|
|
33
|
+
# Minutes of an hour. Must be greater than or equal to 0 and less than or
|
|
34
|
+
# equal to 59.
|
|
35
|
+
# @!attribute [rw] seconds
|
|
36
|
+
# @return [::Integer]
|
|
37
|
+
# Seconds of a minute. Must be greater than or equal to 0 and typically must
|
|
38
|
+
# be less than or equal to 59. An API may allow the value 60 if it allows
|
|
39
|
+
# leap-seconds.
|
|
40
|
+
# @!attribute [rw] nanos
|
|
41
|
+
# @return [::Integer]
|
|
42
|
+
# Fractions of seconds, in nanoseconds. Must be greater than or equal to 0
|
|
43
|
+
# and less than or equal to 999,999,999.
|
|
44
|
+
class TimeOfDay
|
|
45
|
+
include ::Google::Protobuf::MessageExts
|
|
46
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-container-v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.55.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -62,6 +62,7 @@ files:
|
|
|
62
62
|
- proto_docs/README.md
|
|
63
63
|
- proto_docs/google/api/client.rb
|
|
64
64
|
- proto_docs/google/api/field_behavior.rb
|
|
65
|
+
- proto_docs/google/api/field_info.rb
|
|
65
66
|
- proto_docs/google/api/launch_stage.rb
|
|
66
67
|
- proto_docs/google/api/resource.rb
|
|
67
68
|
- proto_docs/google/container/v1beta1/cluster_service.rb
|
|
@@ -73,6 +74,7 @@ files:
|
|
|
73
74
|
- proto_docs/google/rpc/code.rb
|
|
74
75
|
- proto_docs/google/rpc/status.rb
|
|
75
76
|
- proto_docs/google/type/date.rb
|
|
77
|
+
- proto_docs/google/type/timeofday.rb
|
|
76
78
|
homepage: https://github.com/googleapis/google-cloud-ruby
|
|
77
79
|
licenses:
|
|
78
80
|
- Apache-2.0
|