google-cloud-container 0.10.1 → 0.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/google/cloud/container/v1/cluster_manager_client.rb +32 -32
- data/lib/google/cloud/container/v1/doc/google/container/v1/cluster_service.rb +35 -35
- data/lib/google/cloud/container/v1beta1/cluster_manager_client.rb +33 -33
- data/lib/google/cloud/container/v1beta1/doc/google/container/v1beta1/cluster_service.rb +37 -37
- data/lib/google/cloud/container/version.rb +1 -1
- data/lib/google/container/v1/cluster_service_pb.rb +97 -94
- data/lib/google/container/v1/cluster_service_services_pb.rb +103 -100
- data/lib/google/container/v1beta1/cluster_service_pb.rb +108 -105
- data/lib/google/container/v1beta1/cluster_service_services_pb.rb +105 -102
- metadata +2 -2
@@ -1,5 +1,5 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
-
# Source: google/container/v1beta1/cluster_service.proto for package '
|
2
|
+
# Source: google/container/v1beta1/cluster_service.proto for package 'Google::Cloud::Container::V1beta1'
|
3
3
|
# Original file comments:
|
4
4
|
# Copyright 2019 Google LLC.
|
5
5
|
#
|
@@ -22,110 +22,113 @@ require 'grpc'
|
|
22
22
|
require 'google/container/v1beta1/cluster_service_pb'
|
23
23
|
|
24
24
|
module Google
|
25
|
-
module
|
26
|
-
module
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
25
|
+
module Cloud
|
26
|
+
module Container
|
27
|
+
end
|
28
|
+
end
|
29
|
+
Container = Cloud::Container unless const_defined? :Container
|
30
|
+
end
|
31
|
+
module Google::Cloud::Container::V1beta1
|
32
|
+
module ClusterManager
|
33
|
+
# Google Kubernetes Engine Cluster Manager v1beta1
|
34
|
+
class Service
|
32
35
|
|
33
|
-
|
34
|
-
self.unmarshal_class_method = :decode
|
35
|
-
self.service_name = 'google.container.v1beta1.ClusterManager'
|
36
|
+
include GRPC::GenericService
|
36
37
|
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
# Gets the details for a specific cluster.
|
41
|
-
rpc :GetCluster, GetClusterRequest, Cluster
|
42
|
-
# Creates a cluster, consisting of the specified number and type of Google
|
43
|
-
# Compute Engine instances.
|
44
|
-
#
|
45
|
-
# By default, the cluster is created in the project's
|
46
|
-
# [default network](/compute/docs/networks-and-firewalls#networks).
|
47
|
-
#
|
48
|
-
# One firewall is added for the cluster. After cluster creation,
|
49
|
-
# the Kubelet creates routes for each node to allow the containers
|
50
|
-
# on that node to communicate with all other instances in the
|
51
|
-
# cluster.
|
52
|
-
#
|
53
|
-
# Finally, an entry is added to the project's global metadata indicating
|
54
|
-
# which CIDR range the cluster is using.
|
55
|
-
rpc :CreateCluster, CreateClusterRequest, Operation
|
56
|
-
# Updates the settings for a specific cluster.
|
57
|
-
rpc :UpdateCluster, UpdateClusterRequest, Operation
|
58
|
-
# Updates the version and/or image type of a specific node pool.
|
59
|
-
rpc :UpdateNodePool, UpdateNodePoolRequest, Operation
|
60
|
-
# Sets the autoscaling settings of a specific node pool.
|
61
|
-
rpc :SetNodePoolAutoscaling, SetNodePoolAutoscalingRequest, Operation
|
62
|
-
# Sets the logging service for a specific cluster.
|
63
|
-
rpc :SetLoggingService, SetLoggingServiceRequest, Operation
|
64
|
-
# Sets the monitoring service for a specific cluster.
|
65
|
-
rpc :SetMonitoringService, SetMonitoringServiceRequest, Operation
|
66
|
-
# Sets the addons for a specific cluster.
|
67
|
-
rpc :SetAddonsConfig, SetAddonsConfigRequest, Operation
|
68
|
-
# Sets the locations for a specific cluster.
|
69
|
-
rpc :SetLocations, SetLocationsRequest, Operation
|
70
|
-
# Updates the master for a specific cluster.
|
71
|
-
rpc :UpdateMaster, UpdateMasterRequest, Operation
|
72
|
-
# Sets master auth materials. Currently supports changing the admin password
|
73
|
-
# or a specific cluster, either via password generation or explicitly setting
|
74
|
-
# the password.
|
75
|
-
rpc :SetMasterAuth, SetMasterAuthRequest, Operation
|
76
|
-
# Deletes the cluster, including the Kubernetes endpoint and all worker
|
77
|
-
# nodes.
|
78
|
-
#
|
79
|
-
# Firewalls and routes that were configured during cluster creation
|
80
|
-
# are also deleted.
|
81
|
-
#
|
82
|
-
# Other Google Compute Engine resources that might be in use by the cluster,
|
83
|
-
# such as load balancer resources, are not deleted if they weren't present
|
84
|
-
# when the cluster was initially created.
|
85
|
-
rpc :DeleteCluster, DeleteClusterRequest, Operation
|
86
|
-
# Lists all operations in a project in the specified zone or all zones.
|
87
|
-
rpc :ListOperations, ListOperationsRequest, ListOperationsResponse
|
88
|
-
# Gets the specified operation.
|
89
|
-
rpc :GetOperation, GetOperationRequest, Operation
|
90
|
-
# Cancels the specified operation.
|
91
|
-
rpc :CancelOperation, CancelOperationRequest, Google::Protobuf::Empty
|
92
|
-
# Returns configuration info about the Google Kubernetes Engine service.
|
93
|
-
rpc :GetServerConfig, GetServerConfigRequest, ServerConfig
|
94
|
-
# Lists the node pools for a cluster.
|
95
|
-
rpc :ListNodePools, ListNodePoolsRequest, ListNodePoolsResponse
|
96
|
-
# Retrieves the requested node pool.
|
97
|
-
rpc :GetNodePool, GetNodePoolRequest, NodePool
|
98
|
-
# Creates a node pool for a cluster.
|
99
|
-
rpc :CreateNodePool, CreateNodePoolRequest, Operation
|
100
|
-
# Deletes a node pool from a cluster.
|
101
|
-
rpc :DeleteNodePool, DeleteNodePoolRequest, Operation
|
102
|
-
# Rolls back a previously Aborted or Failed NodePool upgrade.
|
103
|
-
# This makes no changes if the last upgrade successfully completed.
|
104
|
-
rpc :RollbackNodePoolUpgrade, RollbackNodePoolUpgradeRequest, Operation
|
105
|
-
# Sets the NodeManagement options for a node pool.
|
106
|
-
rpc :SetNodePoolManagement, SetNodePoolManagementRequest, Operation
|
107
|
-
# Sets labels on a cluster.
|
108
|
-
rpc :SetLabels, SetLabelsRequest, Operation
|
109
|
-
# Enables or disables the ABAC authorization mechanism on a cluster.
|
110
|
-
rpc :SetLegacyAbac, SetLegacyAbacRequest, Operation
|
111
|
-
# Starts master IP rotation.
|
112
|
-
rpc :StartIPRotation, StartIPRotationRequest, Operation
|
113
|
-
# Completes master IP rotation.
|
114
|
-
rpc :CompleteIPRotation, CompleteIPRotationRequest, Operation
|
115
|
-
# Sets the size for a specific node pool.
|
116
|
-
rpc :SetNodePoolSize, SetNodePoolSizeRequest, Operation
|
117
|
-
# Enables or disables Network Policy for a cluster.
|
118
|
-
rpc :SetNetworkPolicy, SetNetworkPolicyRequest, Operation
|
119
|
-
# Sets the maintenance policy for a cluster.
|
120
|
-
rpc :SetMaintenancePolicy, SetMaintenancePolicyRequest, Operation
|
121
|
-
# Lists subnetworks that can be used for creating clusters in a project.
|
122
|
-
rpc :ListUsableSubnetworks, ListUsableSubnetworksRequest, ListUsableSubnetworksResponse
|
123
|
-
# Fetches locations that offer Google Kubernetes Engine.
|
124
|
-
rpc :ListLocations, ListLocationsRequest, ListLocationsResponse
|
125
|
-
end
|
38
|
+
self.marshal_class_method = :encode
|
39
|
+
self.unmarshal_class_method = :decode
|
40
|
+
self.service_name = 'google.container.v1beta1.ClusterManager'
|
126
41
|
|
127
|
-
|
128
|
-
|
42
|
+
# Lists all clusters owned by a project in either the specified zone or all
|
43
|
+
# zones.
|
44
|
+
rpc :ListClusters, ListClustersRequest, ListClustersResponse
|
45
|
+
# Gets the details for a specific cluster.
|
46
|
+
rpc :GetCluster, GetClusterRequest, Cluster
|
47
|
+
# Creates a cluster, consisting of the specified number and type of Google
|
48
|
+
# Compute Engine instances.
|
49
|
+
#
|
50
|
+
# By default, the cluster is created in the project's
|
51
|
+
# [default network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks).
|
52
|
+
#
|
53
|
+
# One firewall is added for the cluster. After cluster creation,
|
54
|
+
# the Kubelet creates routes for each node to allow the containers
|
55
|
+
# on that node to communicate with all other instances in the
|
56
|
+
# cluster.
|
57
|
+
#
|
58
|
+
# Finally, an entry is added to the project's global metadata indicating
|
59
|
+
# which CIDR range the cluster is using.
|
60
|
+
rpc :CreateCluster, CreateClusterRequest, Operation
|
61
|
+
# Updates the settings for a specific cluster.
|
62
|
+
rpc :UpdateCluster, UpdateClusterRequest, Operation
|
63
|
+
# Updates the version and/or image type of a specific node pool.
|
64
|
+
rpc :UpdateNodePool, UpdateNodePoolRequest, Operation
|
65
|
+
# Sets the autoscaling settings of a specific node pool.
|
66
|
+
rpc :SetNodePoolAutoscaling, SetNodePoolAutoscalingRequest, Operation
|
67
|
+
# Sets the logging service for a specific cluster.
|
68
|
+
rpc :SetLoggingService, SetLoggingServiceRequest, Operation
|
69
|
+
# Sets the monitoring service for a specific cluster.
|
70
|
+
rpc :SetMonitoringService, SetMonitoringServiceRequest, Operation
|
71
|
+
# Sets the addons for a specific cluster.
|
72
|
+
rpc :SetAddonsConfig, SetAddonsConfigRequest, Operation
|
73
|
+
# Sets the locations for a specific cluster.
|
74
|
+
rpc :SetLocations, SetLocationsRequest, Operation
|
75
|
+
# Updates the master for a specific cluster.
|
76
|
+
rpc :UpdateMaster, UpdateMasterRequest, Operation
|
77
|
+
# Sets master auth materials. Currently supports changing the admin password
|
78
|
+
# or a specific cluster, either via password generation or explicitly setting
|
79
|
+
# the password.
|
80
|
+
rpc :SetMasterAuth, SetMasterAuthRequest, Operation
|
81
|
+
# Deletes the cluster, including the Kubernetes endpoint and all worker
|
82
|
+
# nodes.
|
83
|
+
#
|
84
|
+
# Firewalls and routes that were configured during cluster creation
|
85
|
+
# are also deleted.
|
86
|
+
#
|
87
|
+
# Other Google Compute Engine resources that might be in use by the cluster,
|
88
|
+
# such as load balancer resources, are not deleted if they weren't present
|
89
|
+
# when the cluster was initially created.
|
90
|
+
rpc :DeleteCluster, DeleteClusterRequest, Operation
|
91
|
+
# Lists all operations in a project in the specified zone or all zones.
|
92
|
+
rpc :ListOperations, ListOperationsRequest, ListOperationsResponse
|
93
|
+
# Gets the specified operation.
|
94
|
+
rpc :GetOperation, GetOperationRequest, Operation
|
95
|
+
# Cancels the specified operation.
|
96
|
+
rpc :CancelOperation, CancelOperationRequest, Google::Protobuf::Empty
|
97
|
+
# Returns configuration info about the Google Kubernetes Engine service.
|
98
|
+
rpc :GetServerConfig, GetServerConfigRequest, ServerConfig
|
99
|
+
# Lists the node pools for a cluster.
|
100
|
+
rpc :ListNodePools, ListNodePoolsRequest, ListNodePoolsResponse
|
101
|
+
# Retrieves the requested node pool.
|
102
|
+
rpc :GetNodePool, GetNodePoolRequest, NodePool
|
103
|
+
# Creates a node pool for a cluster.
|
104
|
+
rpc :CreateNodePool, CreateNodePoolRequest, Operation
|
105
|
+
# Deletes a node pool from a cluster.
|
106
|
+
rpc :DeleteNodePool, DeleteNodePoolRequest, Operation
|
107
|
+
# Rolls back a previously Aborted or Failed NodePool upgrade.
|
108
|
+
# This makes no changes if the last upgrade successfully completed.
|
109
|
+
rpc :RollbackNodePoolUpgrade, RollbackNodePoolUpgradeRequest, Operation
|
110
|
+
# Sets the NodeManagement options for a node pool.
|
111
|
+
rpc :SetNodePoolManagement, SetNodePoolManagementRequest, Operation
|
112
|
+
# Sets labels on a cluster.
|
113
|
+
rpc :SetLabels, SetLabelsRequest, Operation
|
114
|
+
# Enables or disables the ABAC authorization mechanism on a cluster.
|
115
|
+
rpc :SetLegacyAbac, SetLegacyAbacRequest, Operation
|
116
|
+
# Starts master IP rotation.
|
117
|
+
rpc :StartIPRotation, StartIPRotationRequest, Operation
|
118
|
+
# Completes master IP rotation.
|
119
|
+
rpc :CompleteIPRotation, CompleteIPRotationRequest, Operation
|
120
|
+
# Sets the size for a specific node pool.
|
121
|
+
rpc :SetNodePoolSize, SetNodePoolSizeRequest, Operation
|
122
|
+
# Enables or disables Network Policy for a cluster.
|
123
|
+
rpc :SetNetworkPolicy, SetNetworkPolicyRequest, Operation
|
124
|
+
# Sets the maintenance policy for a cluster.
|
125
|
+
rpc :SetMaintenancePolicy, SetMaintenancePolicyRequest, Operation
|
126
|
+
# Lists subnetworks that can be used for creating clusters in a project.
|
127
|
+
rpc :ListUsableSubnetworks, ListUsableSubnetworksRequest, ListUsableSubnetworksResponse
|
128
|
+
# Fetches locations that offer Google Kubernetes Engine.
|
129
|
+
rpc :ListLocations, ListLocationsRequest, ListLocationsResponse
|
129
130
|
end
|
131
|
+
|
132
|
+
Stub = Service.rpc_stub_class
|
130
133
|
end
|
131
134
|
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
|
+
version: 0.11.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: 2020-04-
|
11
|
+
date: 2020-04-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-gax
|