google-apis-container_v1 0.79.0 → 0.80.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 58f2bd8b42d993feab4f205d172be70489eea9b0b521308c0c5d6d0bc122ad1e
|
|
4
|
+
data.tar.gz: 9c82b86a2f9fa8eaa1a86a64429bee975389c9f128a50ea0571f46b6d63e2be2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6d59d4a54817762acc58bbdcdc26f4fc05585054ee1afe33eaa00d5bec4fc75cf258cd213f6588b8d837f015683bd55b4ec01cfa3ac5e31c46c2e08df8f2d758
|
|
7
|
+
data.tar.gz: 179195425648c8b1a8e2d8fee4a18698673b7275eca80f2b69420fb23dde5508677da771ca3e40c4f4f60101f3ed7ecb08e734439aea93d8ddd88c349d759fbc
|
data/CHANGELOG.md
CHANGED
|
@@ -106,6 +106,12 @@ module Google
|
|
|
106
106
|
# @return [Google::Apis::ContainerV1::MaxPodsConstraint]
|
|
107
107
|
attr_accessor :max_pods_per_node
|
|
108
108
|
|
|
109
|
+
# The name of the network attachment for pods to communicate to; cannot be
|
|
110
|
+
# specified along with subnetwork or secondary_pod_range.
|
|
111
|
+
# Corresponds to the JSON property `networkAttachment`
|
|
112
|
+
# @return [String]
|
|
113
|
+
attr_accessor :network_attachment
|
|
114
|
+
|
|
109
115
|
# The name of the secondary range on the subnet which provides IP address for
|
|
110
116
|
# this pod range.
|
|
111
117
|
# Corresponds to the JSON property `secondaryPodRange`
|
|
@@ -124,6 +130,7 @@ module Google
|
|
|
124
130
|
# Update properties of this object
|
|
125
131
|
def update!(**args)
|
|
126
132
|
@max_pods_per_node = args[:max_pods_per_node] if args.key?(:max_pods_per_node)
|
|
133
|
+
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
|
127
134
|
@secondary_pod_range = args[:secondary_pod_range] if args.key?(:secondary_pod_range)
|
|
128
135
|
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
|
129
136
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ContainerV1
|
|
18
18
|
# Version of the google-apis-container_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.80.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20240905"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1134,6 +1134,7 @@ module Google
|
|
|
1134
1134
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1135
1135
|
property :max_pods_per_node, as: 'maxPodsPerNode', class: Google::Apis::ContainerV1::MaxPodsConstraint, decorator: Google::Apis::ContainerV1::MaxPodsConstraint::Representation
|
|
1136
1136
|
|
|
1137
|
+
property :network_attachment, as: 'networkAttachment'
|
|
1137
1138
|
property :secondary_pod_range, as: 'secondaryPodRange'
|
|
1138
1139
|
property :subnetwork, as: 'subnetwork'
|
|
1139
1140
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-container_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.80.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: 2024-09-
|
|
11
|
+
date: 2024-09-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.80.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|