google-cloud-gke_multi_cloud-v1 0.3.0 → 0.5.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/README.md +2 -2
- data/lib/google/cloud/gke_multi_cloud/v1/attached_clusters/client.rb +32 -32
- data/lib/google/cloud/gke_multi_cloud/v1/attached_clusters/operations.rb +17 -17
- data/lib/google/cloud/gke_multi_cloud/v1/aws_clusters/client.rb +42 -44
- data/lib/google/cloud/gke_multi_cloud/v1/aws_clusters/operations.rb +17 -17
- data/lib/google/cloud/gke_multi_cloud/v1/azure_clusters/client.rb +58 -59
- data/lib/google/cloud/gke_multi_cloud/v1/azure_clusters/operations.rb +17 -17
- data/lib/google/cloud/gke_multi_cloud/v1/version.rb +1 -1
- data/lib/google/cloud/gkemulticloud/v1/attached_resources_pb.rb +26 -52
- data/lib/google/cloud/gkemulticloud/v1/attached_service_pb.rb +26 -49
- data/lib/google/cloud/gkemulticloud/v1/attached_service_services_pb.rb +1 -1
- data/lib/google/cloud/gkemulticloud/v1/aws_resources_pb.rb +26 -158
- data/lib/google/cloud/gkemulticloud/v1/aws_service_pb.rb +27 -69
- data/lib/google/cloud/gkemulticloud/v1/aws_service_services_pb.rb +1 -1
- data/lib/google/cloud/gkemulticloud/v1/azure_resources_pb.rb +27 -150
- data/lib/google/cloud/gkemulticloud/v1/azure_service_pb.rb +27 -92
- data/lib/google/cloud/gkemulticloud/v1/azure_service_services_pb.rb +1 -1
- data/lib/google/cloud/gkemulticloud/v1/common_resources_pb.rb +25 -50
- data/proto_docs/google/api/client.rb +67 -4
- data/proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb +3 -3
- data/proto_docs/google/cloud/gkemulticloud/v1/attached_service.rb +6 -6
- data/proto_docs/google/cloud/gkemulticloud/v1/aws_resources.rb +1 -1
- data/proto_docs/google/cloud/gkemulticloud/v1/aws_service.rb +4 -4
- data/proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb +26 -5
- data/proto_docs/google/cloud/gkemulticloud/v1/azure_service.rb +8 -5
- data/proto_docs/google/protobuf/any.rb +7 -4
- data/proto_docs/google/protobuf/timestamp.rb +1 -3
- metadata +14 -8
@@ -43,8 +43,12 @@ module Google
|
|
43
43
|
# if (any.is(Foo.class)) {
|
44
44
|
# foo = any.unpack(Foo.class);
|
45
45
|
# }
|
46
|
+
# // or ...
|
47
|
+
# if (any.isSameTypeAs(Foo.getDefaultInstance())) {
|
48
|
+
# foo = any.unpack(Foo.getDefaultInstance());
|
49
|
+
# }
|
46
50
|
#
|
47
|
-
#
|
51
|
+
# Example 3: Pack and unpack a message in Python.
|
48
52
|
#
|
49
53
|
# foo = Foo(...)
|
50
54
|
# any = Any()
|
@@ -54,7 +58,7 @@ module Google
|
|
54
58
|
# any.Unpack(foo)
|
55
59
|
# ...
|
56
60
|
#
|
57
|
-
#
|
61
|
+
# Example 4: Pack and unpack a message in Go
|
58
62
|
#
|
59
63
|
# foo := &pb.Foo{...}
|
60
64
|
# any, err := anypb.New(foo)
|
@@ -73,9 +77,8 @@ module Google
|
|
73
77
|
# in the type URL, for example "foo.bar.com/x/y.z" will yield type
|
74
78
|
# name "y.z".
|
75
79
|
#
|
76
|
-
#
|
77
80
|
# JSON
|
78
|
-
#
|
81
|
+
# ====
|
79
82
|
# The JSON representation of an `Any` value uses the regular
|
80
83
|
# representation of the deserialized, embedded message, with an
|
81
84
|
# additional field `@type` which contains the type URL. Example:
|
@@ -69,7 +69,6 @@ module Google
|
|
69
69
|
# Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
|
70
70
|
# .setNanos((int) ((millis % 1000) * 1000000)).build();
|
71
71
|
#
|
72
|
-
#
|
73
72
|
# Example 5: Compute Timestamp from Java `Instant.now()`.
|
74
73
|
#
|
75
74
|
# Instant now = Instant.now();
|
@@ -78,7 +77,6 @@ module Google
|
|
78
77
|
# Timestamp.newBuilder().setSeconds(now.getEpochSecond())
|
79
78
|
# .setNanos(now.getNano()).build();
|
80
79
|
#
|
81
|
-
#
|
82
80
|
# Example 6: Compute Timestamp from current time in Python.
|
83
81
|
#
|
84
82
|
# timestamp = Timestamp()
|
@@ -108,7 +106,7 @@ module Google
|
|
108
106
|
# [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
|
109
107
|
# the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
|
110
108
|
# the Joda Time's [`ISODateTimeFormat.dateTime()`](
|
111
|
-
# http://
|
109
|
+
# http://joda-time.sourceforge.net/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime()
|
112
110
|
# ) to obtain a formatter capable of generating timestamps in this format.
|
113
111
|
# @!attribute [rw] seconds
|
114
112
|
# @return [::Integer]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-gke_multi_cloud-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-06-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.19.1
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.19.1
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -50,14 +50,14 @@ dependencies:
|
|
50
50
|
requirements:
|
51
51
|
- - "~>"
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: 1.26.
|
53
|
+
version: 1.26.3
|
54
54
|
type: :development
|
55
55
|
prerelease: false
|
56
56
|
version_requirements: !ruby/object:Gem::Requirement
|
57
57
|
requirements:
|
58
58
|
- - "~>"
|
59
59
|
- !ruby/object:Gem::Version
|
60
|
-
version: 1.26.
|
60
|
+
version: 1.26.3
|
61
61
|
- !ruby/object:Gem::Dependency
|
62
62
|
name: minitest
|
63
63
|
requirement: !ruby/object:Gem::Requirement
|
@@ -237,8 +237,14 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
237
237
|
- !ruby/object:Gem::Version
|
238
238
|
version: '0'
|
239
239
|
requirements: []
|
240
|
-
rubygems_version: 3.
|
240
|
+
rubygems_version: 3.4.2
|
241
241
|
signing_key:
|
242
242
|
specification_version: 4
|
243
|
-
summary:
|
243
|
+
summary: Anthos Multi-Cloud provides a way to manage Kubernetes clusters that run
|
244
|
+
on AWS and Azure infrastructure using the Anthos Multi-Cloud API. Combined with
|
245
|
+
Connect, you can manage Kubernetes clusters on Google Cloud, AWS, and Azure from
|
246
|
+
the Google Cloud Console. When you create a cluster with Anthos Multi-Cloud, Google
|
247
|
+
creates the resources needed and brings up a cluster on your behalf. You can deploy
|
248
|
+
workloads with the Anthos Multi-Cloud API or the gcloud and kubectl command-line
|
249
|
+
tools.
|
244
250
|
test_files: []
|