google-cloud-container 0.4.1 → 0.4.2
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a80691781b977da5f67682b8367c6128f30d2f048ef52d2ccefe9d313bdff627
|
|
4
|
+
data.tar.gz: 64720b4d81e7c58a7494cc91a267ca7674d5c38d4e67483a9ece1775870783cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3f10ab83314b23643b510bcef24b1ff7610711f554d2581e4b11d384802691676e5ce2cf0802c74638350bdf219a17e28fa6dbf940ad9d24595ac08f13a35096
|
|
7
|
+
data.tar.gz: 9cb148d87af1e0dd3b91401659c535833daa64e0f731ed7c9311deab55e3e84d94b1c0802d269890ded77a6302c6d000bd665db1feb50feabaa873e09c04ad74
|
|
@@ -27,6 +27,7 @@ require "google/gax"
|
|
|
27
27
|
|
|
28
28
|
require "google/container/v1/cluster_service_pb"
|
|
29
29
|
require "google/cloud/container/v1/credentials"
|
|
30
|
+
require "google/cloud/container/version"
|
|
30
31
|
|
|
31
32
|
module Google
|
|
32
33
|
module Cloud
|
|
@@ -120,7 +121,7 @@ module Google
|
|
|
120
121
|
updater_proc = credentials.updater_proc
|
|
121
122
|
end
|
|
122
123
|
|
|
123
|
-
package_version =
|
|
124
|
+
package_version = Google::Cloud::Container::VERSION
|
|
124
125
|
|
|
125
126
|
google_api_client = "gl-ruby/#{RUBY_VERSION}"
|
|
126
127
|
google_api_client << " #{lib_name}/#{lib_version}" if lib_name
|
|
@@ -27,6 +27,7 @@ require "google/gax"
|
|
|
27
27
|
|
|
28
28
|
require "google/container/v1beta1/cluster_service_pb"
|
|
29
29
|
require "google/cloud/container/v1beta1/credentials"
|
|
30
|
+
require "google/cloud/container/version"
|
|
30
31
|
|
|
31
32
|
module Google
|
|
32
33
|
module Cloud
|
|
@@ -129,7 +130,7 @@ module Google
|
|
|
129
130
|
updater_proc = credentials.updater_proc
|
|
130
131
|
end
|
|
131
132
|
|
|
132
|
-
package_version =
|
|
133
|
+
package_version = Google::Cloud::Container::VERSION
|
|
133
134
|
|
|
134
135
|
google_api_client = "gl-ruby/#{RUBY_VERSION}"
|
|
135
136
|
google_api_client << " #{lib_name}/#{lib_version}" if lib_name
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Copyright 2019 Google LLC
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
module Google
|
|
17
|
+
module Cloud
|
|
18
|
+
module Container
|
|
19
|
+
VERSION = "0.4.2".freeze
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-container
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-06-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-gax
|
|
@@ -118,6 +118,7 @@ files:
|
|
|
118
118
|
- lib/google/cloud/container/v1beta1/credentials.rb
|
|
119
119
|
- lib/google/cloud/container/v1beta1/doc/google/container/v1beta1/cluster_service.rb
|
|
120
120
|
- lib/google/cloud/container/v1beta1/doc/google/protobuf/empty.rb
|
|
121
|
+
- lib/google/cloud/container/version.rb
|
|
121
122
|
- lib/google/container/v1/cluster_service_pb.rb
|
|
122
123
|
- lib/google/container/v1/cluster_service_services_pb.rb
|
|
123
124
|
- lib/google/container/v1beta1/cluster_service_pb.rb
|