You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

7106 lines
286 KiB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/container/v1/cluster_service.proto
  3. package container // import "google.golang.org/genproto/googleapis/container/v1"
  4. import proto "github.com/golang/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. import empty "github.com/golang/protobuf/ptypes/empty"
  8. import _ "google.golang.org/genproto/googleapis/api/annotations"
  9. import (
  10. context "golang.org/x/net/context"
  11. grpc "google.golang.org/grpc"
  12. )
  13. // Reference imports to suppress errors if they are not otherwise used.
  14. var _ = proto.Marshal
  15. var _ = fmt.Errorf
  16. var _ = math.Inf
  17. // This is a compile-time assertion to ensure that this generated file
  18. // is compatible with the proto package it is being compiled against.
  19. // A compilation error at this line likely means your copy of the
  20. // proto package needs to be updated.
  21. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  22. // Allowed Network Policy providers.
  23. type NetworkPolicy_Provider int32
  24. const (
  25. // Not set
  26. NetworkPolicy_PROVIDER_UNSPECIFIED NetworkPolicy_Provider = 0
  27. // Tigera (Calico Felix).
  28. NetworkPolicy_CALICO NetworkPolicy_Provider = 1
  29. )
  30. var NetworkPolicy_Provider_name = map[int32]string{
  31. 0: "PROVIDER_UNSPECIFIED",
  32. 1: "CALICO",
  33. }
  34. var NetworkPolicy_Provider_value = map[string]int32{
  35. "PROVIDER_UNSPECIFIED": 0,
  36. "CALICO": 1,
  37. }
  38. func (x NetworkPolicy_Provider) String() string {
  39. return proto.EnumName(NetworkPolicy_Provider_name, int32(x))
  40. }
  41. func (NetworkPolicy_Provider) EnumDescriptor() ([]byte, []int) {
  42. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{11, 0}
  43. }
  44. // The current status of the cluster.
  45. type Cluster_Status int32
  46. const (
  47. // Not set.
  48. Cluster_STATUS_UNSPECIFIED Cluster_Status = 0
  49. // The PROVISIONING state indicates the cluster is being created.
  50. Cluster_PROVISIONING Cluster_Status = 1
  51. // The RUNNING state indicates the cluster has been created and is fully
  52. // usable.
  53. Cluster_RUNNING Cluster_Status = 2
  54. // The RECONCILING state indicates that some work is actively being done on
  55. // the cluster, such as upgrading the master or node software. Details can
  56. // be found in the `statusMessage` field.
  57. Cluster_RECONCILING Cluster_Status = 3
  58. // The STOPPING state indicates the cluster is being deleted.
  59. Cluster_STOPPING Cluster_Status = 4
  60. // The ERROR state indicates the cluster may be unusable. Details
  61. // can be found in the `statusMessage` field.
  62. Cluster_ERROR Cluster_Status = 5
  63. // The DEGRADED state indicates the cluster requires user action to restore
  64. // full functionality. Details can be found in the `statusMessage` field.
  65. Cluster_DEGRADED Cluster_Status = 6
  66. )
  67. var Cluster_Status_name = map[int32]string{
  68. 0: "STATUS_UNSPECIFIED",
  69. 1: "PROVISIONING",
  70. 2: "RUNNING",
  71. 3: "RECONCILING",
  72. 4: "STOPPING",
  73. 5: "ERROR",
  74. 6: "DEGRADED",
  75. }
  76. var Cluster_Status_value = map[string]int32{
  77. "STATUS_UNSPECIFIED": 0,
  78. "PROVISIONING": 1,
  79. "RUNNING": 2,
  80. "RECONCILING": 3,
  81. "STOPPING": 4,
  82. "ERROR": 5,
  83. "DEGRADED": 6,
  84. }
  85. func (x Cluster_Status) String() string {
  86. return proto.EnumName(Cluster_Status_name, int32(x))
  87. }
  88. func (Cluster_Status) EnumDescriptor() ([]byte, []int) {
  89. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{13, 0}
  90. }
  91. // Current status of the operation.
  92. type Operation_Status int32
  93. const (
  94. // Not set.
  95. Operation_STATUS_UNSPECIFIED Operation_Status = 0
  96. // The operation has been created.
  97. Operation_PENDING Operation_Status = 1
  98. // The operation is currently running.
  99. Operation_RUNNING Operation_Status = 2
  100. // The operation is done, either cancelled or completed.
  101. Operation_DONE Operation_Status = 3
  102. // The operation is aborting.
  103. Operation_ABORTING Operation_Status = 4
  104. )
  105. var Operation_Status_name = map[int32]string{
  106. 0: "STATUS_UNSPECIFIED",
  107. 1: "PENDING",
  108. 2: "RUNNING",
  109. 3: "DONE",
  110. 4: "ABORTING",
  111. }
  112. var Operation_Status_value = map[string]int32{
  113. "STATUS_UNSPECIFIED": 0,
  114. "PENDING": 1,
  115. "RUNNING": 2,
  116. "DONE": 3,
  117. "ABORTING": 4,
  118. }
  119. func (x Operation_Status) String() string {
  120. return proto.EnumName(Operation_Status_name, int32(x))
  121. }
  122. func (Operation_Status) EnumDescriptor() ([]byte, []int) {
  123. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{15, 0}
  124. }
  125. // Operation type.
  126. type Operation_Type int32
  127. const (
  128. // Not set.
  129. Operation_TYPE_UNSPECIFIED Operation_Type = 0
  130. // Cluster create.
  131. Operation_CREATE_CLUSTER Operation_Type = 1
  132. // Cluster delete.
  133. Operation_DELETE_CLUSTER Operation_Type = 2
  134. // A master upgrade.
  135. Operation_UPGRADE_MASTER Operation_Type = 3
  136. // A node upgrade.
  137. Operation_UPGRADE_NODES Operation_Type = 4
  138. // Cluster repair.
  139. Operation_REPAIR_CLUSTER Operation_Type = 5
  140. // Cluster update.
  141. Operation_UPDATE_CLUSTER Operation_Type = 6
  142. // Node pool create.
  143. Operation_CREATE_NODE_POOL Operation_Type = 7
  144. // Node pool delete.
  145. Operation_DELETE_NODE_POOL Operation_Type = 8
  146. // Set node pool management.
  147. Operation_SET_NODE_POOL_MANAGEMENT Operation_Type = 9
  148. // Automatic node pool repair.
  149. Operation_AUTO_REPAIR_NODES Operation_Type = 10
  150. // Automatic node upgrade.
  151. Operation_AUTO_UPGRADE_NODES Operation_Type = 11
  152. // Set labels.
  153. Operation_SET_LABELS Operation_Type = 12
  154. // Set/generate master auth materials
  155. Operation_SET_MASTER_AUTH Operation_Type = 13
  156. // Set node pool size.
  157. Operation_SET_NODE_POOL_SIZE Operation_Type = 14
  158. // Updates network policy for a cluster.
  159. Operation_SET_NETWORK_POLICY Operation_Type = 15
  160. // Set the maintenance policy.
  161. Operation_SET_MAINTENANCE_POLICY Operation_Type = 16
  162. )
  163. var Operation_Type_name = map[int32]string{
  164. 0: "TYPE_UNSPECIFIED",
  165. 1: "CREATE_CLUSTER",
  166. 2: "DELETE_CLUSTER",
  167. 3: "UPGRADE_MASTER",
  168. 4: "UPGRADE_NODES",
  169. 5: "REPAIR_CLUSTER",
  170. 6: "UPDATE_CLUSTER",
  171. 7: "CREATE_NODE_POOL",
  172. 8: "DELETE_NODE_POOL",
  173. 9: "SET_NODE_POOL_MANAGEMENT",
  174. 10: "AUTO_REPAIR_NODES",
  175. 11: "AUTO_UPGRADE_NODES",
  176. 12: "SET_LABELS",
  177. 13: "SET_MASTER_AUTH",
  178. 14: "SET_NODE_POOL_SIZE",
  179. 15: "SET_NETWORK_POLICY",
  180. 16: "SET_MAINTENANCE_POLICY",
  181. }
  182. var Operation_Type_value = map[string]int32{
  183. "TYPE_UNSPECIFIED": 0,
  184. "CREATE_CLUSTER": 1,
  185. "DELETE_CLUSTER": 2,
  186. "UPGRADE_MASTER": 3,
  187. "UPGRADE_NODES": 4,
  188. "REPAIR_CLUSTER": 5,
  189. "UPDATE_CLUSTER": 6,
  190. "CREATE_NODE_POOL": 7,
  191. "DELETE_NODE_POOL": 8,
  192. "SET_NODE_POOL_MANAGEMENT": 9,
  193. "AUTO_REPAIR_NODES": 10,
  194. "AUTO_UPGRADE_NODES": 11,
  195. "SET_LABELS": 12,
  196. "SET_MASTER_AUTH": 13,
  197. "SET_NODE_POOL_SIZE": 14,
  198. "SET_NETWORK_POLICY": 15,
  199. "SET_MAINTENANCE_POLICY": 16,
  200. }
  201. func (x Operation_Type) String() string {
  202. return proto.EnumName(Operation_Type_name, int32(x))
  203. }
  204. func (Operation_Type) EnumDescriptor() ([]byte, []int) {
  205. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{15, 1}
  206. }
  207. // Operation type: what type update to perform.
  208. type SetMasterAuthRequest_Action int32
  209. const (
  210. // Operation is unknown and will error out.
  211. SetMasterAuthRequest_UNKNOWN SetMasterAuthRequest_Action = 0
  212. // Set the password to a user generated value.
  213. SetMasterAuthRequest_SET_PASSWORD SetMasterAuthRequest_Action = 1
  214. // Generate a new password and set it to that.
  215. SetMasterAuthRequest_GENERATE_PASSWORD SetMasterAuthRequest_Action = 2
  216. // Set the username. If an empty username is provided, basic authentication
  217. // is disabled for the cluster. If a non-empty username is provided, basic
  218. // authentication is enabled, with either a provided password or a generated
  219. // one.
  220. SetMasterAuthRequest_SET_USERNAME SetMasterAuthRequest_Action = 3
  221. )
  222. var SetMasterAuthRequest_Action_name = map[int32]string{
  223. 0: "UNKNOWN",
  224. 1: "SET_PASSWORD",
  225. 2: "GENERATE_PASSWORD",
  226. 3: "SET_USERNAME",
  227. }
  228. var SetMasterAuthRequest_Action_value = map[string]int32{
  229. "UNKNOWN": 0,
  230. "SET_PASSWORD": 1,
  231. "GENERATE_PASSWORD": 2,
  232. "SET_USERNAME": 3,
  233. }
  234. func (x SetMasterAuthRequest_Action) String() string {
  235. return proto.EnumName(SetMasterAuthRequest_Action_name, int32(x))
  236. }
  237. func (SetMasterAuthRequest_Action) EnumDescriptor() ([]byte, []int) {
  238. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{26, 0}
  239. }
  240. // The current status of the node pool instance.
  241. type NodePool_Status int32
  242. const (
  243. // Not set.
  244. NodePool_STATUS_UNSPECIFIED NodePool_Status = 0
  245. // The PROVISIONING state indicates the node pool is being created.
  246. NodePool_PROVISIONING NodePool_Status = 1
  247. // The RUNNING state indicates the node pool has been created
  248. // and is fully usable.
  249. NodePool_RUNNING NodePool_Status = 2
  250. // The RUNNING_WITH_ERROR state indicates the node pool has been created
  251. // and is partially usable. Some error state has occurred and some
  252. // functionality may be impaired. Customer may need to reissue a request
  253. // or trigger a new update.
  254. NodePool_RUNNING_WITH_ERROR NodePool_Status = 3
  255. // The RECONCILING state indicates that some work is actively being done on
  256. // the node pool, such as upgrading node software. Details can
  257. // be found in the `statusMessage` field.
  258. NodePool_RECONCILING NodePool_Status = 4
  259. // The STOPPING state indicates the node pool is being deleted.
  260. NodePool_STOPPING NodePool_Status = 5
  261. // The ERROR state indicates the node pool may be unusable. Details
  262. // can be found in the `statusMessage` field.
  263. NodePool_ERROR NodePool_Status = 6
  264. )
  265. var NodePool_Status_name = map[int32]string{
  266. 0: "STATUS_UNSPECIFIED",
  267. 1: "PROVISIONING",
  268. 2: "RUNNING",
  269. 3: "RUNNING_WITH_ERROR",
  270. 4: "RECONCILING",
  271. 5: "STOPPING",
  272. 6: "ERROR",
  273. }
  274. var NodePool_Status_value = map[string]int32{
  275. "STATUS_UNSPECIFIED": 0,
  276. "PROVISIONING": 1,
  277. "RUNNING": 2,
  278. "RUNNING_WITH_ERROR": 3,
  279. "RECONCILING": 4,
  280. "STOPPING": 5,
  281. "ERROR": 6,
  282. }
  283. func (x NodePool_Status) String() string {
  284. return proto.EnumName(NodePool_Status_name, int32(x))
  285. }
  286. func (NodePool_Status) EnumDescriptor() ([]byte, []int) {
  287. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{40, 0}
  288. }
  289. // Parameters that describe the nodes in a cluster.
  290. type NodeConfig struct {
  291. // The name of a Google Compute Engine [machine
  292. // type](/compute/docs/machine-types) (e.g.
  293. // `n1-standard-1`).
  294. //
  295. // If unspecified, the default machine type is
  296. // `n1-standard-1`.
  297. MachineType string `protobuf:"bytes,1,opt,name=machine_type,json=machineType,proto3" json:"machine_type,omitempty"`
  298. // Size of the disk attached to each node, specified in GB.
  299. // The smallest allowed disk size is 10GB.
  300. //
  301. // If unspecified, the default disk size is 100GB.
  302. DiskSizeGb int32 `protobuf:"varint,2,opt,name=disk_size_gb,json=diskSizeGb,proto3" json:"disk_size_gb,omitempty"`
  303. // The set of Google API scopes to be made available on all of the
  304. // node VMs under the "default" service account.
  305. //
  306. // The following scopes are recommended, but not required, and by default are
  307. // not included:
  308. //
  309. // * `https://www.googleapis.com/auth/compute` is required for mounting
  310. // persistent storage on your nodes.
  311. // * `https://www.googleapis.com/auth/devstorage.read_only` is required for
  312. // communicating with **gcr.io**
  313. // (the [Google Container Registry](/container-registry/)).
  314. //
  315. // If unspecified, no scopes are added, unless Cloud Logging or Cloud
  316. // Monitoring are enabled, in which case their required scopes will be added.
  317. OauthScopes []string `protobuf:"bytes,3,rep,name=oauth_scopes,json=oauthScopes,proto3" json:"oauth_scopes,omitempty"`
  318. // The Google Cloud Platform Service Account to be used by the node VMs. If
  319. // no Service Account is specified, the "default" service account is used.
  320. ServiceAccount string `protobuf:"bytes,9,opt,name=service_account,json=serviceAccount,proto3" json:"service_account,omitempty"`
  321. // The metadata key/value pairs assigned to instances in the cluster.
  322. //
  323. // Keys must conform to the regexp [a-zA-Z0-9-_]+ and be less than 128 bytes
  324. // in length. These are reflected as part of a URL in the metadata server.
  325. // Additionally, to avoid ambiguity, keys must not conflict with any other
  326. // metadata keys for the project or be one of the reserved keys:
  327. // "cluster-location"
  328. // "cluster-name"
  329. // "cluster-uid"
  330. // "configure-sh"
  331. // "enable-os-login"
  332. // "gci-update-strategy"
  333. // "gci-ensure-gke-docker"
  334. // "instance-template"
  335. // "kube-env"
  336. // "startup-script"
  337. // "user-data"
  338. //
  339. // Values are free-form strings, and only have meaning as interpreted by
  340. // the image running in the instance. The only restriction placed on them is
  341. // that each value's size must be less than or equal to 32 KB.
  342. //
  343. // The total size of all keys and values must be less than 512 KB.
  344. Metadata map[string]string `protobuf:"bytes,4,rep,name=metadata,proto3" json:"metadata,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  345. // The image type to use for this node. Note that for a given image type,
  346. // the latest version of it will be used.
  347. ImageType string `protobuf:"bytes,5,opt,name=image_type,json=imageType,proto3" json:"image_type,omitempty"`
  348. // The map of Kubernetes labels (key/value pairs) to be applied to each node.
  349. // These will added in addition to any default label(s) that
  350. // Kubernetes may apply to the node.
  351. // In case of conflict in label keys, the applied set may differ depending on
  352. // the Kubernetes version -- it's best to assume the behavior is undefined
  353. // and conflicts should be avoided.
  354. // For more information, including usage and the valid values, see:
  355. // https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
  356. Labels map[string]string `protobuf:"bytes,6,rep,name=labels,proto3" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  357. // The number of local SSD disks to be attached to the node.
  358. //
  359. // The limit for this value is dependant upon the maximum number of
  360. // disks available on a machine per zone. See:
  361. // https://cloud.google.com/compute/docs/disks/local-ssd#local_ssd_limits
  362. // for more information.
  363. LocalSsdCount int32 `protobuf:"varint,7,opt,name=local_ssd_count,json=localSsdCount,proto3" json:"local_ssd_count,omitempty"`
  364. // The list of instance tags applied to all nodes. Tags are used to identify
  365. // valid sources or targets for network firewalls and are specified by
  366. // the client during cluster or node pool creation. Each tag within the list
  367. // must comply with RFC1035.
  368. Tags []string `protobuf:"bytes,8,rep,name=tags,proto3" json:"tags,omitempty"`
  369. // Whether the nodes are created as preemptible VM instances. See:
  370. // https://cloud.google.com/compute/docs/instances/preemptible for more
  371. // information about preemptible VM instances.
  372. Preemptible bool `protobuf:"varint,10,opt,name=preemptible,proto3" json:"preemptible,omitempty"`
  373. // A list of hardware accelerators to be attached to each node.
  374. // See https://cloud.google.com/compute/docs/gpus for more information about
  375. // support for GPUs.
  376. Accelerators []*AcceleratorConfig `protobuf:"bytes,11,rep,name=accelerators,proto3" json:"accelerators,omitempty"`
  377. // Type of the disk attached to each node (e.g. 'pd-standard' or 'pd-ssd')
  378. //
  379. // If unspecified, the default disk type is 'pd-standard'
  380. DiskType string `protobuf:"bytes,12,opt,name=disk_type,json=diskType,proto3" json:"disk_type,omitempty"`
  381. // Minimum CPU platform to be used by this instance. The instance may be
  382. // scheduled on the specified or newer CPU platform. Applicable values are the
  383. // friendly names of CPU platforms, such as
  384. // <code>minCpuPlatform: &quot;Intel Haswell&quot;</code> or
  385. // <code>minCpuPlatform: &quot;Intel Sandy Bridge&quot;</code>. For more
  386. // information, read [how to specify min CPU
  387. // platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform)
  388. MinCpuPlatform string `protobuf:"bytes,13,opt,name=min_cpu_platform,json=minCpuPlatform,proto3" json:"min_cpu_platform,omitempty"`
  389. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  390. XXX_unrecognized []byte `json:"-"`
  391. XXX_sizecache int32 `json:"-"`
  392. }
  393. func (m *NodeConfig) Reset() { *m = NodeConfig{} }
  394. func (m *NodeConfig) String() string { return proto.CompactTextString(m) }
  395. func (*NodeConfig) ProtoMessage() {}
  396. func (*NodeConfig) Descriptor() ([]byte, []int) {
  397. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{0}
  398. }
  399. func (m *NodeConfig) XXX_Unmarshal(b []byte) error {
  400. return xxx_messageInfo_NodeConfig.Unmarshal(m, b)
  401. }
  402. func (m *NodeConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  403. return xxx_messageInfo_NodeConfig.Marshal(b, m, deterministic)
  404. }
  405. func (dst *NodeConfig) XXX_Merge(src proto.Message) {
  406. xxx_messageInfo_NodeConfig.Merge(dst, src)
  407. }
  408. func (m *NodeConfig) XXX_Size() int {
  409. return xxx_messageInfo_NodeConfig.Size(m)
  410. }
  411. func (m *NodeConfig) XXX_DiscardUnknown() {
  412. xxx_messageInfo_NodeConfig.DiscardUnknown(m)
  413. }
  414. var xxx_messageInfo_NodeConfig proto.InternalMessageInfo
  415. func (m *NodeConfig) GetMachineType() string {
  416. if m != nil {
  417. return m.MachineType
  418. }
  419. return ""
  420. }
  421. func (m *NodeConfig) GetDiskSizeGb() int32 {
  422. if m != nil {
  423. return m.DiskSizeGb
  424. }
  425. return 0
  426. }
  427. func (m *NodeConfig) GetOauthScopes() []string {
  428. if m != nil {
  429. return m.OauthScopes
  430. }
  431. return nil
  432. }
  433. func (m *NodeConfig) GetServiceAccount() string {
  434. if m != nil {
  435. return m.ServiceAccount
  436. }
  437. return ""
  438. }
  439. func (m *NodeConfig) GetMetadata() map[string]string {
  440. if m != nil {
  441. return m.Metadata
  442. }
  443. return nil
  444. }
  445. func (m *NodeConfig) GetImageType() string {
  446. if m != nil {
  447. return m.ImageType
  448. }
  449. return ""
  450. }
  451. func (m *NodeConfig) GetLabels() map[string]string {
  452. if m != nil {
  453. return m.Labels
  454. }
  455. return nil
  456. }
  457. func (m *NodeConfig) GetLocalSsdCount() int32 {
  458. if m != nil {
  459. return m.LocalSsdCount
  460. }
  461. return 0
  462. }
  463. func (m *NodeConfig) GetTags() []string {
  464. if m != nil {
  465. return m.Tags
  466. }
  467. return nil
  468. }
  469. func (m *NodeConfig) GetPreemptible() bool {
  470. if m != nil {
  471. return m.Preemptible
  472. }
  473. return false
  474. }
  475. func (m *NodeConfig) GetAccelerators() []*AcceleratorConfig {
  476. if m != nil {
  477. return m.Accelerators
  478. }
  479. return nil
  480. }
  481. func (m *NodeConfig) GetDiskType() string {
  482. if m != nil {
  483. return m.DiskType
  484. }
  485. return ""
  486. }
  487. func (m *NodeConfig) GetMinCpuPlatform() string {
  488. if m != nil {
  489. return m.MinCpuPlatform
  490. }
  491. return ""
  492. }
  493. // The authentication information for accessing the master endpoint.
  494. // Authentication can be done using HTTP basic auth or using client
  495. // certificates.
  496. type MasterAuth struct {
  497. // The username to use for HTTP basic authentication to the master endpoint.
  498. // For clusters v1.6.0 and later, you can disable basic authentication by
  499. // providing an empty username.
  500. Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
  501. // The password to use for HTTP basic authentication to the master endpoint.
  502. // Because the master endpoint is open to the Internet, you should create a
  503. // strong password. If a password is provided for cluster creation, username
  504. // must be non-empty.
  505. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
  506. // Configuration for client certificate authentication on the cluster. For
  507. // clusters before v1.12, if no configuration is specified, a client
  508. // certificate is issued.
  509. ClientCertificateConfig *ClientCertificateConfig `protobuf:"bytes,3,opt,name=client_certificate_config,json=clientCertificateConfig,proto3" json:"client_certificate_config,omitempty"`
  510. // [Output only] Base64-encoded public certificate that is the root of
  511. // trust for the cluster.
  512. ClusterCaCertificate string `protobuf:"bytes,100,opt,name=cluster_ca_certificate,json=clusterCaCertificate,proto3" json:"cluster_ca_certificate,omitempty"`
  513. // [Output only] Base64-encoded public certificate used by clients to
  514. // authenticate to the cluster endpoint.
  515. ClientCertificate string `protobuf:"bytes,101,opt,name=client_certificate,json=clientCertificate,proto3" json:"client_certificate,omitempty"`
  516. // [Output only] Base64-encoded private key used by clients to authenticate
  517. // to the cluster endpoint.
  518. ClientKey string `protobuf:"bytes,102,opt,name=client_key,json=clientKey,proto3" json:"client_key,omitempty"`
  519. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  520. XXX_unrecognized []byte `json:"-"`
  521. XXX_sizecache int32 `json:"-"`
  522. }
  523. func (m *MasterAuth) Reset() { *m = MasterAuth{} }
  524. func (m *MasterAuth) String() string { return proto.CompactTextString(m) }
  525. func (*MasterAuth) ProtoMessage() {}
  526. func (*MasterAuth) Descriptor() ([]byte, []int) {
  527. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{1}
  528. }
  529. func (m *MasterAuth) XXX_Unmarshal(b []byte) error {
  530. return xxx_messageInfo_MasterAuth.Unmarshal(m, b)
  531. }
  532. func (m *MasterAuth) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  533. return xxx_messageInfo_MasterAuth.Marshal(b, m, deterministic)
  534. }
  535. func (dst *MasterAuth) XXX_Merge(src proto.Message) {
  536. xxx_messageInfo_MasterAuth.Merge(dst, src)
  537. }
  538. func (m *MasterAuth) XXX_Size() int {
  539. return xxx_messageInfo_MasterAuth.Size(m)
  540. }
  541. func (m *MasterAuth) XXX_DiscardUnknown() {
  542. xxx_messageInfo_MasterAuth.DiscardUnknown(m)
  543. }
  544. var xxx_messageInfo_MasterAuth proto.InternalMessageInfo
  545. func (m *MasterAuth) GetUsername() string {
  546. if m != nil {
  547. return m.Username
  548. }
  549. return ""
  550. }
  551. func (m *MasterAuth) GetPassword() string {
  552. if m != nil {
  553. return m.Password
  554. }
  555. return ""
  556. }
  557. func (m *MasterAuth) GetClientCertificateConfig() *ClientCertificateConfig {
  558. if m != nil {
  559. return m.ClientCertificateConfig
  560. }
  561. return nil
  562. }
  563. func (m *MasterAuth) GetClusterCaCertificate() string {
  564. if m != nil {
  565. return m.ClusterCaCertificate
  566. }
  567. return ""
  568. }
  569. func (m *MasterAuth) GetClientCertificate() string {
  570. if m != nil {
  571. return m.ClientCertificate
  572. }
  573. return ""
  574. }
  575. func (m *MasterAuth) GetClientKey() string {
  576. if m != nil {
  577. return m.ClientKey
  578. }
  579. return ""
  580. }
  581. // Configuration for client certificates on the cluster.
  582. type ClientCertificateConfig struct {
  583. // Issue a client certificate.
  584. IssueClientCertificate bool `protobuf:"varint,1,opt,name=issue_client_certificate,json=issueClientCertificate,proto3" json:"issue_client_certificate,omitempty"`
  585. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  586. XXX_unrecognized []byte `json:"-"`
  587. XXX_sizecache int32 `json:"-"`
  588. }
  589. func (m *ClientCertificateConfig) Reset() { *m = ClientCertificateConfig{} }
  590. func (m *ClientCertificateConfig) String() string { return proto.CompactTextString(m) }
  591. func (*ClientCertificateConfig) ProtoMessage() {}
  592. func (*ClientCertificateConfig) Descriptor() ([]byte, []int) {
  593. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{2}
  594. }
  595. func (m *ClientCertificateConfig) XXX_Unmarshal(b []byte) error {
  596. return xxx_messageInfo_ClientCertificateConfig.Unmarshal(m, b)
  597. }
  598. func (m *ClientCertificateConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  599. return xxx_messageInfo_ClientCertificateConfig.Marshal(b, m, deterministic)
  600. }
  601. func (dst *ClientCertificateConfig) XXX_Merge(src proto.Message) {
  602. xxx_messageInfo_ClientCertificateConfig.Merge(dst, src)
  603. }
  604. func (m *ClientCertificateConfig) XXX_Size() int {
  605. return xxx_messageInfo_ClientCertificateConfig.Size(m)
  606. }
  607. func (m *ClientCertificateConfig) XXX_DiscardUnknown() {
  608. xxx_messageInfo_ClientCertificateConfig.DiscardUnknown(m)
  609. }
  610. var xxx_messageInfo_ClientCertificateConfig proto.InternalMessageInfo
  611. func (m *ClientCertificateConfig) GetIssueClientCertificate() bool {
  612. if m != nil {
  613. return m.IssueClientCertificate
  614. }
  615. return false
  616. }
  617. // Configuration for the addons that can be automatically spun up in the
  618. // cluster, enabling additional functionality.
  619. type AddonsConfig struct {
  620. // Configuration for the HTTP (L7) load balancing controller addon, which
  621. // makes it easy to set up HTTP load balancers for services in a cluster.
  622. HttpLoadBalancing *HttpLoadBalancing `protobuf:"bytes,1,opt,name=http_load_balancing,json=httpLoadBalancing,proto3" json:"http_load_balancing,omitempty"`
  623. // Configuration for the horizontal pod autoscaling feature, which
  624. // increases or decreases the number of replica pods a replication controller
  625. // has based on the resource usage of the existing pods.
  626. HorizontalPodAutoscaling *HorizontalPodAutoscaling `protobuf:"bytes,2,opt,name=horizontal_pod_autoscaling,json=horizontalPodAutoscaling,proto3" json:"horizontal_pod_autoscaling,omitempty"`
  627. // Configuration for the Kubernetes Dashboard.
  628. KubernetesDashboard *KubernetesDashboard `protobuf:"bytes,3,opt,name=kubernetes_dashboard,json=kubernetesDashboard,proto3" json:"kubernetes_dashboard,omitempty"`
  629. // Configuration for NetworkPolicy. This only tracks whether the addon
  630. // is enabled or not on the Master, it does not track whether network policy
  631. // is enabled for the nodes.
  632. NetworkPolicyConfig *NetworkPolicyConfig `protobuf:"bytes,4,opt,name=network_policy_config,json=networkPolicyConfig,proto3" json:"network_policy_config,omitempty"`
  633. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  634. XXX_unrecognized []byte `json:"-"`
  635. XXX_sizecache int32 `json:"-"`
  636. }
  637. func (m *AddonsConfig) Reset() { *m = AddonsConfig{} }
  638. func (m *AddonsConfig) String() string { return proto.CompactTextString(m) }
  639. func (*AddonsConfig) ProtoMessage() {}
  640. func (*AddonsConfig) Descriptor() ([]byte, []int) {
  641. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{3}
  642. }
  643. func (m *AddonsConfig) XXX_Unmarshal(b []byte) error {
  644. return xxx_messageInfo_AddonsConfig.Unmarshal(m, b)
  645. }
  646. func (m *AddonsConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  647. return xxx_messageInfo_AddonsConfig.Marshal(b, m, deterministic)
  648. }
  649. func (dst *AddonsConfig) XXX_Merge(src proto.Message) {
  650. xxx_messageInfo_AddonsConfig.Merge(dst, src)
  651. }
  652. func (m *AddonsConfig) XXX_Size() int {
  653. return xxx_messageInfo_AddonsConfig.Size(m)
  654. }
  655. func (m *AddonsConfig) XXX_DiscardUnknown() {
  656. xxx_messageInfo_AddonsConfig.DiscardUnknown(m)
  657. }
  658. var xxx_messageInfo_AddonsConfig proto.InternalMessageInfo
  659. func (m *AddonsConfig) GetHttpLoadBalancing() *HttpLoadBalancing {
  660. if m != nil {
  661. return m.HttpLoadBalancing
  662. }
  663. return nil
  664. }
  665. func (m *AddonsConfig) GetHorizontalPodAutoscaling() *HorizontalPodAutoscaling {
  666. if m != nil {
  667. return m.HorizontalPodAutoscaling
  668. }
  669. return nil
  670. }
  671. func (m *AddonsConfig) GetKubernetesDashboard() *KubernetesDashboard {
  672. if m != nil {
  673. return m.KubernetesDashboard
  674. }
  675. return nil
  676. }
  677. func (m *AddonsConfig) GetNetworkPolicyConfig() *NetworkPolicyConfig {
  678. if m != nil {
  679. return m.NetworkPolicyConfig
  680. }
  681. return nil
  682. }
  683. // Configuration options for the HTTP (L7) load balancing controller addon,
  684. // which makes it easy to set up HTTP load balancers for services in a cluster.
  685. type HttpLoadBalancing struct {
  686. // Whether the HTTP Load Balancing controller is enabled in the cluster.
  687. // When enabled, it runs a small pod in the cluster that manages the load
  688. // balancers.
  689. Disabled bool `protobuf:"varint,1,opt,name=disabled,proto3" json:"disabled,omitempty"`
  690. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  691. XXX_unrecognized []byte `json:"-"`
  692. XXX_sizecache int32 `json:"-"`
  693. }
  694. func (m *HttpLoadBalancing) Reset() { *m = HttpLoadBalancing{} }
  695. func (m *HttpLoadBalancing) String() string { return proto.CompactTextString(m) }
  696. func (*HttpLoadBalancing) ProtoMessage() {}
  697. func (*HttpLoadBalancing) Descriptor() ([]byte, []int) {
  698. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{4}
  699. }
  700. func (m *HttpLoadBalancing) XXX_Unmarshal(b []byte) error {
  701. return xxx_messageInfo_HttpLoadBalancing.Unmarshal(m, b)
  702. }
  703. func (m *HttpLoadBalancing) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  704. return xxx_messageInfo_HttpLoadBalancing.Marshal(b, m, deterministic)
  705. }
  706. func (dst *HttpLoadBalancing) XXX_Merge(src proto.Message) {
  707. xxx_messageInfo_HttpLoadBalancing.Merge(dst, src)
  708. }
  709. func (m *HttpLoadBalancing) XXX_Size() int {
  710. return xxx_messageInfo_HttpLoadBalancing.Size(m)
  711. }
  712. func (m *HttpLoadBalancing) XXX_DiscardUnknown() {
  713. xxx_messageInfo_HttpLoadBalancing.DiscardUnknown(m)
  714. }
  715. var xxx_messageInfo_HttpLoadBalancing proto.InternalMessageInfo
  716. func (m *HttpLoadBalancing) GetDisabled() bool {
  717. if m != nil {
  718. return m.Disabled
  719. }
  720. return false
  721. }
  722. // Configuration options for the horizontal pod autoscaling feature, which
  723. // increases or decreases the number of replica pods a replication controller
  724. // has based on the resource usage of the existing pods.
  725. type HorizontalPodAutoscaling struct {
  726. // Whether the Horizontal Pod Autoscaling feature is enabled in the cluster.
  727. // When enabled, it ensures that a Heapster pod is running in the cluster,
  728. // which is also used by the Cloud Monitoring service.
  729. Disabled bool `protobuf:"varint,1,opt,name=disabled,proto3" json:"disabled,omitempty"`
  730. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  731. XXX_unrecognized []byte `json:"-"`
  732. XXX_sizecache int32 `json:"-"`
  733. }
  734. func (m *HorizontalPodAutoscaling) Reset() { *m = HorizontalPodAutoscaling{} }
  735. func (m *HorizontalPodAutoscaling) String() string { return proto.CompactTextString(m) }
  736. func (*HorizontalPodAutoscaling) ProtoMessage() {}
  737. func (*HorizontalPodAutoscaling) Descriptor() ([]byte, []int) {
  738. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{5}
  739. }
  740. func (m *HorizontalPodAutoscaling) XXX_Unmarshal(b []byte) error {
  741. return xxx_messageInfo_HorizontalPodAutoscaling.Unmarshal(m, b)
  742. }
  743. func (m *HorizontalPodAutoscaling) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  744. return xxx_messageInfo_HorizontalPodAutoscaling.Marshal(b, m, deterministic)
  745. }
  746. func (dst *HorizontalPodAutoscaling) XXX_Merge(src proto.Message) {
  747. xxx_messageInfo_HorizontalPodAutoscaling.Merge(dst, src)
  748. }
  749. func (m *HorizontalPodAutoscaling) XXX_Size() int {
  750. return xxx_messageInfo_HorizontalPodAutoscaling.Size(m)
  751. }
  752. func (m *HorizontalPodAutoscaling) XXX_DiscardUnknown() {
  753. xxx_messageInfo_HorizontalPodAutoscaling.DiscardUnknown(m)
  754. }
  755. var xxx_messageInfo_HorizontalPodAutoscaling proto.InternalMessageInfo
  756. func (m *HorizontalPodAutoscaling) GetDisabled() bool {
  757. if m != nil {
  758. return m.Disabled
  759. }
  760. return false
  761. }
  762. // Configuration for the Kubernetes Dashboard.
  763. type KubernetesDashboard struct {
  764. // Whether the Kubernetes Dashboard is enabled for this cluster.
  765. Disabled bool `protobuf:"varint,1,opt,name=disabled,proto3" json:"disabled,omitempty"`
  766. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  767. XXX_unrecognized []byte `json:"-"`
  768. XXX_sizecache int32 `json:"-"`
  769. }
  770. func (m *KubernetesDashboard) Reset() { *m = KubernetesDashboard{} }
  771. func (m *KubernetesDashboard) String() string { return proto.CompactTextString(m) }
  772. func (*KubernetesDashboard) ProtoMessage() {}
  773. func (*KubernetesDashboard) Descriptor() ([]byte, []int) {
  774. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{6}
  775. }
  776. func (m *KubernetesDashboard) XXX_Unmarshal(b []byte) error {
  777. return xxx_messageInfo_KubernetesDashboard.Unmarshal(m, b)
  778. }
  779. func (m *KubernetesDashboard) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  780. return xxx_messageInfo_KubernetesDashboard.Marshal(b, m, deterministic)
  781. }
  782. func (dst *KubernetesDashboard) XXX_Merge(src proto.Message) {
  783. xxx_messageInfo_KubernetesDashboard.Merge(dst, src)
  784. }
  785. func (m *KubernetesDashboard) XXX_Size() int {
  786. return xxx_messageInfo_KubernetesDashboard.Size(m)
  787. }
  788. func (m *KubernetesDashboard) XXX_DiscardUnknown() {
  789. xxx_messageInfo_KubernetesDashboard.DiscardUnknown(m)
  790. }
  791. var xxx_messageInfo_KubernetesDashboard proto.InternalMessageInfo
  792. func (m *KubernetesDashboard) GetDisabled() bool {
  793. if m != nil {
  794. return m.Disabled
  795. }
  796. return false
  797. }
  798. // Configuration for NetworkPolicy. This only tracks whether the addon
  799. // is enabled or not on the Master, it does not track whether network policy
  800. // is enabled for the nodes.
  801. type NetworkPolicyConfig struct {
  802. // Whether NetworkPolicy is enabled for this cluster.
  803. Disabled bool `protobuf:"varint,1,opt,name=disabled,proto3" json:"disabled,omitempty"`
  804. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  805. XXX_unrecognized []byte `json:"-"`
  806. XXX_sizecache int32 `json:"-"`
  807. }
  808. func (m *NetworkPolicyConfig) Reset() { *m = NetworkPolicyConfig{} }
  809. func (m *NetworkPolicyConfig) String() string { return proto.CompactTextString(m) }
  810. func (*NetworkPolicyConfig) ProtoMessage() {}
  811. func (*NetworkPolicyConfig) Descriptor() ([]byte, []int) {
  812. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{7}
  813. }
  814. func (m *NetworkPolicyConfig) XXX_Unmarshal(b []byte) error {
  815. return xxx_messageInfo_NetworkPolicyConfig.Unmarshal(m, b)
  816. }
  817. func (m *NetworkPolicyConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  818. return xxx_messageInfo_NetworkPolicyConfig.Marshal(b, m, deterministic)
  819. }
  820. func (dst *NetworkPolicyConfig) XXX_Merge(src proto.Message) {
  821. xxx_messageInfo_NetworkPolicyConfig.Merge(dst, src)
  822. }
  823. func (m *NetworkPolicyConfig) XXX_Size() int {
  824. return xxx_messageInfo_NetworkPolicyConfig.Size(m)
  825. }
  826. func (m *NetworkPolicyConfig) XXX_DiscardUnknown() {
  827. xxx_messageInfo_NetworkPolicyConfig.DiscardUnknown(m)
  828. }
  829. var xxx_messageInfo_NetworkPolicyConfig proto.InternalMessageInfo
  830. func (m *NetworkPolicyConfig) GetDisabled() bool {
  831. if m != nil {
  832. return m.Disabled
  833. }
  834. return false
  835. }
  836. // Configuration options for private clusters.
  837. type PrivateClusterConfig struct {
  838. // Whether nodes have internal IP addresses only. If enabled, all nodes are
  839. // given only RFC 1918 private addresses and communicate with the master via
  840. // private networking.
  841. EnablePrivateNodes bool `protobuf:"varint,1,opt,name=enable_private_nodes,json=enablePrivateNodes,proto3" json:"enable_private_nodes,omitempty"`
  842. // Whether the master's internal IP address is used as the cluster endpoint.
  843. EnablePrivateEndpoint bool `protobuf:"varint,2,opt,name=enable_private_endpoint,json=enablePrivateEndpoint,proto3" json:"enable_private_endpoint,omitempty"`
  844. // The IP range in CIDR notation to use for the hosted master network. This
  845. // range will be used for assigning internal IP addresses to the master or
  846. // set of masters, as well as the ILB VIP. This range must not overlap with
  847. // any other ranges in use within the cluster's network.
  848. MasterIpv4CidrBlock string `protobuf:"bytes,3,opt,name=master_ipv4_cidr_block,json=masterIpv4CidrBlock,proto3" json:"master_ipv4_cidr_block,omitempty"`
  849. // Output only. The internal IP address of this cluster's master endpoint.
  850. PrivateEndpoint string `protobuf:"bytes,4,opt,name=private_endpoint,json=privateEndpoint,proto3" json:"private_endpoint,omitempty"`
  851. // Output only. The external IP address of this cluster's master endpoint.
  852. PublicEndpoint string `protobuf:"bytes,5,opt,name=public_endpoint,json=publicEndpoint,proto3" json:"public_endpoint,omitempty"`
  853. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  854. XXX_unrecognized []byte `json:"-"`
  855. XXX_sizecache int32 `json:"-"`
  856. }
  857. func (m *PrivateClusterConfig) Reset() { *m = PrivateClusterConfig{} }
  858. func (m *PrivateClusterConfig) String() string { return proto.CompactTextString(m) }
  859. func (*PrivateClusterConfig) ProtoMessage() {}
  860. func (*PrivateClusterConfig) Descriptor() ([]byte, []int) {
  861. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{8}
  862. }
  863. func (m *PrivateClusterConfig) XXX_Unmarshal(b []byte) error {
  864. return xxx_messageInfo_PrivateClusterConfig.Unmarshal(m, b)
  865. }
  866. func (m *PrivateClusterConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  867. return xxx_messageInfo_PrivateClusterConfig.Marshal(b, m, deterministic)
  868. }
  869. func (dst *PrivateClusterConfig) XXX_Merge(src proto.Message) {
  870. xxx_messageInfo_PrivateClusterConfig.Merge(dst, src)
  871. }
  872. func (m *PrivateClusterConfig) XXX_Size() int {
  873. return xxx_messageInfo_PrivateClusterConfig.Size(m)
  874. }
  875. func (m *PrivateClusterConfig) XXX_DiscardUnknown() {
  876. xxx_messageInfo_PrivateClusterConfig.DiscardUnknown(m)
  877. }
  878. var xxx_messageInfo_PrivateClusterConfig proto.InternalMessageInfo
  879. func (m *PrivateClusterConfig) GetEnablePrivateNodes() bool {
  880. if m != nil {
  881. return m.EnablePrivateNodes
  882. }
  883. return false
  884. }
  885. func (m *PrivateClusterConfig) GetEnablePrivateEndpoint() bool {
  886. if m != nil {
  887. return m.EnablePrivateEndpoint
  888. }
  889. return false
  890. }
  891. func (m *PrivateClusterConfig) GetMasterIpv4CidrBlock() string {
  892. if m != nil {
  893. return m.MasterIpv4CidrBlock
  894. }
  895. return ""
  896. }
  897. func (m *PrivateClusterConfig) GetPrivateEndpoint() string {
  898. if m != nil {
  899. return m.PrivateEndpoint
  900. }
  901. return ""
  902. }
  903. func (m *PrivateClusterConfig) GetPublicEndpoint() string {
  904. if m != nil {
  905. return m.PublicEndpoint
  906. }
  907. return ""
  908. }
  909. // Configuration options for the master authorized networks feature. Enabled
  910. // master authorized networks will disallow all external traffic to access
  911. // Kubernetes master through HTTPS except traffic from the given CIDR blocks,
  912. // Google Compute Engine Public IPs and Google Prod IPs.
  913. type MasterAuthorizedNetworksConfig struct {
  914. // Whether or not master authorized networks is enabled.
  915. Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
  916. // cidr_blocks define up to 10 external networks that could access
  917. // Kubernetes master through HTTPS.
  918. CidrBlocks []*MasterAuthorizedNetworksConfig_CidrBlock `protobuf:"bytes,2,rep,name=cidr_blocks,json=cidrBlocks,proto3" json:"cidr_blocks,omitempty"`
  919. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  920. XXX_unrecognized []byte `json:"-"`
  921. XXX_sizecache int32 `json:"-"`
  922. }
  923. func (m *MasterAuthorizedNetworksConfig) Reset() { *m = MasterAuthorizedNetworksConfig{} }
  924. func (m *MasterAuthorizedNetworksConfig) String() string { return proto.CompactTextString(m) }
  925. func (*MasterAuthorizedNetworksConfig) ProtoMessage() {}
  926. func (*MasterAuthorizedNetworksConfig) Descriptor() ([]byte, []int) {
  927. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{9}
  928. }
  929. func (m *MasterAuthorizedNetworksConfig) XXX_Unmarshal(b []byte) error {
  930. return xxx_messageInfo_MasterAuthorizedNetworksConfig.Unmarshal(m, b)
  931. }
  932. func (m *MasterAuthorizedNetworksConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  933. return xxx_messageInfo_MasterAuthorizedNetworksConfig.Marshal(b, m, deterministic)
  934. }
  935. func (dst *MasterAuthorizedNetworksConfig) XXX_Merge(src proto.Message) {
  936. xxx_messageInfo_MasterAuthorizedNetworksConfig.Merge(dst, src)
  937. }
  938. func (m *MasterAuthorizedNetworksConfig) XXX_Size() int {
  939. return xxx_messageInfo_MasterAuthorizedNetworksConfig.Size(m)
  940. }
  941. func (m *MasterAuthorizedNetworksConfig) XXX_DiscardUnknown() {
  942. xxx_messageInfo_MasterAuthorizedNetworksConfig.DiscardUnknown(m)
  943. }
  944. var xxx_messageInfo_MasterAuthorizedNetworksConfig proto.InternalMessageInfo
  945. func (m *MasterAuthorizedNetworksConfig) GetEnabled() bool {
  946. if m != nil {
  947. return m.Enabled
  948. }
  949. return false
  950. }
  951. func (m *MasterAuthorizedNetworksConfig) GetCidrBlocks() []*MasterAuthorizedNetworksConfig_CidrBlock {
  952. if m != nil {
  953. return m.CidrBlocks
  954. }
  955. return nil
  956. }
  957. // CidrBlock contains an optional name and one CIDR block.
  958. type MasterAuthorizedNetworksConfig_CidrBlock struct {
  959. // display_name is an optional field for users to identify CIDR blocks.
  960. DisplayName string `protobuf:"bytes,1,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
  961. // cidr_block must be specified in CIDR notation.
  962. CidrBlock string `protobuf:"bytes,2,opt,name=cidr_block,json=cidrBlock,proto3" json:"cidr_block,omitempty"`
  963. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  964. XXX_unrecognized []byte `json:"-"`
  965. XXX_sizecache int32 `json:"-"`
  966. }
  967. func (m *MasterAuthorizedNetworksConfig_CidrBlock) Reset() {
  968. *m = MasterAuthorizedNetworksConfig_CidrBlock{}
  969. }
  970. func (m *MasterAuthorizedNetworksConfig_CidrBlock) String() string { return proto.CompactTextString(m) }
  971. func (*MasterAuthorizedNetworksConfig_CidrBlock) ProtoMessage() {}
  972. func (*MasterAuthorizedNetworksConfig_CidrBlock) Descriptor() ([]byte, []int) {
  973. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{9, 0}
  974. }
  975. func (m *MasterAuthorizedNetworksConfig_CidrBlock) XXX_Unmarshal(b []byte) error {
  976. return xxx_messageInfo_MasterAuthorizedNetworksConfig_CidrBlock.Unmarshal(m, b)
  977. }
  978. func (m *MasterAuthorizedNetworksConfig_CidrBlock) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  979. return xxx_messageInfo_MasterAuthorizedNetworksConfig_CidrBlock.Marshal(b, m, deterministic)
  980. }
  981. func (dst *MasterAuthorizedNetworksConfig_CidrBlock) XXX_Merge(src proto.Message) {
  982. xxx_messageInfo_MasterAuthorizedNetworksConfig_CidrBlock.Merge(dst, src)
  983. }
  984. func (m *MasterAuthorizedNetworksConfig_CidrBlock) XXX_Size() int {
  985. return xxx_messageInfo_MasterAuthorizedNetworksConfig_CidrBlock.Size(m)
  986. }
  987. func (m *MasterAuthorizedNetworksConfig_CidrBlock) XXX_DiscardUnknown() {
  988. xxx_messageInfo_MasterAuthorizedNetworksConfig_CidrBlock.DiscardUnknown(m)
  989. }
  990. var xxx_messageInfo_MasterAuthorizedNetworksConfig_CidrBlock proto.InternalMessageInfo
  991. func (m *MasterAuthorizedNetworksConfig_CidrBlock) GetDisplayName() string {
  992. if m != nil {
  993. return m.DisplayName
  994. }
  995. return ""
  996. }
  997. func (m *MasterAuthorizedNetworksConfig_CidrBlock) GetCidrBlock() string {
  998. if m != nil {
  999. return m.CidrBlock
  1000. }
  1001. return ""
  1002. }
  1003. // Configuration for the legacy Attribute Based Access Control authorization
  1004. // mode.
  1005. type LegacyAbac struct {
  1006. // Whether the ABAC authorizer is enabled for this cluster. When enabled,
  1007. // identities in the system, including service accounts, nodes, and
  1008. // controllers, will have statically granted permissions beyond those
  1009. // provided by the RBAC configuration or IAM.
  1010. Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
  1011. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1012. XXX_unrecognized []byte `json:"-"`
  1013. XXX_sizecache int32 `json:"-"`
  1014. }
  1015. func (m *LegacyAbac) Reset() { *m = LegacyAbac{} }
  1016. func (m *LegacyAbac) String() string { return proto.CompactTextString(m) }
  1017. func (*LegacyAbac) ProtoMessage() {}
  1018. func (*LegacyAbac) Descriptor() ([]byte, []int) {
  1019. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{10}
  1020. }
  1021. func (m *LegacyAbac) XXX_Unmarshal(b []byte) error {
  1022. return xxx_messageInfo_LegacyAbac.Unmarshal(m, b)
  1023. }
  1024. func (m *LegacyAbac) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1025. return xxx_messageInfo_LegacyAbac.Marshal(b, m, deterministic)
  1026. }
  1027. func (dst *LegacyAbac) XXX_Merge(src proto.Message) {
  1028. xxx_messageInfo_LegacyAbac.Merge(dst, src)
  1029. }
  1030. func (m *LegacyAbac) XXX_Size() int {
  1031. return xxx_messageInfo_LegacyAbac.Size(m)
  1032. }
  1033. func (m *LegacyAbac) XXX_DiscardUnknown() {
  1034. xxx_messageInfo_LegacyAbac.DiscardUnknown(m)
  1035. }
  1036. var xxx_messageInfo_LegacyAbac proto.InternalMessageInfo
  1037. func (m *LegacyAbac) GetEnabled() bool {
  1038. if m != nil {
  1039. return m.Enabled
  1040. }
  1041. return false
  1042. }
  1043. // Configuration options for the NetworkPolicy feature.
  1044. // https://kubernetes.io/docs/concepts/services-networking/networkpolicies/
  1045. type NetworkPolicy struct {
  1046. // The selected network policy provider.
  1047. Provider NetworkPolicy_Provider `protobuf:"varint,1,opt,name=provider,proto3,enum=google.container.v1.NetworkPolicy_Provider" json:"provider,omitempty"`
  1048. // Whether network policy is enabled on the cluster.
  1049. Enabled bool `protobuf:"varint,2,opt,name=enabled,proto3" json:"enabled,omitempty"`
  1050. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1051. XXX_unrecognized []byte `json:"-"`
  1052. XXX_sizecache int32 `json:"-"`
  1053. }
  1054. func (m *NetworkPolicy) Reset() { *m = NetworkPolicy{} }
  1055. func (m *NetworkPolicy) String() string { return proto.CompactTextString(m) }
  1056. func (*NetworkPolicy) ProtoMessage() {}
  1057. func (*NetworkPolicy) Descriptor() ([]byte, []int) {
  1058. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{11}
  1059. }
  1060. func (m *NetworkPolicy) XXX_Unmarshal(b []byte) error {
  1061. return xxx_messageInfo_NetworkPolicy.Unmarshal(m, b)
  1062. }
  1063. func (m *NetworkPolicy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1064. return xxx_messageInfo_NetworkPolicy.Marshal(b, m, deterministic)
  1065. }
  1066. func (dst *NetworkPolicy) XXX_Merge(src proto.Message) {
  1067. xxx_messageInfo_NetworkPolicy.Merge(dst, src)
  1068. }
  1069. func (m *NetworkPolicy) XXX_Size() int {
  1070. return xxx_messageInfo_NetworkPolicy.Size(m)
  1071. }
  1072. func (m *NetworkPolicy) XXX_DiscardUnknown() {
  1073. xxx_messageInfo_NetworkPolicy.DiscardUnknown(m)
  1074. }
  1075. var xxx_messageInfo_NetworkPolicy proto.InternalMessageInfo
  1076. func (m *NetworkPolicy) GetProvider() NetworkPolicy_Provider {
  1077. if m != nil {
  1078. return m.Provider
  1079. }
  1080. return NetworkPolicy_PROVIDER_UNSPECIFIED
  1081. }
  1082. func (m *NetworkPolicy) GetEnabled() bool {
  1083. if m != nil {
  1084. return m.Enabled
  1085. }
  1086. return false
  1087. }
  1088. // Configuration for controlling how IPs are allocated in the cluster.
  1089. type IPAllocationPolicy struct {
  1090. // Whether alias IPs will be used for pod IPs in the cluster.
  1091. UseIpAliases bool `protobuf:"varint,1,opt,name=use_ip_aliases,json=useIpAliases,proto3" json:"use_ip_aliases,omitempty"`
  1092. // Whether a new subnetwork will be created automatically for the cluster.
  1093. //
  1094. // This field is only applicable when `use_ip_aliases` is true.
  1095. CreateSubnetwork bool `protobuf:"varint,2,opt,name=create_subnetwork,json=createSubnetwork,proto3" json:"create_subnetwork,omitempty"`
  1096. // A custom subnetwork name to be used if `create_subnetwork` is true. If
  1097. // this field is empty, then an automatic name will be chosen for the new
  1098. // subnetwork.
  1099. SubnetworkName string `protobuf:"bytes,3,opt,name=subnetwork_name,json=subnetworkName,proto3" json:"subnetwork_name,omitempty"`
  1100. // This field is deprecated, use cluster_ipv4_cidr_block.
  1101. ClusterIpv4Cidr string `protobuf:"bytes,4,opt,name=cluster_ipv4_cidr,json=clusterIpv4Cidr,proto3" json:"cluster_ipv4_cidr,omitempty"` // Deprecated: Do not use.
  1102. // This field is deprecated, use node_ipv4_cidr_block.
  1103. NodeIpv4Cidr string `protobuf:"bytes,5,opt,name=node_ipv4_cidr,json=nodeIpv4Cidr,proto3" json:"node_ipv4_cidr,omitempty"` // Deprecated: Do not use.
  1104. // This field is deprecated, use services_ipv4_cidr_block.
  1105. ServicesIpv4Cidr string `protobuf:"bytes,6,opt,name=services_ipv4_cidr,json=servicesIpv4Cidr,proto3" json:"services_ipv4_cidr,omitempty"` // Deprecated: Do not use.
  1106. // The name of the secondary range to be used for the cluster CIDR
  1107. // block. The secondary range will be used for pod IP
  1108. // addresses. This must be an existing secondary range associated
  1109. // with the cluster subnetwork.
  1110. //
  1111. // This field is only applicable with use_ip_aliases is true and
  1112. // create_subnetwork is false.
  1113. ClusterSecondaryRangeName string `protobuf:"bytes,7,opt,name=cluster_secondary_range_name,json=clusterSecondaryRangeName,proto3" json:"cluster_secondary_range_name,omitempty"`
  1114. // The name of the secondary range to be used as for the services
  1115. // CIDR block. The secondary range will be used for service
  1116. // ClusterIPs. This must be an existing secondary range associated
  1117. // with the cluster subnetwork.
  1118. //
  1119. // This field is only applicable with use_ip_aliases is true and
  1120. // create_subnetwork is false.
  1121. ServicesSecondaryRangeName string `protobuf:"bytes,8,opt,name=services_secondary_range_name,json=servicesSecondaryRangeName,proto3" json:"services_secondary_range_name,omitempty"`
  1122. // The IP address range for the cluster pod IPs. If this field is set, then
  1123. // `cluster.cluster_ipv4_cidr` must be left blank.
  1124. //
  1125. // This field is only applicable when `use_ip_aliases` is true.
  1126. //
  1127. // Set to blank to have a range chosen with the default size.
  1128. //
  1129. // Set to /netmask (e.g. `/14`) to have a range chosen with a specific
  1130. // netmask.
  1131. //
  1132. // Set to a
  1133. // [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
  1134. // notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g.
  1135. // `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific range
  1136. // to use.
  1137. ClusterIpv4CidrBlock string `protobuf:"bytes,9,opt,name=cluster_ipv4_cidr_block,json=clusterIpv4CidrBlock,proto3" json:"cluster_ipv4_cidr_block,omitempty"`
  1138. // The IP address range of the instance IPs in this cluster.
  1139. //
  1140. // This is applicable only if `create_subnetwork` is true.
  1141. //
  1142. // Set to blank to have a range chosen with the default size.
  1143. //
  1144. // Set to /netmask (e.g. `/14`) to have a range chosen with a specific
  1145. // netmask.
  1146. //
  1147. // Set to a
  1148. // [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
  1149. // notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g.
  1150. // `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific range
  1151. // to use.
  1152. NodeIpv4CidrBlock string `protobuf:"bytes,10,opt,name=node_ipv4_cidr_block,json=nodeIpv4CidrBlock,proto3" json:"node_ipv4_cidr_block,omitempty"`
  1153. // The IP address range of the services IPs in this cluster. If blank, a range
  1154. // will be automatically chosen with the default size.
  1155. //
  1156. // This field is only applicable when `use_ip_aliases` is true.
  1157. //
  1158. // Set to blank to have a range chosen with the default size.
  1159. //
  1160. // Set to /netmask (e.g. `/14`) to have a range chosen with a specific
  1161. // netmask.
  1162. //
  1163. // Set to a
  1164. // [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
  1165. // notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g.
  1166. // `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific range
  1167. // to use.
  1168. ServicesIpv4CidrBlock string `protobuf:"bytes,11,opt,name=services_ipv4_cidr_block,json=servicesIpv4CidrBlock,proto3" json:"services_ipv4_cidr_block,omitempty"`
  1169. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1170. XXX_unrecognized []byte `json:"-"`
  1171. XXX_sizecache int32 `json:"-"`
  1172. }
  1173. func (m *IPAllocationPolicy) Reset() { *m = IPAllocationPolicy{} }
  1174. func (m *IPAllocationPolicy) String() string { return proto.CompactTextString(m) }
  1175. func (*IPAllocationPolicy) ProtoMessage() {}
  1176. func (*IPAllocationPolicy) Descriptor() ([]byte, []int) {
  1177. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{12}
  1178. }
  1179. func (m *IPAllocationPolicy) XXX_Unmarshal(b []byte) error {
  1180. return xxx_messageInfo_IPAllocationPolicy.Unmarshal(m, b)
  1181. }
  1182. func (m *IPAllocationPolicy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1183. return xxx_messageInfo_IPAllocationPolicy.Marshal(b, m, deterministic)
  1184. }
  1185. func (dst *IPAllocationPolicy) XXX_Merge(src proto.Message) {
  1186. xxx_messageInfo_IPAllocationPolicy.Merge(dst, src)
  1187. }
  1188. func (m *IPAllocationPolicy) XXX_Size() int {
  1189. return xxx_messageInfo_IPAllocationPolicy.Size(m)
  1190. }
  1191. func (m *IPAllocationPolicy) XXX_DiscardUnknown() {
  1192. xxx_messageInfo_IPAllocationPolicy.DiscardUnknown(m)
  1193. }
  1194. var xxx_messageInfo_IPAllocationPolicy proto.InternalMessageInfo
  1195. func (m *IPAllocationPolicy) GetUseIpAliases() bool {
  1196. if m != nil {
  1197. return m.UseIpAliases
  1198. }
  1199. return false
  1200. }
  1201. func (m *IPAllocationPolicy) GetCreateSubnetwork() bool {
  1202. if m != nil {
  1203. return m.CreateSubnetwork
  1204. }
  1205. return false
  1206. }
  1207. func (m *IPAllocationPolicy) GetSubnetworkName() string {
  1208. if m != nil {
  1209. return m.SubnetworkName
  1210. }
  1211. return ""
  1212. }
  1213. // Deprecated: Do not use.
  1214. func (m *IPAllocationPolicy) GetClusterIpv4Cidr() string {
  1215. if m != nil {
  1216. return m.ClusterIpv4Cidr
  1217. }
  1218. return ""
  1219. }
  1220. // Deprecated: Do not use.
  1221. func (m *IPAllocationPolicy) GetNodeIpv4Cidr() string {
  1222. if m != nil {
  1223. return m.NodeIpv4Cidr
  1224. }
  1225. return ""
  1226. }
  1227. // Deprecated: Do not use.
  1228. func (m *IPAllocationPolicy) GetServicesIpv4Cidr() string {
  1229. if m != nil {
  1230. return m.ServicesIpv4Cidr
  1231. }
  1232. return ""
  1233. }
  1234. func (m *IPAllocationPolicy) GetClusterSecondaryRangeName() string {
  1235. if m != nil {
  1236. return m.ClusterSecondaryRangeName
  1237. }
  1238. return ""
  1239. }
  1240. func (m *IPAllocationPolicy) GetServicesSecondaryRangeName() string {
  1241. if m != nil {
  1242. return m.ServicesSecondaryRangeName
  1243. }
  1244. return ""
  1245. }
  1246. func (m *IPAllocationPolicy) GetClusterIpv4CidrBlock() string {
  1247. if m != nil {
  1248. return m.ClusterIpv4CidrBlock
  1249. }
  1250. return ""
  1251. }
  1252. func (m *IPAllocationPolicy) GetNodeIpv4CidrBlock() string {
  1253. if m != nil {
  1254. return m.NodeIpv4CidrBlock
  1255. }
  1256. return ""
  1257. }
  1258. func (m *IPAllocationPolicy) GetServicesIpv4CidrBlock() string {
  1259. if m != nil {
  1260. return m.ServicesIpv4CidrBlock
  1261. }
  1262. return ""
  1263. }
  1264. // A Google Kubernetes Engine cluster.
  1265. type Cluster struct {
  1266. // The name of this cluster. The name must be unique within this project
  1267. // and zone, and can be up to 40 characters with the following restrictions:
  1268. //
  1269. // * Lowercase letters, numbers, and hyphens only.
  1270. // * Must start with a letter.
  1271. // * Must end with a number or a letter.
  1272. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  1273. // An optional description of this cluster.
  1274. Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
  1275. // The number of nodes to create in this cluster. You must ensure that your
  1276. // Compute Engine <a href="/compute/docs/resource-quotas">resource quota</a>
  1277. // is sufficient for this number of instances. You must also have available
  1278. // firewall and routes quota.
  1279. // For requests, this field should only be used in lieu of a
  1280. // "node_pool" object, since this configuration (along with the
  1281. // "node_config") will be used to create a "NodePool" object with an
  1282. // auto-generated name. Do not use this and a node_pool at the same time.
  1283. InitialNodeCount int32 `protobuf:"varint,3,opt,name=initial_node_count,json=initialNodeCount,proto3" json:"initial_node_count,omitempty"`
  1284. // Parameters used in creating the cluster's nodes.
  1285. // See `nodeConfig` for the description of its properties.
  1286. // For requests, this field should only be used in lieu of a
  1287. // "node_pool" object, since this configuration (along with the
  1288. // "initial_node_count") will be used to create a "NodePool" object with an
  1289. // auto-generated name. Do not use this and a node_pool at the same time.
  1290. // For responses, this field will be populated with the node configuration of
  1291. // the first node pool.
  1292. //
  1293. // If unspecified, the defaults are used.
  1294. NodeConfig *NodeConfig `protobuf:"bytes,4,opt,name=node_config,json=nodeConfig,proto3" json:"node_config,omitempty"`
  1295. // The authentication information for accessing the master endpoint.
  1296. MasterAuth *MasterAuth `protobuf:"bytes,5,opt,name=master_auth,json=masterAuth,proto3" json:"master_auth,omitempty"`
  1297. // The logging service the cluster should use to write logs.
  1298. // Currently available options:
  1299. //
  1300. // * `logging.googleapis.com` - the Google Cloud Logging service.
  1301. // * `none` - no logs will be exported from the cluster.
  1302. // * if left as an empty string,`logging.googleapis.com` will be used.
  1303. LoggingService string `protobuf:"bytes,6,opt,name=logging_service,json=loggingService,proto3" json:"logging_service,omitempty"`
  1304. // The monitoring service the cluster should use to write metrics.
  1305. // Currently available options:
  1306. //
  1307. // * `monitoring.googleapis.com` - the Google Cloud Monitoring service.
  1308. // * `none` - no metrics will be exported from the cluster.
  1309. // * if left as an empty string, `monitoring.googleapis.com` will be used.
  1310. MonitoringService string `protobuf:"bytes,7,opt,name=monitoring_service,json=monitoringService,proto3" json:"monitoring_service,omitempty"`
  1311. // The name of the Google Compute Engine
  1312. // [network](/compute/docs/networks-and-firewalls#networks) to which the
  1313. // cluster is connected. If left unspecified, the `default` network
  1314. // will be used.
  1315. Network string `protobuf:"bytes,8,opt,name=network,proto3" json:"network,omitempty"`
  1316. // The IP address range of the container pods in this cluster, in
  1317. // [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
  1318. // notation (e.g. `10.96.0.0/14`). Leave blank to have
  1319. // one automatically chosen or specify a `/14` block in `10.0.0.0/8`.
  1320. ClusterIpv4Cidr string `protobuf:"bytes,9,opt,name=cluster_ipv4_cidr,json=clusterIpv4Cidr,proto3" json:"cluster_ipv4_cidr,omitempty"`
  1321. // Configurations for the various addons available to run in the cluster.
  1322. AddonsConfig *AddonsConfig `protobuf:"bytes,10,opt,name=addons_config,json=addonsConfig,proto3" json:"addons_config,omitempty"`
  1323. // The name of the Google Compute Engine
  1324. // [subnetwork](/compute/docs/subnetworks) to which the
  1325. // cluster is connected.
  1326. Subnetwork string `protobuf:"bytes,11,opt,name=subnetwork,proto3" json:"subnetwork,omitempty"`
  1327. // The node pools associated with this cluster.
  1328. // This field should not be set if "node_config" or "initial_node_count" are
  1329. // specified.
  1330. NodePools []*NodePool `protobuf:"bytes,12,rep,name=node_pools,json=nodePools,proto3" json:"node_pools,omitempty"`
  1331. // The list of Google Compute Engine
  1332. // [locations](/compute/docs/zones#available) in which the cluster's nodes
  1333. // should be located.
  1334. Locations []string `protobuf:"bytes,13,rep,name=locations,proto3" json:"locations,omitempty"`
  1335. // Kubernetes alpha features are enabled on this cluster. This includes alpha
  1336. // API groups (e.g. v1alpha1) and features that may not be production ready in
  1337. // the kubernetes version of the master and nodes.
  1338. // The cluster has no SLA for uptime and master/node upgrades are disabled.
  1339. // Alpha enabled clusters are automatically deleted thirty days after
  1340. // creation.
  1341. EnableKubernetesAlpha bool `protobuf:"varint,14,opt,name=enable_kubernetes_alpha,json=enableKubernetesAlpha,proto3" json:"enable_kubernetes_alpha,omitempty"`
  1342. // The resource labels for the cluster to use to annotate any related
  1343. // Google Compute Engine resources.
  1344. ResourceLabels map[string]string `protobuf:"bytes,15,rep,name=resource_labels,json=resourceLabels,proto3" json:"resource_labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  1345. // The fingerprint of the set of labels for this cluster.
  1346. LabelFingerprint string `protobuf:"bytes,16,opt,name=label_fingerprint,json=labelFingerprint,proto3" json:"label_fingerprint,omitempty"`
  1347. // Configuration for the legacy ABAC authorization mode.
  1348. LegacyAbac *LegacyAbac `protobuf:"bytes,18,opt,name=legacy_abac,json=legacyAbac,proto3" json:"legacy_abac,omitempty"`
  1349. // Configuration options for the NetworkPolicy feature.
  1350. NetworkPolicy *NetworkPolicy `protobuf:"bytes,19,opt,name=network_policy,json=networkPolicy,proto3" json:"network_policy,omitempty"`
  1351. // Configuration for cluster IP allocation.
  1352. IpAllocationPolicy *IPAllocationPolicy `protobuf:"bytes,20,opt,name=ip_allocation_policy,json=ipAllocationPolicy,proto3" json:"ip_allocation_policy,omitempty"`
  1353. // The configuration options for master authorized networks feature.
  1354. MasterAuthorizedNetworksConfig *MasterAuthorizedNetworksConfig `protobuf:"bytes,22,opt,name=master_authorized_networks_config,json=masterAuthorizedNetworksConfig,proto3" json:"master_authorized_networks_config,omitempty"`
  1355. // Configure the maintenance policy for this cluster.
  1356. MaintenancePolicy *MaintenancePolicy `protobuf:"bytes,23,opt,name=maintenance_policy,json=maintenancePolicy,proto3" json:"maintenance_policy,omitempty"`
  1357. // Configuration for cluster networking.
  1358. NetworkConfig *NetworkConfig `protobuf:"bytes,27,opt,name=network_config,json=networkConfig,proto3" json:"network_config,omitempty"`
  1359. // Configuration for private cluster.
  1360. PrivateClusterConfig *PrivateClusterConfig `protobuf:"bytes,37,opt,name=private_cluster_config,json=privateClusterConfig,proto3" json:"private_cluster_config,omitempty"`
  1361. // [Output only] Server-defined URL for the resource.
  1362. SelfLink string `protobuf:"bytes,100,opt,name=self_link,json=selfLink,proto3" json:"self_link,omitempty"`
  1363. // [Output only] The name of the Google Compute Engine
  1364. // [zone](/compute/docs/zones#available) in which the cluster
  1365. // resides.
  1366. // This field is deprecated, use location instead.
  1367. Zone string `protobuf:"bytes,101,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  1368. // [Output only] The IP address of this cluster's master endpoint.
  1369. // The endpoint can be accessed from the internet at
  1370. // `https://username:password@endpoint/`.
  1371. //
  1372. // See the `masterAuth` property of this resource for username and
  1373. // password information.
  1374. Endpoint string `protobuf:"bytes,102,opt,name=endpoint,proto3" json:"endpoint,omitempty"`
  1375. // The initial Kubernetes version for this cluster. Valid versions are those
  1376. // found in validMasterVersions returned by getServerConfig. The version can
  1377. // be upgraded over time; such upgrades are reflected in
  1378. // currentMasterVersion and currentNodeVersion.
  1379. //
  1380. // Users may specify either explicit versions offered by
  1381. // Kubernetes Engine or version aliases, which have the following behavior:
  1382. //
  1383. // - "latest": picks the highest valid Kubernetes version
  1384. // - "1.X": picks the highest valid patch+gke.N patch in the 1.X version
  1385. // - "1.X.Y": picks the highest valid gke.N patch in the 1.X.Y version
  1386. // - "1.X.Y-gke.N": picks an explicit Kubernetes version
  1387. // - "","-": picks the default Kubernetes version
  1388. InitialClusterVersion string `protobuf:"bytes,103,opt,name=initial_cluster_version,json=initialClusterVersion,proto3" json:"initial_cluster_version,omitempty"`
  1389. // [Output only] The current software version of the master endpoint.
  1390. CurrentMasterVersion string `protobuf:"bytes,104,opt,name=current_master_version,json=currentMasterVersion,proto3" json:"current_master_version,omitempty"`
  1391. // [Output only] Deprecated, use
  1392. // [NodePool.version](/kubernetes-engine/docs/reference/rest/v1/projects.zones.clusters.nodePool)
  1393. // instead. The current version of the node software components. If they are
  1394. // currently at multiple versions because they're in the process of being
  1395. // upgraded, this reflects the minimum version of all nodes.
  1396. CurrentNodeVersion string `protobuf:"bytes,105,opt,name=current_node_version,json=currentNodeVersion,proto3" json:"current_node_version,omitempty"` // Deprecated: Do not use.
  1397. // [Output only] The time the cluster was created, in
  1398. // [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format.
  1399. CreateTime string `protobuf:"bytes,106,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
  1400. // [Output only] The current status of this cluster.
  1401. Status Cluster_Status `protobuf:"varint,107,opt,name=status,proto3,enum=google.container.v1.Cluster_Status" json:"status,omitempty"`
  1402. // [Output only] Additional information about the current status of this
  1403. // cluster, if available.
  1404. StatusMessage string `protobuf:"bytes,108,opt,name=status_message,json=statusMessage,proto3" json:"status_message,omitempty"`
  1405. // [Output only] The size of the address space on each node for hosting
  1406. // containers. This is provisioned from within the `container_ipv4_cidr`
  1407. // range.
  1408. NodeIpv4CidrSize int32 `protobuf:"varint,109,opt,name=node_ipv4_cidr_size,json=nodeIpv4CidrSize,proto3" json:"node_ipv4_cidr_size,omitempty"`
  1409. // [Output only] The IP address range of the Kubernetes services in
  1410. // this cluster, in
  1411. // [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
  1412. // notation (e.g. `1.2.3.4/29`). Service addresses are
  1413. // typically put in the last `/16` from the container CIDR.
  1414. ServicesIpv4Cidr string `protobuf:"bytes,110,opt,name=services_ipv4_cidr,json=servicesIpv4Cidr,proto3" json:"services_ipv4_cidr,omitempty"`
  1415. // Deprecated. Use node_pools.instance_group_urls.
  1416. InstanceGroupUrls []string `protobuf:"bytes,111,rep,name=instance_group_urls,json=instanceGroupUrls,proto3" json:"instance_group_urls,omitempty"` // Deprecated: Do not use.
  1417. // [Output only] The number of nodes currently in the cluster.
  1418. CurrentNodeCount int32 `protobuf:"varint,112,opt,name=current_node_count,json=currentNodeCount,proto3" json:"current_node_count,omitempty"`
  1419. // [Output only] The time the cluster will be automatically
  1420. // deleted in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format.
  1421. ExpireTime string `protobuf:"bytes,113,opt,name=expire_time,json=expireTime,proto3" json:"expire_time,omitempty"`
  1422. // [Output only] The name of the Google Compute Engine
  1423. // [zone](/compute/docs/regions-zones/regions-zones#available) or
  1424. // [region](/compute/docs/regions-zones/regions-zones#available) in which
  1425. // the cluster resides.
  1426. Location string `protobuf:"bytes,114,opt,name=location,proto3" json:"location,omitempty"`
  1427. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1428. XXX_unrecognized []byte `json:"-"`
  1429. XXX_sizecache int32 `json:"-"`
  1430. }
  1431. func (m *Cluster) Reset() { *m = Cluster{} }
  1432. func (m *Cluster) String() string { return proto.CompactTextString(m) }
  1433. func (*Cluster) ProtoMessage() {}
  1434. func (*Cluster) Descriptor() ([]byte, []int) {
  1435. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{13}
  1436. }
  1437. func (m *Cluster) XXX_Unmarshal(b []byte) error {
  1438. return xxx_messageInfo_Cluster.Unmarshal(m, b)
  1439. }
  1440. func (m *Cluster) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1441. return xxx_messageInfo_Cluster.Marshal(b, m, deterministic)
  1442. }
  1443. func (dst *Cluster) XXX_Merge(src proto.Message) {
  1444. xxx_messageInfo_Cluster.Merge(dst, src)
  1445. }
  1446. func (m *Cluster) XXX_Size() int {
  1447. return xxx_messageInfo_Cluster.Size(m)
  1448. }
  1449. func (m *Cluster) XXX_DiscardUnknown() {
  1450. xxx_messageInfo_Cluster.DiscardUnknown(m)
  1451. }
  1452. var xxx_messageInfo_Cluster proto.InternalMessageInfo
  1453. func (m *Cluster) GetName() string {
  1454. if m != nil {
  1455. return m.Name
  1456. }
  1457. return ""
  1458. }
  1459. func (m *Cluster) GetDescription() string {
  1460. if m != nil {
  1461. return m.Description
  1462. }
  1463. return ""
  1464. }
  1465. func (m *Cluster) GetInitialNodeCount() int32 {
  1466. if m != nil {
  1467. return m.InitialNodeCount
  1468. }
  1469. return 0
  1470. }
  1471. func (m *Cluster) GetNodeConfig() *NodeConfig {
  1472. if m != nil {
  1473. return m.NodeConfig
  1474. }
  1475. return nil
  1476. }
  1477. func (m *Cluster) GetMasterAuth() *MasterAuth {
  1478. if m != nil {
  1479. return m.MasterAuth
  1480. }
  1481. return nil
  1482. }
  1483. func (m *Cluster) GetLoggingService() string {
  1484. if m != nil {
  1485. return m.LoggingService
  1486. }
  1487. return ""
  1488. }
  1489. func (m *Cluster) GetMonitoringService() string {
  1490. if m != nil {
  1491. return m.MonitoringService
  1492. }
  1493. return ""
  1494. }
  1495. func (m *Cluster) GetNetwork() string {
  1496. if m != nil {
  1497. return m.Network
  1498. }
  1499. return ""
  1500. }
  1501. func (m *Cluster) GetClusterIpv4Cidr() string {
  1502. if m != nil {
  1503. return m.ClusterIpv4Cidr
  1504. }
  1505. return ""
  1506. }
  1507. func (m *Cluster) GetAddonsConfig() *AddonsConfig {
  1508. if m != nil {
  1509. return m.AddonsConfig
  1510. }
  1511. return nil
  1512. }
  1513. func (m *Cluster) GetSubnetwork() string {
  1514. if m != nil {
  1515. return m.Subnetwork
  1516. }
  1517. return ""
  1518. }
  1519. func (m *Cluster) GetNodePools() []*NodePool {
  1520. if m != nil {
  1521. return m.NodePools
  1522. }
  1523. return nil
  1524. }
  1525. func (m *Cluster) GetLocations() []string {
  1526. if m != nil {
  1527. return m.Locations
  1528. }
  1529. return nil
  1530. }
  1531. func (m *Cluster) GetEnableKubernetesAlpha() bool {
  1532. if m != nil {
  1533. return m.EnableKubernetesAlpha
  1534. }
  1535. return false
  1536. }
  1537. func (m *Cluster) GetResourceLabels() map[string]string {
  1538. if m != nil {
  1539. return m.ResourceLabels
  1540. }
  1541. return nil
  1542. }
  1543. func (m *Cluster) GetLabelFingerprint() string {
  1544. if m != nil {
  1545. return m.LabelFingerprint
  1546. }
  1547. return ""
  1548. }
  1549. func (m *Cluster) GetLegacyAbac() *LegacyAbac {
  1550. if m != nil {
  1551. return m.LegacyAbac
  1552. }
  1553. return nil
  1554. }
  1555. func (m *Cluster) GetNetworkPolicy() *NetworkPolicy {
  1556. if m != nil {
  1557. return m.NetworkPolicy
  1558. }
  1559. return nil
  1560. }
  1561. func (m *Cluster) GetIpAllocationPolicy() *IPAllocationPolicy {
  1562. if m != nil {
  1563. return m.IpAllocationPolicy
  1564. }
  1565. return nil
  1566. }
  1567. func (m *Cluster) GetMasterAuthorizedNetworksConfig() *MasterAuthorizedNetworksConfig {
  1568. if m != nil {
  1569. return m.MasterAuthorizedNetworksConfig
  1570. }
  1571. return nil
  1572. }
  1573. func (m *Cluster) GetMaintenancePolicy() *MaintenancePolicy {
  1574. if m != nil {
  1575. return m.MaintenancePolicy
  1576. }
  1577. return nil
  1578. }
  1579. func (m *Cluster) GetNetworkConfig() *NetworkConfig {
  1580. if m != nil {
  1581. return m.NetworkConfig
  1582. }
  1583. return nil
  1584. }
  1585. func (m *Cluster) GetPrivateClusterConfig() *PrivateClusterConfig {
  1586. if m != nil {
  1587. return m.PrivateClusterConfig
  1588. }
  1589. return nil
  1590. }
  1591. func (m *Cluster) GetSelfLink() string {
  1592. if m != nil {
  1593. return m.SelfLink
  1594. }
  1595. return ""
  1596. }
  1597. // Deprecated: Do not use.
  1598. func (m *Cluster) GetZone() string {
  1599. if m != nil {
  1600. return m.Zone
  1601. }
  1602. return ""
  1603. }
  1604. func (m *Cluster) GetEndpoint() string {
  1605. if m != nil {
  1606. return m.Endpoint
  1607. }
  1608. return ""
  1609. }
  1610. func (m *Cluster) GetInitialClusterVersion() string {
  1611. if m != nil {
  1612. return m.InitialClusterVersion
  1613. }
  1614. return ""
  1615. }
  1616. func (m *Cluster) GetCurrentMasterVersion() string {
  1617. if m != nil {
  1618. return m.CurrentMasterVersion
  1619. }
  1620. return ""
  1621. }
  1622. // Deprecated: Do not use.
  1623. func (m *Cluster) GetCurrentNodeVersion() string {
  1624. if m != nil {
  1625. return m.CurrentNodeVersion
  1626. }
  1627. return ""
  1628. }
  1629. func (m *Cluster) GetCreateTime() string {
  1630. if m != nil {
  1631. return m.CreateTime
  1632. }
  1633. return ""
  1634. }
  1635. func (m *Cluster) GetStatus() Cluster_Status {
  1636. if m != nil {
  1637. return m.Status
  1638. }
  1639. return Cluster_STATUS_UNSPECIFIED
  1640. }
  1641. func (m *Cluster) GetStatusMessage() string {
  1642. if m != nil {
  1643. return m.StatusMessage
  1644. }
  1645. return ""
  1646. }
  1647. func (m *Cluster) GetNodeIpv4CidrSize() int32 {
  1648. if m != nil {
  1649. return m.NodeIpv4CidrSize
  1650. }
  1651. return 0
  1652. }
  1653. func (m *Cluster) GetServicesIpv4Cidr() string {
  1654. if m != nil {
  1655. return m.ServicesIpv4Cidr
  1656. }
  1657. return ""
  1658. }
  1659. // Deprecated: Do not use.
  1660. func (m *Cluster) GetInstanceGroupUrls() []string {
  1661. if m != nil {
  1662. return m.InstanceGroupUrls
  1663. }
  1664. return nil
  1665. }
  1666. func (m *Cluster) GetCurrentNodeCount() int32 {
  1667. if m != nil {
  1668. return m.CurrentNodeCount
  1669. }
  1670. return 0
  1671. }
  1672. func (m *Cluster) GetExpireTime() string {
  1673. if m != nil {
  1674. return m.ExpireTime
  1675. }
  1676. return ""
  1677. }
  1678. func (m *Cluster) GetLocation() string {
  1679. if m != nil {
  1680. return m.Location
  1681. }
  1682. return ""
  1683. }
  1684. // ClusterUpdate describes an update to the cluster. Exactly one update can
  1685. // be applied to a cluster with each request, so at most one field can be
  1686. // provided.
  1687. type ClusterUpdate struct {
  1688. // The Kubernetes version to change the nodes to (typically an
  1689. // upgrade).
  1690. //
  1691. // Users may specify either explicit versions offered by
  1692. // Kubernetes Engine or version aliases, which have the following behavior:
  1693. //
  1694. // - "latest": picks the highest valid Kubernetes version
  1695. // - "1.X": picks the highest valid patch+gke.N patch in the 1.X version
  1696. // - "1.X.Y": picks the highest valid gke.N patch in the 1.X.Y version
  1697. // - "1.X.Y-gke.N": picks an explicit Kubernetes version
  1698. // - "-": picks the Kubernetes master version
  1699. DesiredNodeVersion string `protobuf:"bytes,4,opt,name=desired_node_version,json=desiredNodeVersion,proto3" json:"desired_node_version,omitempty"`
  1700. // The monitoring service the cluster should use to write metrics.
  1701. // Currently available options:
  1702. //
  1703. // * "monitoring.googleapis.com" - the Google Cloud Monitoring service
  1704. // * "none" - no metrics will be exported from the cluster
  1705. DesiredMonitoringService string `protobuf:"bytes,5,opt,name=desired_monitoring_service,json=desiredMonitoringService,proto3" json:"desired_monitoring_service,omitempty"`
  1706. // Configurations for the various addons available to run in the cluster.
  1707. DesiredAddonsConfig *AddonsConfig `protobuf:"bytes,6,opt,name=desired_addons_config,json=desiredAddonsConfig,proto3" json:"desired_addons_config,omitempty"`
  1708. // The node pool to be upgraded. This field is mandatory if
  1709. // "desired_node_version", "desired_image_family" or
  1710. // "desired_node_pool_autoscaling" is specified and there is more than one
  1711. // node pool on the cluster.
  1712. DesiredNodePoolId string `protobuf:"bytes,7,opt,name=desired_node_pool_id,json=desiredNodePoolId,proto3" json:"desired_node_pool_id,omitempty"`
  1713. // The desired image type for the node pool.
  1714. // NOTE: Set the "desired_node_pool" field as well.
  1715. DesiredImageType string `protobuf:"bytes,8,opt,name=desired_image_type,json=desiredImageType,proto3" json:"desired_image_type,omitempty"`
  1716. // Autoscaler configuration for the node pool specified in
  1717. // desired_node_pool_id. If there is only one pool in the
  1718. // cluster and desired_node_pool_id is not provided then
  1719. // the change applies to that single node pool.
  1720. DesiredNodePoolAutoscaling *NodePoolAutoscaling `protobuf:"bytes,9,opt,name=desired_node_pool_autoscaling,json=desiredNodePoolAutoscaling,proto3" json:"desired_node_pool_autoscaling,omitempty"`
  1721. // The desired list of Google Compute Engine
  1722. // [locations](/compute/docs/zones#available) in which the cluster's nodes
  1723. // should be located. Changing the locations a cluster is in will result
  1724. // in nodes being either created or removed from the cluster, depending on
  1725. // whether locations are being added or removed.
  1726. //
  1727. // This list must always include the cluster's primary zone.
  1728. DesiredLocations []string `protobuf:"bytes,10,rep,name=desired_locations,json=desiredLocations,proto3" json:"desired_locations,omitempty"`
  1729. // The desired configuration options for master authorized networks feature.
  1730. DesiredMasterAuthorizedNetworksConfig *MasterAuthorizedNetworksConfig `protobuf:"bytes,12,opt,name=desired_master_authorized_networks_config,json=desiredMasterAuthorizedNetworksConfig,proto3" json:"desired_master_authorized_networks_config,omitempty"`
  1731. // The Kubernetes version to change the master to.
  1732. //
  1733. // Users may specify either explicit versions offered by
  1734. // Kubernetes Engine or version aliases, which have the following behavior:
  1735. //
  1736. // - "latest": picks the highest valid Kubernetes version
  1737. // - "1.X": picks the highest valid patch+gke.N patch in the 1.X version
  1738. // - "1.X.Y": picks the highest valid gke.N patch in the 1.X.Y version
  1739. // - "1.X.Y-gke.N": picks an explicit Kubernetes version
  1740. // - "-": picks the default Kubernetes version
  1741. DesiredMasterVersion string `protobuf:"bytes,100,opt,name=desired_master_version,json=desiredMasterVersion,proto3" json:"desired_master_version,omitempty"`
  1742. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1743. XXX_unrecognized []byte `json:"-"`
  1744. XXX_sizecache int32 `json:"-"`
  1745. }
  1746. func (m *ClusterUpdate) Reset() { *m = ClusterUpdate{} }
  1747. func (m *ClusterUpdate) String() string { return proto.CompactTextString(m) }
  1748. func (*ClusterUpdate) ProtoMessage() {}
  1749. func (*ClusterUpdate) Descriptor() ([]byte, []int) {
  1750. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{14}
  1751. }
  1752. func (m *ClusterUpdate) XXX_Unmarshal(b []byte) error {
  1753. return xxx_messageInfo_ClusterUpdate.Unmarshal(m, b)
  1754. }
  1755. func (m *ClusterUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1756. return xxx_messageInfo_ClusterUpdate.Marshal(b, m, deterministic)
  1757. }
  1758. func (dst *ClusterUpdate) XXX_Merge(src proto.Message) {
  1759. xxx_messageInfo_ClusterUpdate.Merge(dst, src)
  1760. }
  1761. func (m *ClusterUpdate) XXX_Size() int {
  1762. return xxx_messageInfo_ClusterUpdate.Size(m)
  1763. }
  1764. func (m *ClusterUpdate) XXX_DiscardUnknown() {
  1765. xxx_messageInfo_ClusterUpdate.DiscardUnknown(m)
  1766. }
  1767. var xxx_messageInfo_ClusterUpdate proto.InternalMessageInfo
  1768. func (m *ClusterUpdate) GetDesiredNodeVersion() string {
  1769. if m != nil {
  1770. return m.DesiredNodeVersion
  1771. }
  1772. return ""
  1773. }
  1774. func (m *ClusterUpdate) GetDesiredMonitoringService() string {
  1775. if m != nil {
  1776. return m.DesiredMonitoringService
  1777. }
  1778. return ""
  1779. }
  1780. func (m *ClusterUpdate) GetDesiredAddonsConfig() *AddonsConfig {
  1781. if m != nil {
  1782. return m.DesiredAddonsConfig
  1783. }
  1784. return nil
  1785. }
  1786. func (m *ClusterUpdate) GetDesiredNodePoolId() string {
  1787. if m != nil {
  1788. return m.DesiredNodePoolId
  1789. }
  1790. return ""
  1791. }
  1792. func (m *ClusterUpdate) GetDesiredImageType() string {
  1793. if m != nil {
  1794. return m.DesiredImageType
  1795. }
  1796. return ""
  1797. }
  1798. func (m *ClusterUpdate) GetDesiredNodePoolAutoscaling() *NodePoolAutoscaling {
  1799. if m != nil {
  1800. return m.DesiredNodePoolAutoscaling
  1801. }
  1802. return nil
  1803. }
  1804. func (m *ClusterUpdate) GetDesiredLocations() []string {
  1805. if m != nil {
  1806. return m.DesiredLocations
  1807. }
  1808. return nil
  1809. }
  1810. func (m *ClusterUpdate) GetDesiredMasterAuthorizedNetworksConfig() *MasterAuthorizedNetworksConfig {
  1811. if m != nil {
  1812. return m.DesiredMasterAuthorizedNetworksConfig
  1813. }
  1814. return nil
  1815. }
  1816. func (m *ClusterUpdate) GetDesiredMasterVersion() string {
  1817. if m != nil {
  1818. return m.DesiredMasterVersion
  1819. }
  1820. return ""
  1821. }
  1822. // This operation resource represents operations that may have happened or are
  1823. // happening on the cluster. All fields are output only.
  1824. type Operation struct {
  1825. // The server-assigned ID for the operation.
  1826. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  1827. // The name of the Google Compute Engine
  1828. // [zone](/compute/docs/zones#available) in which the operation
  1829. // is taking place.
  1830. // This field is deprecated, use location instead.
  1831. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  1832. // The operation type.
  1833. OperationType Operation_Type `protobuf:"varint,3,opt,name=operation_type,json=operationType,proto3,enum=google.container.v1.Operation_Type" json:"operation_type,omitempty"`
  1834. // The current status of the operation.
  1835. Status Operation_Status `protobuf:"varint,4,opt,name=status,proto3,enum=google.container.v1.Operation_Status" json:"status,omitempty"`
  1836. // Detailed operation progress, if available.
  1837. Detail string `protobuf:"bytes,8,opt,name=detail,proto3" json:"detail,omitempty"`
  1838. // If an error has occurred, a textual description of the error.
  1839. StatusMessage string `protobuf:"bytes,5,opt,name=status_message,json=statusMessage,proto3" json:"status_message,omitempty"`
  1840. // Server-defined URL for the resource.
  1841. SelfLink string `protobuf:"bytes,6,opt,name=self_link,json=selfLink,proto3" json:"self_link,omitempty"`
  1842. // Server-defined URL for the target of the operation.
  1843. TargetLink string `protobuf:"bytes,7,opt,name=target_link,json=targetLink,proto3" json:"target_link,omitempty"`
  1844. // [Output only] The name of the Google Compute Engine
  1845. // [zone](/compute/docs/regions-zones/regions-zones#available) or
  1846. // [region](/compute/docs/regions-zones/regions-zones#available) in which
  1847. // the cluster resides.
  1848. Location string `protobuf:"bytes,9,opt,name=location,proto3" json:"location,omitempty"`
  1849. // [Output only] The time the operation started, in
  1850. // [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format.
  1851. StartTime string `protobuf:"bytes,10,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
  1852. // [Output only] The time the operation completed, in
  1853. // [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format.
  1854. EndTime string `protobuf:"bytes,11,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
  1855. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1856. XXX_unrecognized []byte `json:"-"`
  1857. XXX_sizecache int32 `json:"-"`
  1858. }
  1859. func (m *Operation) Reset() { *m = Operation{} }
  1860. func (m *Operation) String() string { return proto.CompactTextString(m) }
  1861. func (*Operation) ProtoMessage() {}
  1862. func (*Operation) Descriptor() ([]byte, []int) {
  1863. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{15}
  1864. }
  1865. func (m *Operation) XXX_Unmarshal(b []byte) error {
  1866. return xxx_messageInfo_Operation.Unmarshal(m, b)
  1867. }
  1868. func (m *Operation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1869. return xxx_messageInfo_Operation.Marshal(b, m, deterministic)
  1870. }
  1871. func (dst *Operation) XXX_Merge(src proto.Message) {
  1872. xxx_messageInfo_Operation.Merge(dst, src)
  1873. }
  1874. func (m *Operation) XXX_Size() int {
  1875. return xxx_messageInfo_Operation.Size(m)
  1876. }
  1877. func (m *Operation) XXX_DiscardUnknown() {
  1878. xxx_messageInfo_Operation.DiscardUnknown(m)
  1879. }
  1880. var xxx_messageInfo_Operation proto.InternalMessageInfo
  1881. func (m *Operation) GetName() string {
  1882. if m != nil {
  1883. return m.Name
  1884. }
  1885. return ""
  1886. }
  1887. // Deprecated: Do not use.
  1888. func (m *Operation) GetZone() string {
  1889. if m != nil {
  1890. return m.Zone
  1891. }
  1892. return ""
  1893. }
  1894. func (m *Operation) GetOperationType() Operation_Type {
  1895. if m != nil {
  1896. return m.OperationType
  1897. }
  1898. return Operation_TYPE_UNSPECIFIED
  1899. }
  1900. func (m *Operation) GetStatus() Operation_Status {
  1901. if m != nil {
  1902. return m.Status
  1903. }
  1904. return Operation_STATUS_UNSPECIFIED
  1905. }
  1906. func (m *Operation) GetDetail() string {
  1907. if m != nil {
  1908. return m.Detail
  1909. }
  1910. return ""
  1911. }
  1912. func (m *Operation) GetStatusMessage() string {
  1913. if m != nil {
  1914. return m.StatusMessage
  1915. }
  1916. return ""
  1917. }
  1918. func (m *Operation) GetSelfLink() string {
  1919. if m != nil {
  1920. return m.SelfLink
  1921. }
  1922. return ""
  1923. }
  1924. func (m *Operation) GetTargetLink() string {
  1925. if m != nil {
  1926. return m.TargetLink
  1927. }
  1928. return ""
  1929. }
  1930. func (m *Operation) GetLocation() string {
  1931. if m != nil {
  1932. return m.Location
  1933. }
  1934. return ""
  1935. }
  1936. func (m *Operation) GetStartTime() string {
  1937. if m != nil {
  1938. return m.StartTime
  1939. }
  1940. return ""
  1941. }
  1942. func (m *Operation) GetEndTime() string {
  1943. if m != nil {
  1944. return m.EndTime
  1945. }
  1946. return ""
  1947. }
  1948. // CreateClusterRequest creates a cluster.
  1949. type CreateClusterRequest struct {
  1950. // Deprecated. The Google Developers Console [project ID or project
  1951. // number](https://support.google.com/cloud/answer/6158840).
  1952. // This field has been deprecated and replaced by the parent field.
  1953. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  1954. // Deprecated. The name of the Google Compute Engine
  1955. // [zone](/compute/docs/zones#available) in which the cluster
  1956. // resides.
  1957. // This field has been deprecated and replaced by the parent field.
  1958. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  1959. // A [cluster
  1960. // resource](/container-engine/reference/rest/v1/projects.zones.clusters)
  1961. Cluster *Cluster `protobuf:"bytes,3,opt,name=cluster,proto3" json:"cluster,omitempty"`
  1962. // The parent (project and location) where the cluster will be created.
  1963. // Specified in the format 'projects/*/locations/*'.
  1964. Parent string `protobuf:"bytes,5,opt,name=parent,proto3" json:"parent,omitempty"`
  1965. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1966. XXX_unrecognized []byte `json:"-"`
  1967. XXX_sizecache int32 `json:"-"`
  1968. }
  1969. func (m *CreateClusterRequest) Reset() { *m = CreateClusterRequest{} }
  1970. func (m *CreateClusterRequest) String() string { return proto.CompactTextString(m) }
  1971. func (*CreateClusterRequest) ProtoMessage() {}
  1972. func (*CreateClusterRequest) Descriptor() ([]byte, []int) {
  1973. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{16}
  1974. }
  1975. func (m *CreateClusterRequest) XXX_Unmarshal(b []byte) error {
  1976. return xxx_messageInfo_CreateClusterRequest.Unmarshal(m, b)
  1977. }
  1978. func (m *CreateClusterRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1979. return xxx_messageInfo_CreateClusterRequest.Marshal(b, m, deterministic)
  1980. }
  1981. func (dst *CreateClusterRequest) XXX_Merge(src proto.Message) {
  1982. xxx_messageInfo_CreateClusterRequest.Merge(dst, src)
  1983. }
  1984. func (m *CreateClusterRequest) XXX_Size() int {
  1985. return xxx_messageInfo_CreateClusterRequest.Size(m)
  1986. }
  1987. func (m *CreateClusterRequest) XXX_DiscardUnknown() {
  1988. xxx_messageInfo_CreateClusterRequest.DiscardUnknown(m)
  1989. }
  1990. var xxx_messageInfo_CreateClusterRequest proto.InternalMessageInfo
  1991. // Deprecated: Do not use.
  1992. func (m *CreateClusterRequest) GetProjectId() string {
  1993. if m != nil {
  1994. return m.ProjectId
  1995. }
  1996. return ""
  1997. }
  1998. // Deprecated: Do not use.
  1999. func (m *CreateClusterRequest) GetZone() string {
  2000. if m != nil {
  2001. return m.Zone
  2002. }
  2003. return ""
  2004. }
  2005. func (m *CreateClusterRequest) GetCluster() *Cluster {
  2006. if m != nil {
  2007. return m.Cluster
  2008. }
  2009. return nil
  2010. }
  2011. func (m *CreateClusterRequest) GetParent() string {
  2012. if m != nil {
  2013. return m.Parent
  2014. }
  2015. return ""
  2016. }
  2017. // GetClusterRequest gets the settings of a cluster.
  2018. type GetClusterRequest struct {
  2019. // Deprecated. The Google Developers Console [project ID or project
  2020. // number](https://support.google.com/cloud/answer/6158840).
  2021. // This field has been deprecated and replaced by the name field.
  2022. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  2023. // Deprecated. The name of the Google Compute Engine
  2024. // [zone](/compute/docs/zones#available) in which the cluster
  2025. // resides.
  2026. // This field has been deprecated and replaced by the name field.
  2027. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  2028. // Deprecated. The name of the cluster to retrieve.
  2029. // This field has been deprecated and replaced by the name field.
  2030. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` // Deprecated: Do not use.
  2031. // The name (project, location, cluster) of the cluster to retrieve.
  2032. // Specified in the format 'projects/*/locations/*/clusters/*'.
  2033. Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
  2034. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2035. XXX_unrecognized []byte `json:"-"`
  2036. XXX_sizecache int32 `json:"-"`
  2037. }
  2038. func (m *GetClusterRequest) Reset() { *m = GetClusterRequest{} }
  2039. func (m *GetClusterRequest) String() string { return proto.CompactTextString(m) }
  2040. func (*GetClusterRequest) ProtoMessage() {}
  2041. func (*GetClusterRequest) Descriptor() ([]byte, []int) {
  2042. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{17}
  2043. }
  2044. func (m *GetClusterRequest) XXX_Unmarshal(b []byte) error {
  2045. return xxx_messageInfo_GetClusterRequest.Unmarshal(m, b)
  2046. }
  2047. func (m *GetClusterRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2048. return xxx_messageInfo_GetClusterRequest.Marshal(b, m, deterministic)
  2049. }
  2050. func (dst *GetClusterRequest) XXX_Merge(src proto.Message) {
  2051. xxx_messageInfo_GetClusterRequest.Merge(dst, src)
  2052. }
  2053. func (m *GetClusterRequest) XXX_Size() int {
  2054. return xxx_messageInfo_GetClusterRequest.Size(m)
  2055. }
  2056. func (m *GetClusterRequest) XXX_DiscardUnknown() {
  2057. xxx_messageInfo_GetClusterRequest.DiscardUnknown(m)
  2058. }
  2059. var xxx_messageInfo_GetClusterRequest proto.InternalMessageInfo
  2060. // Deprecated: Do not use.
  2061. func (m *GetClusterRequest) GetProjectId() string {
  2062. if m != nil {
  2063. return m.ProjectId
  2064. }
  2065. return ""
  2066. }
  2067. // Deprecated: Do not use.
  2068. func (m *GetClusterRequest) GetZone() string {
  2069. if m != nil {
  2070. return m.Zone
  2071. }
  2072. return ""
  2073. }
  2074. // Deprecated: Do not use.
  2075. func (m *GetClusterRequest) GetClusterId() string {
  2076. if m != nil {
  2077. return m.ClusterId
  2078. }
  2079. return ""
  2080. }
  2081. func (m *GetClusterRequest) GetName() string {
  2082. if m != nil {
  2083. return m.Name
  2084. }
  2085. return ""
  2086. }
  2087. // UpdateClusterRequest updates the settings of a cluster.
  2088. type UpdateClusterRequest struct {
  2089. // Deprecated. The Google Developers Console [project ID or project
  2090. // number](https://support.google.com/cloud/answer/6158840).
  2091. // This field has been deprecated and replaced by the name field.
  2092. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  2093. // Deprecated. The name of the Google Compute Engine
  2094. // [zone](/compute/docs/zones#available) in which the cluster
  2095. // resides.
  2096. // This field has been deprecated and replaced by the name field.
  2097. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  2098. // Deprecated. The name of the cluster to upgrade.
  2099. // This field has been deprecated and replaced by the name field.
  2100. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` // Deprecated: Do not use.
  2101. // A description of the update.
  2102. Update *ClusterUpdate `protobuf:"bytes,4,opt,name=update,proto3" json:"update,omitempty"`
  2103. // The name (project, location, cluster) of the cluster to update.
  2104. // Specified in the format 'projects/*/locations/*/clusters/*'.
  2105. Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
  2106. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2107. XXX_unrecognized []byte `json:"-"`
  2108. XXX_sizecache int32 `json:"-"`
  2109. }
  2110. func (m *UpdateClusterRequest) Reset() { *m = UpdateClusterRequest{} }
  2111. func (m *UpdateClusterRequest) String() string { return proto.CompactTextString(m) }
  2112. func (*UpdateClusterRequest) ProtoMessage() {}
  2113. func (*UpdateClusterRequest) Descriptor() ([]byte, []int) {
  2114. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{18}
  2115. }
  2116. func (m *UpdateClusterRequest) XXX_Unmarshal(b []byte) error {
  2117. return xxx_messageInfo_UpdateClusterRequest.Unmarshal(m, b)
  2118. }
  2119. func (m *UpdateClusterRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2120. return xxx_messageInfo_UpdateClusterRequest.Marshal(b, m, deterministic)
  2121. }
  2122. func (dst *UpdateClusterRequest) XXX_Merge(src proto.Message) {
  2123. xxx_messageInfo_UpdateClusterRequest.Merge(dst, src)
  2124. }
  2125. func (m *UpdateClusterRequest) XXX_Size() int {
  2126. return xxx_messageInfo_UpdateClusterRequest.Size(m)
  2127. }
  2128. func (m *UpdateClusterRequest) XXX_DiscardUnknown() {
  2129. xxx_messageInfo_UpdateClusterRequest.DiscardUnknown(m)
  2130. }
  2131. var xxx_messageInfo_UpdateClusterRequest proto.InternalMessageInfo
  2132. // Deprecated: Do not use.
  2133. func (m *UpdateClusterRequest) GetProjectId() string {
  2134. if m != nil {
  2135. return m.ProjectId
  2136. }
  2137. return ""
  2138. }
  2139. // Deprecated: Do not use.
  2140. func (m *UpdateClusterRequest) GetZone() string {
  2141. if m != nil {
  2142. return m.Zone
  2143. }
  2144. return ""
  2145. }
  2146. // Deprecated: Do not use.
  2147. func (m *UpdateClusterRequest) GetClusterId() string {
  2148. if m != nil {
  2149. return m.ClusterId
  2150. }
  2151. return ""
  2152. }
  2153. func (m *UpdateClusterRequest) GetUpdate() *ClusterUpdate {
  2154. if m != nil {
  2155. return m.Update
  2156. }
  2157. return nil
  2158. }
  2159. func (m *UpdateClusterRequest) GetName() string {
  2160. if m != nil {
  2161. return m.Name
  2162. }
  2163. return ""
  2164. }
  2165. // UpdateNodePoolRequests update a node pool's image and/or version.
  2166. type UpdateNodePoolRequest struct {
  2167. // Deprecated. The Google Developers Console [project ID or project
  2168. // number](https://support.google.com/cloud/answer/6158840).
  2169. // This field has been deprecated and replaced by the name field.
  2170. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  2171. // Deprecated. The name of the Google Compute Engine
  2172. // [zone](/compute/docs/zones#available) in which the cluster
  2173. // resides.
  2174. // This field has been deprecated and replaced by the name field.
  2175. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  2176. // Deprecated. The name of the cluster to upgrade.
  2177. // This field has been deprecated and replaced by the name field.
  2178. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` // Deprecated: Do not use.
  2179. // Deprecated. The name of the node pool to upgrade.
  2180. // This field has been deprecated and replaced by the name field.
  2181. NodePoolId string `protobuf:"bytes,4,opt,name=node_pool_id,json=nodePoolId,proto3" json:"node_pool_id,omitempty"` // Deprecated: Do not use.
  2182. // The Kubernetes version to change the nodes to (typically an
  2183. // upgrade).
  2184. //
  2185. // Users may specify either explicit versions offered by Kubernetes Engine or
  2186. // version aliases, which have the following behavior:
  2187. //
  2188. // - "latest": picks the highest valid Kubernetes version
  2189. // - "1.X": picks the highest valid patch+gke.N patch in the 1.X version
  2190. // - "1.X.Y": picks the highest valid gke.N patch in the 1.X.Y version
  2191. // - "1.X.Y-gke.N": picks an explicit Kubernetes version
  2192. // - "-": picks the Kubernetes master version
  2193. NodeVersion string `protobuf:"bytes,5,opt,name=node_version,json=nodeVersion,proto3" json:"node_version,omitempty"`
  2194. // The desired image type for the node pool.
  2195. ImageType string `protobuf:"bytes,6,opt,name=image_type,json=imageType,proto3" json:"image_type,omitempty"`
  2196. // The name (project, location, cluster, node pool) of the node pool to
  2197. // update. Specified in the format
  2198. // 'projects/*/locations/*/clusters/*/nodePools/*'.
  2199. Name string `protobuf:"bytes,8,opt,name=name,proto3" json:"name,omitempty"`
  2200. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2201. XXX_unrecognized []byte `json:"-"`
  2202. XXX_sizecache int32 `json:"-"`
  2203. }
  2204. func (m *UpdateNodePoolRequest) Reset() { *m = UpdateNodePoolRequest{} }
  2205. func (m *UpdateNodePoolRequest) String() string { return proto.CompactTextString(m) }
  2206. func (*UpdateNodePoolRequest) ProtoMessage() {}
  2207. func (*UpdateNodePoolRequest) Descriptor() ([]byte, []int) {
  2208. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{19}
  2209. }
  2210. func (m *UpdateNodePoolRequest) XXX_Unmarshal(b []byte) error {
  2211. return xxx_messageInfo_UpdateNodePoolRequest.Unmarshal(m, b)
  2212. }
  2213. func (m *UpdateNodePoolRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2214. return xxx_messageInfo_UpdateNodePoolRequest.Marshal(b, m, deterministic)
  2215. }
  2216. func (dst *UpdateNodePoolRequest) XXX_Merge(src proto.Message) {
  2217. xxx_messageInfo_UpdateNodePoolRequest.Merge(dst, src)
  2218. }
  2219. func (m *UpdateNodePoolRequest) XXX_Size() int {
  2220. return xxx_messageInfo_UpdateNodePoolRequest.Size(m)
  2221. }
  2222. func (m *UpdateNodePoolRequest) XXX_DiscardUnknown() {
  2223. xxx_messageInfo_UpdateNodePoolRequest.DiscardUnknown(m)
  2224. }
  2225. var xxx_messageInfo_UpdateNodePoolRequest proto.InternalMessageInfo
  2226. // Deprecated: Do not use.
  2227. func (m *UpdateNodePoolRequest) GetProjectId() string {
  2228. if m != nil {
  2229. return m.ProjectId
  2230. }
  2231. return ""
  2232. }
  2233. // Deprecated: Do not use.
  2234. func (m *UpdateNodePoolRequest) GetZone() string {
  2235. if m != nil {
  2236. return m.Zone
  2237. }
  2238. return ""
  2239. }
  2240. // Deprecated: Do not use.
  2241. func (m *UpdateNodePoolRequest) GetClusterId() string {
  2242. if m != nil {
  2243. return m.ClusterId
  2244. }
  2245. return ""
  2246. }
  2247. // Deprecated: Do not use.
  2248. func (m *UpdateNodePoolRequest) GetNodePoolId() string {
  2249. if m != nil {
  2250. return m.NodePoolId
  2251. }
  2252. return ""
  2253. }
  2254. func (m *UpdateNodePoolRequest) GetNodeVersion() string {
  2255. if m != nil {
  2256. return m.NodeVersion
  2257. }
  2258. return ""
  2259. }
  2260. func (m *UpdateNodePoolRequest) GetImageType() string {
  2261. if m != nil {
  2262. return m.ImageType
  2263. }
  2264. return ""
  2265. }
  2266. func (m *UpdateNodePoolRequest) GetName() string {
  2267. if m != nil {
  2268. return m.Name
  2269. }
  2270. return ""
  2271. }
  2272. // SetNodePoolAutoscalingRequest sets the autoscaler settings of a node pool.
  2273. type SetNodePoolAutoscalingRequest struct {
  2274. // Deprecated. The Google Developers Console [project ID or project
  2275. // number](https://support.google.com/cloud/answer/6158840).
  2276. // This field has been deprecated and replaced by the name field.
  2277. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  2278. // Deprecated. The name of the Google Compute Engine
  2279. // [zone](/compute/docs/zones#available) in which the cluster
  2280. // resides.
  2281. // This field has been deprecated and replaced by the name field.
  2282. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  2283. // Deprecated. The name of the cluster to upgrade.
  2284. // This field has been deprecated and replaced by the name field.
  2285. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` // Deprecated: Do not use.
  2286. // Deprecated. The name of the node pool to upgrade.
  2287. // This field has been deprecated and replaced by the name field.
  2288. NodePoolId string `protobuf:"bytes,4,opt,name=node_pool_id,json=nodePoolId,proto3" json:"node_pool_id,omitempty"` // Deprecated: Do not use.
  2289. // Autoscaling configuration for the node pool.
  2290. Autoscaling *NodePoolAutoscaling `protobuf:"bytes,5,opt,name=autoscaling,proto3" json:"autoscaling,omitempty"`
  2291. // The name (project, location, cluster, node pool) of the node pool to set
  2292. // autoscaler settings. Specified in the format
  2293. // 'projects/*/locations/*/clusters/*/nodePools/*'.
  2294. Name string `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
  2295. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2296. XXX_unrecognized []byte `json:"-"`
  2297. XXX_sizecache int32 `json:"-"`
  2298. }
  2299. func (m *SetNodePoolAutoscalingRequest) Reset() { *m = SetNodePoolAutoscalingRequest{} }
  2300. func (m *SetNodePoolAutoscalingRequest) String() string { return proto.CompactTextString(m) }
  2301. func (*SetNodePoolAutoscalingRequest) ProtoMessage() {}
  2302. func (*SetNodePoolAutoscalingRequest) Descriptor() ([]byte, []int) {
  2303. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{20}
  2304. }
  2305. func (m *SetNodePoolAutoscalingRequest) XXX_Unmarshal(b []byte) error {
  2306. return xxx_messageInfo_SetNodePoolAutoscalingRequest.Unmarshal(m, b)
  2307. }
  2308. func (m *SetNodePoolAutoscalingRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2309. return xxx_messageInfo_SetNodePoolAutoscalingRequest.Marshal(b, m, deterministic)
  2310. }
  2311. func (dst *SetNodePoolAutoscalingRequest) XXX_Merge(src proto.Message) {
  2312. xxx_messageInfo_SetNodePoolAutoscalingRequest.Merge(dst, src)
  2313. }
  2314. func (m *SetNodePoolAutoscalingRequest) XXX_Size() int {
  2315. return xxx_messageInfo_SetNodePoolAutoscalingRequest.Size(m)
  2316. }
  2317. func (m *SetNodePoolAutoscalingRequest) XXX_DiscardUnknown() {
  2318. xxx_messageInfo_SetNodePoolAutoscalingRequest.DiscardUnknown(m)
  2319. }
  2320. var xxx_messageInfo_SetNodePoolAutoscalingRequest proto.InternalMessageInfo
  2321. // Deprecated: Do not use.
  2322. func (m *SetNodePoolAutoscalingRequest) GetProjectId() string {
  2323. if m != nil {
  2324. return m.ProjectId
  2325. }
  2326. return ""
  2327. }
  2328. // Deprecated: Do not use.
  2329. func (m *SetNodePoolAutoscalingRequest) GetZone() string {
  2330. if m != nil {
  2331. return m.Zone
  2332. }
  2333. return ""
  2334. }
  2335. // Deprecated: Do not use.
  2336. func (m *SetNodePoolAutoscalingRequest) GetClusterId() string {
  2337. if m != nil {
  2338. return m.ClusterId
  2339. }
  2340. return ""
  2341. }
  2342. // Deprecated: Do not use.
  2343. func (m *SetNodePoolAutoscalingRequest) GetNodePoolId() string {
  2344. if m != nil {
  2345. return m.NodePoolId
  2346. }
  2347. return ""
  2348. }
  2349. func (m *SetNodePoolAutoscalingRequest) GetAutoscaling() *NodePoolAutoscaling {
  2350. if m != nil {
  2351. return m.Autoscaling
  2352. }
  2353. return nil
  2354. }
  2355. func (m *SetNodePoolAutoscalingRequest) GetName() string {
  2356. if m != nil {
  2357. return m.Name
  2358. }
  2359. return ""
  2360. }
  2361. // SetLoggingServiceRequest sets the logging service of a cluster.
  2362. type SetLoggingServiceRequest struct {
  2363. // Deprecated. The Google Developers Console [project ID or project
  2364. // number](https://support.google.com/cloud/answer/6158840).
  2365. // This field has been deprecated and replaced by the name field.
  2366. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  2367. // Deprecated. The name of the Google Compute Engine
  2368. // [zone](/compute/docs/zones#available) in which the cluster
  2369. // resides.
  2370. // This field has been deprecated and replaced by the name field.
  2371. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"`
  2372. // Deprecated. The name of the cluster to upgrade.
  2373. // This field has been deprecated and replaced by the name field.
  2374. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` // Deprecated: Do not use.
  2375. // The logging service the cluster should use to write metrics.
  2376. // Currently available options:
  2377. //
  2378. // * "logging.googleapis.com" - the Google Cloud Logging service
  2379. // * "none" - no metrics will be exported from the cluster
  2380. LoggingService string `protobuf:"bytes,4,opt,name=logging_service,json=loggingService,proto3" json:"logging_service,omitempty"`
  2381. // The name (project, location, cluster) of the cluster to set logging.
  2382. // Specified in the format 'projects/*/locations/*/clusters/*'.
  2383. Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
  2384. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2385. XXX_unrecognized []byte `json:"-"`
  2386. XXX_sizecache int32 `json:"-"`
  2387. }
  2388. func (m *SetLoggingServiceRequest) Reset() { *m = SetLoggingServiceRequest{} }
  2389. func (m *SetLoggingServiceRequest) String() string { return proto.CompactTextString(m) }
  2390. func (*SetLoggingServiceRequest) ProtoMessage() {}
  2391. func (*SetLoggingServiceRequest) Descriptor() ([]byte, []int) {
  2392. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{21}
  2393. }
  2394. func (m *SetLoggingServiceRequest) XXX_Unmarshal(b []byte) error {
  2395. return xxx_messageInfo_SetLoggingServiceRequest.Unmarshal(m, b)
  2396. }
  2397. func (m *SetLoggingServiceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2398. return xxx_messageInfo_SetLoggingServiceRequest.Marshal(b, m, deterministic)
  2399. }
  2400. func (dst *SetLoggingServiceRequest) XXX_Merge(src proto.Message) {
  2401. xxx_messageInfo_SetLoggingServiceRequest.Merge(dst, src)
  2402. }
  2403. func (m *SetLoggingServiceRequest) XXX_Size() int {
  2404. return xxx_messageInfo_SetLoggingServiceRequest.Size(m)
  2405. }
  2406. func (m *SetLoggingServiceRequest) XXX_DiscardUnknown() {
  2407. xxx_messageInfo_SetLoggingServiceRequest.DiscardUnknown(m)
  2408. }
  2409. var xxx_messageInfo_SetLoggingServiceRequest proto.InternalMessageInfo
  2410. // Deprecated: Do not use.
  2411. func (m *SetLoggingServiceRequest) GetProjectId() string {
  2412. if m != nil {
  2413. return m.ProjectId
  2414. }
  2415. return ""
  2416. }
  2417. func (m *SetLoggingServiceRequest) GetZone() string {
  2418. if m != nil {
  2419. return m.Zone
  2420. }
  2421. return ""
  2422. }
  2423. // Deprecated: Do not use.
  2424. func (m *SetLoggingServiceRequest) GetClusterId() string {
  2425. if m != nil {
  2426. return m.ClusterId
  2427. }
  2428. return ""
  2429. }
  2430. func (m *SetLoggingServiceRequest) GetLoggingService() string {
  2431. if m != nil {
  2432. return m.LoggingService
  2433. }
  2434. return ""
  2435. }
  2436. func (m *SetLoggingServiceRequest) GetName() string {
  2437. if m != nil {
  2438. return m.Name
  2439. }
  2440. return ""
  2441. }
  2442. // SetMonitoringServiceRequest sets the monitoring service of a cluster.
  2443. type SetMonitoringServiceRequest struct {
  2444. // Deprecated. The Google Developers Console [project ID or project
  2445. // number](https://support.google.com/cloud/answer/6158840).
  2446. // This field has been deprecated and replaced by the name field.
  2447. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  2448. // Deprecated. The name of the Google Compute Engine
  2449. // [zone](/compute/docs/zones#available) in which the cluster
  2450. // resides.
  2451. // This field has been deprecated and replaced by the name field.
  2452. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  2453. // Deprecated. The name of the cluster to upgrade.
  2454. // This field has been deprecated and replaced by the name field.
  2455. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` // Deprecated: Do not use.
  2456. // The monitoring service the cluster should use to write metrics.
  2457. // Currently available options:
  2458. //
  2459. // * "monitoring.googleapis.com" - the Google Cloud Monitoring service
  2460. // * "none" - no metrics will be exported from the cluster
  2461. MonitoringService string `protobuf:"bytes,4,opt,name=monitoring_service,json=monitoringService,proto3" json:"monitoring_service,omitempty"`
  2462. // The name (project, location, cluster) of the cluster to set monitoring.
  2463. // Specified in the format 'projects/*/locations/*/clusters/*'.
  2464. Name string `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
  2465. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2466. XXX_unrecognized []byte `json:"-"`
  2467. XXX_sizecache int32 `json:"-"`
  2468. }
  2469. func (m *SetMonitoringServiceRequest) Reset() { *m = SetMonitoringServiceRequest{} }
  2470. func (m *SetMonitoringServiceRequest) String() string { return proto.CompactTextString(m) }
  2471. func (*SetMonitoringServiceRequest) ProtoMessage() {}
  2472. func (*SetMonitoringServiceRequest) Descriptor() ([]byte, []int) {
  2473. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{22}
  2474. }
  2475. func (m *SetMonitoringServiceRequest) XXX_Unmarshal(b []byte) error {
  2476. return xxx_messageInfo_SetMonitoringServiceRequest.Unmarshal(m, b)
  2477. }
  2478. func (m *SetMonitoringServiceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2479. return xxx_messageInfo_SetMonitoringServiceRequest.Marshal(b, m, deterministic)
  2480. }
  2481. func (dst *SetMonitoringServiceRequest) XXX_Merge(src proto.Message) {
  2482. xxx_messageInfo_SetMonitoringServiceRequest.Merge(dst, src)
  2483. }
  2484. func (m *SetMonitoringServiceRequest) XXX_Size() int {
  2485. return xxx_messageInfo_SetMonitoringServiceRequest.Size(m)
  2486. }
  2487. func (m *SetMonitoringServiceRequest) XXX_DiscardUnknown() {
  2488. xxx_messageInfo_SetMonitoringServiceRequest.DiscardUnknown(m)
  2489. }
  2490. var xxx_messageInfo_SetMonitoringServiceRequest proto.InternalMessageInfo
  2491. // Deprecated: Do not use.
  2492. func (m *SetMonitoringServiceRequest) GetProjectId() string {
  2493. if m != nil {
  2494. return m.ProjectId
  2495. }
  2496. return ""
  2497. }
  2498. // Deprecated: Do not use.
  2499. func (m *SetMonitoringServiceRequest) GetZone() string {
  2500. if m != nil {
  2501. return m.Zone
  2502. }
  2503. return ""
  2504. }
  2505. // Deprecated: Do not use.
  2506. func (m *SetMonitoringServiceRequest) GetClusterId() string {
  2507. if m != nil {
  2508. return m.ClusterId
  2509. }
  2510. return ""
  2511. }
  2512. func (m *SetMonitoringServiceRequest) GetMonitoringService() string {
  2513. if m != nil {
  2514. return m.MonitoringService
  2515. }
  2516. return ""
  2517. }
  2518. func (m *SetMonitoringServiceRequest) GetName() string {
  2519. if m != nil {
  2520. return m.Name
  2521. }
  2522. return ""
  2523. }
  2524. // SetAddonsConfigRequest sets the addons associated with the cluster.
  2525. type SetAddonsConfigRequest struct {
  2526. // Deprecated. The Google Developers Console [project ID or project
  2527. // number](https://support.google.com/cloud/answer/6158840).
  2528. // This field has been deprecated and replaced by the name field.
  2529. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  2530. // Deprecated. The name of the Google Compute Engine
  2531. // [zone](/compute/docs/zones#available) in which the cluster
  2532. // resides.
  2533. // This field has been deprecated and replaced by the name field.
  2534. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  2535. // Deprecated. The name of the cluster to upgrade.
  2536. // This field has been deprecated and replaced by the name field.
  2537. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` // Deprecated: Do not use.
  2538. // The desired configurations for the various addons available to run in the
  2539. // cluster.
  2540. AddonsConfig *AddonsConfig `protobuf:"bytes,4,opt,name=addons_config,json=addonsConfig,proto3" json:"addons_config,omitempty"`
  2541. // The name (project, location, cluster) of the cluster to set addons.
  2542. // Specified in the format 'projects/*/locations/*/clusters/*'.
  2543. Name string `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
  2544. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2545. XXX_unrecognized []byte `json:"-"`
  2546. XXX_sizecache int32 `json:"-"`
  2547. }
  2548. func (m *SetAddonsConfigRequest) Reset() { *m = SetAddonsConfigRequest{} }
  2549. func (m *SetAddonsConfigRequest) String() string { return proto.CompactTextString(m) }
  2550. func (*SetAddonsConfigRequest) ProtoMessage() {}
  2551. func (*SetAddonsConfigRequest) Descriptor() ([]byte, []int) {
  2552. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{23}
  2553. }
  2554. func (m *SetAddonsConfigRequest) XXX_Unmarshal(b []byte) error {
  2555. return xxx_messageInfo_SetAddonsConfigRequest.Unmarshal(m, b)
  2556. }
  2557. func (m *SetAddonsConfigRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2558. return xxx_messageInfo_SetAddonsConfigRequest.Marshal(b, m, deterministic)
  2559. }
  2560. func (dst *SetAddonsConfigRequest) XXX_Merge(src proto.Message) {
  2561. xxx_messageInfo_SetAddonsConfigRequest.Merge(dst, src)
  2562. }
  2563. func (m *SetAddonsConfigRequest) XXX_Size() int {
  2564. return xxx_messageInfo_SetAddonsConfigRequest.Size(m)
  2565. }
  2566. func (m *SetAddonsConfigRequest) XXX_DiscardUnknown() {
  2567. xxx_messageInfo_SetAddonsConfigRequest.DiscardUnknown(m)
  2568. }
  2569. var xxx_messageInfo_SetAddonsConfigRequest proto.InternalMessageInfo
  2570. // Deprecated: Do not use.
  2571. func (m *SetAddonsConfigRequest) GetProjectId() string {
  2572. if m != nil {
  2573. return m.ProjectId
  2574. }
  2575. return ""
  2576. }
  2577. // Deprecated: Do not use.
  2578. func (m *SetAddonsConfigRequest) GetZone() string {
  2579. if m != nil {
  2580. return m.Zone
  2581. }
  2582. return ""
  2583. }
  2584. // Deprecated: Do not use.
  2585. func (m *SetAddonsConfigRequest) GetClusterId() string {
  2586. if m != nil {
  2587. return m.ClusterId
  2588. }
  2589. return ""
  2590. }
  2591. func (m *SetAddonsConfigRequest) GetAddonsConfig() *AddonsConfig {
  2592. if m != nil {
  2593. return m.AddonsConfig
  2594. }
  2595. return nil
  2596. }
  2597. func (m *SetAddonsConfigRequest) GetName() string {
  2598. if m != nil {
  2599. return m.Name
  2600. }
  2601. return ""
  2602. }
  2603. // SetLocationsRequest sets the locations of the cluster.
  2604. type SetLocationsRequest struct {
  2605. // Deprecated. The Google Developers Console [project ID or project
  2606. // number](https://support.google.com/cloud/answer/6158840).
  2607. // This field has been deprecated and replaced by the name field.
  2608. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  2609. // Deprecated. The name of the Google Compute Engine
  2610. // [zone](/compute/docs/zones#available) in which the cluster
  2611. // resides.
  2612. // This field has been deprecated and replaced by the name field.
  2613. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  2614. // Deprecated. The name of the cluster to upgrade.
  2615. // This field has been deprecated and replaced by the name field.
  2616. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` // Deprecated: Do not use.
  2617. // The desired list of Google Compute Engine
  2618. // [locations](/compute/docs/zones#available) in which the cluster's nodes
  2619. // should be located. Changing the locations a cluster is in will result
  2620. // in nodes being either created or removed from the cluster, depending on
  2621. // whether locations are being added or removed.
  2622. //
  2623. // This list must always include the cluster's primary zone.
  2624. Locations []string `protobuf:"bytes,4,rep,name=locations,proto3" json:"locations,omitempty"`
  2625. // The name (project, location, cluster) of the cluster to set locations.
  2626. // Specified in the format 'projects/*/locations/*/clusters/*'.
  2627. Name string `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
  2628. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2629. XXX_unrecognized []byte `json:"-"`
  2630. XXX_sizecache int32 `json:"-"`
  2631. }
  2632. func (m *SetLocationsRequest) Reset() { *m = SetLocationsRequest{} }
  2633. func (m *SetLocationsRequest) String() string { return proto.CompactTextString(m) }
  2634. func (*SetLocationsRequest) ProtoMessage() {}
  2635. func (*SetLocationsRequest) Descriptor() ([]byte, []int) {
  2636. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{24}
  2637. }
  2638. func (m *SetLocationsRequest) XXX_Unmarshal(b []byte) error {
  2639. return xxx_messageInfo_SetLocationsRequest.Unmarshal(m, b)
  2640. }
  2641. func (m *SetLocationsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2642. return xxx_messageInfo_SetLocationsRequest.Marshal(b, m, deterministic)
  2643. }
  2644. func (dst *SetLocationsRequest) XXX_Merge(src proto.Message) {
  2645. xxx_messageInfo_SetLocationsRequest.Merge(dst, src)
  2646. }
  2647. func (m *SetLocationsRequest) XXX_Size() int {
  2648. return xxx_messageInfo_SetLocationsRequest.Size(m)
  2649. }
  2650. func (m *SetLocationsRequest) XXX_DiscardUnknown() {
  2651. xxx_messageInfo_SetLocationsRequest.DiscardUnknown(m)
  2652. }
  2653. var xxx_messageInfo_SetLocationsRequest proto.InternalMessageInfo
  2654. // Deprecated: Do not use.
  2655. func (m *SetLocationsRequest) GetProjectId() string {
  2656. if m != nil {
  2657. return m.ProjectId
  2658. }
  2659. return ""
  2660. }
  2661. // Deprecated: Do not use.
  2662. func (m *SetLocationsRequest) GetZone() string {
  2663. if m != nil {
  2664. return m.Zone
  2665. }
  2666. return ""
  2667. }
  2668. // Deprecated: Do not use.
  2669. func (m *SetLocationsRequest) GetClusterId() string {
  2670. if m != nil {
  2671. return m.ClusterId
  2672. }
  2673. return ""
  2674. }
  2675. func (m *SetLocationsRequest) GetLocations() []string {
  2676. if m != nil {
  2677. return m.Locations
  2678. }
  2679. return nil
  2680. }
  2681. func (m *SetLocationsRequest) GetName() string {
  2682. if m != nil {
  2683. return m.Name
  2684. }
  2685. return ""
  2686. }
  2687. // UpdateMasterRequest updates the master of the cluster.
  2688. type UpdateMasterRequest struct {
  2689. // Deprecated. The Google Developers Console [project ID or project
  2690. // number](https://support.google.com/cloud/answer/6158840).
  2691. // This field has been deprecated and replaced by the name field.
  2692. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  2693. // Deprecated. The name of the Google Compute Engine
  2694. // [zone](/compute/docs/zones#available) in which the cluster
  2695. // resides.
  2696. // This field has been deprecated and replaced by the name field.
  2697. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  2698. // Deprecated. The name of the cluster to upgrade.
  2699. // This field has been deprecated and replaced by the name field.
  2700. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` // Deprecated: Do not use.
  2701. // The Kubernetes version to change the master to.
  2702. //
  2703. // Users may specify either explicit versions offered by Kubernetes Engine or
  2704. // version aliases, which have the following behavior:
  2705. //
  2706. // - "latest": picks the highest valid Kubernetes version
  2707. // - "1.X": picks the highest valid patch+gke.N patch in the 1.X version
  2708. // - "1.X.Y": picks the highest valid gke.N patch in the 1.X.Y version
  2709. // - "1.X.Y-gke.N": picks an explicit Kubernetes version
  2710. // - "-": picks the default Kubernetes version
  2711. MasterVersion string `protobuf:"bytes,4,opt,name=master_version,json=masterVersion,proto3" json:"master_version,omitempty"`
  2712. // The name (project, location, cluster) of the cluster to update.
  2713. // Specified in the format 'projects/*/locations/*/clusters/*'.
  2714. Name string `protobuf:"bytes,7,opt,name=name,proto3" json:"name,omitempty"`
  2715. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2716. XXX_unrecognized []byte `json:"-"`
  2717. XXX_sizecache int32 `json:"-"`
  2718. }
  2719. func (m *UpdateMasterRequest) Reset() { *m = UpdateMasterRequest{} }
  2720. func (m *UpdateMasterRequest) String() string { return proto.CompactTextString(m) }
  2721. func (*UpdateMasterRequest) ProtoMessage() {}
  2722. func (*UpdateMasterRequest) Descriptor() ([]byte, []int) {
  2723. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{25}
  2724. }
  2725. func (m *UpdateMasterRequest) XXX_Unmarshal(b []byte) error {
  2726. return xxx_messageInfo_UpdateMasterRequest.Unmarshal(m, b)
  2727. }
  2728. func (m *UpdateMasterRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2729. return xxx_messageInfo_UpdateMasterRequest.Marshal(b, m, deterministic)
  2730. }
  2731. func (dst *UpdateMasterRequest) XXX_Merge(src proto.Message) {
  2732. xxx_messageInfo_UpdateMasterRequest.Merge(dst, src)
  2733. }
  2734. func (m *UpdateMasterRequest) XXX_Size() int {
  2735. return xxx_messageInfo_UpdateMasterRequest.Size(m)
  2736. }
  2737. func (m *UpdateMasterRequest) XXX_DiscardUnknown() {
  2738. xxx_messageInfo_UpdateMasterRequest.DiscardUnknown(m)
  2739. }
  2740. var xxx_messageInfo_UpdateMasterRequest proto.InternalMessageInfo
  2741. // Deprecated: Do not use.
  2742. func (m *UpdateMasterRequest) GetProjectId() string {
  2743. if m != nil {
  2744. return m.ProjectId
  2745. }
  2746. return ""
  2747. }
  2748. // Deprecated: Do not use.
  2749. func (m *UpdateMasterRequest) GetZone() string {
  2750. if m != nil {
  2751. return m.Zone
  2752. }
  2753. return ""
  2754. }
  2755. // Deprecated: Do not use.
  2756. func (m *UpdateMasterRequest) GetClusterId() string {
  2757. if m != nil {
  2758. return m.ClusterId
  2759. }
  2760. return ""
  2761. }
  2762. func (m *UpdateMasterRequest) GetMasterVersion() string {
  2763. if m != nil {
  2764. return m.MasterVersion
  2765. }
  2766. return ""
  2767. }
  2768. func (m *UpdateMasterRequest) GetName() string {
  2769. if m != nil {
  2770. return m.Name
  2771. }
  2772. return ""
  2773. }
  2774. // SetMasterAuthRequest updates the admin password of a cluster.
  2775. type SetMasterAuthRequest struct {
  2776. // Deprecated. The Google Developers Console [project ID or project
  2777. // number](https://support.google.com/cloud/answer/6158840).
  2778. // This field has been deprecated and replaced by the name field.
  2779. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  2780. // Deprecated. The name of the Google Compute Engine
  2781. // [zone](/compute/docs/zones#available) in which the cluster
  2782. // resides.
  2783. // This field has been deprecated and replaced by the name field.
  2784. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  2785. // Deprecated. The name of the cluster to upgrade.
  2786. // This field has been deprecated and replaced by the name field.
  2787. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` // Deprecated: Do not use.
  2788. // The exact form of action to be taken on the master auth.
  2789. Action SetMasterAuthRequest_Action `protobuf:"varint,4,opt,name=action,proto3,enum=google.container.v1.SetMasterAuthRequest_Action" json:"action,omitempty"`
  2790. // A description of the update.
  2791. Update *MasterAuth `protobuf:"bytes,5,opt,name=update,proto3" json:"update,omitempty"`
  2792. // The name (project, location, cluster) of the cluster to set auth.
  2793. // Specified in the format 'projects/*/locations/*/clusters/*'.
  2794. Name string `protobuf:"bytes,7,opt,name=name,proto3" json:"name,omitempty"`
  2795. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2796. XXX_unrecognized []byte `json:"-"`
  2797. XXX_sizecache int32 `json:"-"`
  2798. }
  2799. func (m *SetMasterAuthRequest) Reset() { *m = SetMasterAuthRequest{} }
  2800. func (m *SetMasterAuthRequest) String() string { return proto.CompactTextString(m) }
  2801. func (*SetMasterAuthRequest) ProtoMessage() {}
  2802. func (*SetMasterAuthRequest) Descriptor() ([]byte, []int) {
  2803. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{26}
  2804. }
  2805. func (m *SetMasterAuthRequest) XXX_Unmarshal(b []byte) error {
  2806. return xxx_messageInfo_SetMasterAuthRequest.Unmarshal(m, b)
  2807. }
  2808. func (m *SetMasterAuthRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2809. return xxx_messageInfo_SetMasterAuthRequest.Marshal(b, m, deterministic)
  2810. }
  2811. func (dst *SetMasterAuthRequest) XXX_Merge(src proto.Message) {
  2812. xxx_messageInfo_SetMasterAuthRequest.Merge(dst, src)
  2813. }
  2814. func (m *SetMasterAuthRequest) XXX_Size() int {
  2815. return xxx_messageInfo_SetMasterAuthRequest.Size(m)
  2816. }
  2817. func (m *SetMasterAuthRequest) XXX_DiscardUnknown() {
  2818. xxx_messageInfo_SetMasterAuthRequest.DiscardUnknown(m)
  2819. }
  2820. var xxx_messageInfo_SetMasterAuthRequest proto.InternalMessageInfo
  2821. // Deprecated: Do not use.
  2822. func (m *SetMasterAuthRequest) GetProjectId() string {
  2823. if m != nil {
  2824. return m.ProjectId
  2825. }
  2826. return ""
  2827. }
  2828. // Deprecated: Do not use.
  2829. func (m *SetMasterAuthRequest) GetZone() string {
  2830. if m != nil {
  2831. return m.Zone
  2832. }
  2833. return ""
  2834. }
  2835. // Deprecated: Do not use.
  2836. func (m *SetMasterAuthRequest) GetClusterId() string {
  2837. if m != nil {
  2838. return m.ClusterId
  2839. }
  2840. return ""
  2841. }
  2842. func (m *SetMasterAuthRequest) GetAction() SetMasterAuthRequest_Action {
  2843. if m != nil {
  2844. return m.Action
  2845. }
  2846. return SetMasterAuthRequest_UNKNOWN
  2847. }
  2848. func (m *SetMasterAuthRequest) GetUpdate() *MasterAuth {
  2849. if m != nil {
  2850. return m.Update
  2851. }
  2852. return nil
  2853. }
  2854. func (m *SetMasterAuthRequest) GetName() string {
  2855. if m != nil {
  2856. return m.Name
  2857. }
  2858. return ""
  2859. }
  2860. // DeleteClusterRequest deletes a cluster.
  2861. type DeleteClusterRequest struct {
  2862. // Deprecated. The Google Developers Console [project ID or project
  2863. // number](https://support.google.com/cloud/answer/6158840).
  2864. // This field has been deprecated and replaced by the name field.
  2865. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  2866. // Deprecated. The name of the Google Compute Engine
  2867. // [zone](/compute/docs/zones#available) in which the cluster
  2868. // resides.
  2869. // This field has been deprecated and replaced by the name field.
  2870. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  2871. // Deprecated. The name of the cluster to delete.
  2872. // This field has been deprecated and replaced by the name field.
  2873. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` // Deprecated: Do not use.
  2874. // The name (project, location, cluster) of the cluster to delete.
  2875. // Specified in the format 'projects/*/locations/*/clusters/*'.
  2876. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
  2877. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2878. XXX_unrecognized []byte `json:"-"`
  2879. XXX_sizecache int32 `json:"-"`
  2880. }
  2881. func (m *DeleteClusterRequest) Reset() { *m = DeleteClusterRequest{} }
  2882. func (m *DeleteClusterRequest) String() string { return proto.CompactTextString(m) }
  2883. func (*DeleteClusterRequest) ProtoMessage() {}
  2884. func (*DeleteClusterRequest) Descriptor() ([]byte, []int) {
  2885. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{27}
  2886. }
  2887. func (m *DeleteClusterRequest) XXX_Unmarshal(b []byte) error {
  2888. return xxx_messageInfo_DeleteClusterRequest.Unmarshal(m, b)
  2889. }
  2890. func (m *DeleteClusterRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2891. return xxx_messageInfo_DeleteClusterRequest.Marshal(b, m, deterministic)
  2892. }
  2893. func (dst *DeleteClusterRequest) XXX_Merge(src proto.Message) {
  2894. xxx_messageInfo_DeleteClusterRequest.Merge(dst, src)
  2895. }
  2896. func (m *DeleteClusterRequest) XXX_Size() int {
  2897. return xxx_messageInfo_DeleteClusterRequest.Size(m)
  2898. }
  2899. func (m *DeleteClusterRequest) XXX_DiscardUnknown() {
  2900. xxx_messageInfo_DeleteClusterRequest.DiscardUnknown(m)
  2901. }
  2902. var xxx_messageInfo_DeleteClusterRequest proto.InternalMessageInfo
  2903. // Deprecated: Do not use.
  2904. func (m *DeleteClusterRequest) GetProjectId() string {
  2905. if m != nil {
  2906. return m.ProjectId
  2907. }
  2908. return ""
  2909. }
  2910. // Deprecated: Do not use.
  2911. func (m *DeleteClusterRequest) GetZone() string {
  2912. if m != nil {
  2913. return m.Zone
  2914. }
  2915. return ""
  2916. }
  2917. // Deprecated: Do not use.
  2918. func (m *DeleteClusterRequest) GetClusterId() string {
  2919. if m != nil {
  2920. return m.ClusterId
  2921. }
  2922. return ""
  2923. }
  2924. func (m *DeleteClusterRequest) GetName() string {
  2925. if m != nil {
  2926. return m.Name
  2927. }
  2928. return ""
  2929. }
  2930. // ListClustersRequest lists clusters.
  2931. type ListClustersRequest struct {
  2932. // Deprecated. The Google Developers Console [project ID or project
  2933. // number](https://support.google.com/cloud/answer/6158840).
  2934. // This field has been deprecated and replaced by the parent field.
  2935. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  2936. // Deprecated. The name of the Google Compute Engine
  2937. // [zone](/compute/docs/zones#available) in which the cluster
  2938. // resides, or "-" for all zones.
  2939. // This field has been deprecated and replaced by the parent field.
  2940. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  2941. // The parent (project and location) where the clusters will be listed.
  2942. // Specified in the format 'projects/*/locations/*'.
  2943. // Location "-" matches all zones and all regions.
  2944. Parent string `protobuf:"bytes,4,opt,name=parent,proto3" json:"parent,omitempty"`
  2945. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2946. XXX_unrecognized []byte `json:"-"`
  2947. XXX_sizecache int32 `json:"-"`
  2948. }
  2949. func (m *ListClustersRequest) Reset() { *m = ListClustersRequest{} }
  2950. func (m *ListClustersRequest) String() string { return proto.CompactTextString(m) }
  2951. func (*ListClustersRequest) ProtoMessage() {}
  2952. func (*ListClustersRequest) Descriptor() ([]byte, []int) {
  2953. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{28}
  2954. }
  2955. func (m *ListClustersRequest) XXX_Unmarshal(b []byte) error {
  2956. return xxx_messageInfo_ListClustersRequest.Unmarshal(m, b)
  2957. }
  2958. func (m *ListClustersRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2959. return xxx_messageInfo_ListClustersRequest.Marshal(b, m, deterministic)
  2960. }
  2961. func (dst *ListClustersRequest) XXX_Merge(src proto.Message) {
  2962. xxx_messageInfo_ListClustersRequest.Merge(dst, src)
  2963. }
  2964. func (m *ListClustersRequest) XXX_Size() int {
  2965. return xxx_messageInfo_ListClustersRequest.Size(m)
  2966. }
  2967. func (m *ListClustersRequest) XXX_DiscardUnknown() {
  2968. xxx_messageInfo_ListClustersRequest.DiscardUnknown(m)
  2969. }
  2970. var xxx_messageInfo_ListClustersRequest proto.InternalMessageInfo
  2971. // Deprecated: Do not use.
  2972. func (m *ListClustersRequest) GetProjectId() string {
  2973. if m != nil {
  2974. return m.ProjectId
  2975. }
  2976. return ""
  2977. }
  2978. // Deprecated: Do not use.
  2979. func (m *ListClustersRequest) GetZone() string {
  2980. if m != nil {
  2981. return m.Zone
  2982. }
  2983. return ""
  2984. }
  2985. func (m *ListClustersRequest) GetParent() string {
  2986. if m != nil {
  2987. return m.Parent
  2988. }
  2989. return ""
  2990. }
  2991. // ListClustersResponse is the result of ListClustersRequest.
  2992. type ListClustersResponse struct {
  2993. // A list of clusters in the project in the specified zone, or
  2994. // across all ones.
  2995. Clusters []*Cluster `protobuf:"bytes,1,rep,name=clusters,proto3" json:"clusters,omitempty"`
  2996. // If any zones are listed here, the list of clusters returned
  2997. // may be missing those zones.
  2998. MissingZones []string `protobuf:"bytes,2,rep,name=missing_zones,json=missingZones,proto3" json:"missing_zones,omitempty"`
  2999. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3000. XXX_unrecognized []byte `json:"-"`
  3001. XXX_sizecache int32 `json:"-"`
  3002. }
  3003. func (m *ListClustersResponse) Reset() { *m = ListClustersResponse{} }
  3004. func (m *ListClustersResponse) String() string { return proto.CompactTextString(m) }
  3005. func (*ListClustersResponse) ProtoMessage() {}
  3006. func (*ListClustersResponse) Descriptor() ([]byte, []int) {
  3007. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{29}
  3008. }
  3009. func (m *ListClustersResponse) XXX_Unmarshal(b []byte) error {
  3010. return xxx_messageInfo_ListClustersResponse.Unmarshal(m, b)
  3011. }
  3012. func (m *ListClustersResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3013. return xxx_messageInfo_ListClustersResponse.Marshal(b, m, deterministic)
  3014. }
  3015. func (dst *ListClustersResponse) XXX_Merge(src proto.Message) {
  3016. xxx_messageInfo_ListClustersResponse.Merge(dst, src)
  3017. }
  3018. func (m *ListClustersResponse) XXX_Size() int {
  3019. return xxx_messageInfo_ListClustersResponse.Size(m)
  3020. }
  3021. func (m *ListClustersResponse) XXX_DiscardUnknown() {
  3022. xxx_messageInfo_ListClustersResponse.DiscardUnknown(m)
  3023. }
  3024. var xxx_messageInfo_ListClustersResponse proto.InternalMessageInfo
  3025. func (m *ListClustersResponse) GetClusters() []*Cluster {
  3026. if m != nil {
  3027. return m.Clusters
  3028. }
  3029. return nil
  3030. }
  3031. func (m *ListClustersResponse) GetMissingZones() []string {
  3032. if m != nil {
  3033. return m.MissingZones
  3034. }
  3035. return nil
  3036. }
  3037. // GetOperationRequest gets a single operation.
  3038. type GetOperationRequest struct {
  3039. // Deprecated. The Google Developers Console [project ID or project
  3040. // number](https://support.google.com/cloud/answer/6158840).
  3041. // This field has been deprecated and replaced by the name field.
  3042. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  3043. // Deprecated. The name of the Google Compute Engine
  3044. // [zone](/compute/docs/zones#available) in which the cluster
  3045. // resides.
  3046. // This field has been deprecated and replaced by the name field.
  3047. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  3048. // Deprecated. The server-assigned `name` of the operation.
  3049. // This field has been deprecated and replaced by the name field.
  3050. OperationId string `protobuf:"bytes,3,opt,name=operation_id,json=operationId,proto3" json:"operation_id,omitempty"` // Deprecated: Do not use.
  3051. // The name (project, location, operation id) of the operation to get.
  3052. // Specified in the format 'projects/*/locations/*/operations/*'.
  3053. Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
  3054. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3055. XXX_unrecognized []byte `json:"-"`
  3056. XXX_sizecache int32 `json:"-"`
  3057. }
  3058. func (m *GetOperationRequest) Reset() { *m = GetOperationRequest{} }
  3059. func (m *GetOperationRequest) String() string { return proto.CompactTextString(m) }
  3060. func (*GetOperationRequest) ProtoMessage() {}
  3061. func (*GetOperationRequest) Descriptor() ([]byte, []int) {
  3062. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{30}
  3063. }
  3064. func (m *GetOperationRequest) XXX_Unmarshal(b []byte) error {
  3065. return xxx_messageInfo_GetOperationRequest.Unmarshal(m, b)
  3066. }
  3067. func (m *GetOperationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3068. return xxx_messageInfo_GetOperationRequest.Marshal(b, m, deterministic)
  3069. }
  3070. func (dst *GetOperationRequest) XXX_Merge(src proto.Message) {
  3071. xxx_messageInfo_GetOperationRequest.Merge(dst, src)
  3072. }
  3073. func (m *GetOperationRequest) XXX_Size() int {
  3074. return xxx_messageInfo_GetOperationRequest.Size(m)
  3075. }
  3076. func (m *GetOperationRequest) XXX_DiscardUnknown() {
  3077. xxx_messageInfo_GetOperationRequest.DiscardUnknown(m)
  3078. }
  3079. var xxx_messageInfo_GetOperationRequest proto.InternalMessageInfo
  3080. // Deprecated: Do not use.
  3081. func (m *GetOperationRequest) GetProjectId() string {
  3082. if m != nil {
  3083. return m.ProjectId
  3084. }
  3085. return ""
  3086. }
  3087. // Deprecated: Do not use.
  3088. func (m *GetOperationRequest) GetZone() string {
  3089. if m != nil {
  3090. return m.Zone
  3091. }
  3092. return ""
  3093. }
  3094. // Deprecated: Do not use.
  3095. func (m *GetOperationRequest) GetOperationId() string {
  3096. if m != nil {
  3097. return m.OperationId
  3098. }
  3099. return ""
  3100. }
  3101. func (m *GetOperationRequest) GetName() string {
  3102. if m != nil {
  3103. return m.Name
  3104. }
  3105. return ""
  3106. }
  3107. // ListOperationsRequest lists operations.
  3108. type ListOperationsRequest struct {
  3109. // Deprecated. The Google Developers Console [project ID or project
  3110. // number](https://support.google.com/cloud/answer/6158840).
  3111. // This field has been deprecated and replaced by the parent field.
  3112. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  3113. // Deprecated. The name of the Google Compute Engine
  3114. // [zone](/compute/docs/zones#available) to return operations for, or `-` for
  3115. // all zones. This field has been deprecated and replaced by the parent field.
  3116. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  3117. // The parent (project and location) where the operations will be listed.
  3118. // Specified in the format 'projects/*/locations/*'.
  3119. // Location "-" matches all zones and all regions.
  3120. Parent string `protobuf:"bytes,4,opt,name=parent,proto3" json:"parent,omitempty"`
  3121. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3122. XXX_unrecognized []byte `json:"-"`
  3123. XXX_sizecache int32 `json:"-"`
  3124. }
  3125. func (m *ListOperationsRequest) Reset() { *m = ListOperationsRequest{} }
  3126. func (m *ListOperationsRequest) String() string { return proto.CompactTextString(m) }
  3127. func (*ListOperationsRequest) ProtoMessage() {}
  3128. func (*ListOperationsRequest) Descriptor() ([]byte, []int) {
  3129. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{31}
  3130. }
  3131. func (m *ListOperationsRequest) XXX_Unmarshal(b []byte) error {
  3132. return xxx_messageInfo_ListOperationsRequest.Unmarshal(m, b)
  3133. }
  3134. func (m *ListOperationsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3135. return xxx_messageInfo_ListOperationsRequest.Marshal(b, m, deterministic)
  3136. }
  3137. func (dst *ListOperationsRequest) XXX_Merge(src proto.Message) {
  3138. xxx_messageInfo_ListOperationsRequest.Merge(dst, src)
  3139. }
  3140. func (m *ListOperationsRequest) XXX_Size() int {
  3141. return xxx_messageInfo_ListOperationsRequest.Size(m)
  3142. }
  3143. func (m *ListOperationsRequest) XXX_DiscardUnknown() {
  3144. xxx_messageInfo_ListOperationsRequest.DiscardUnknown(m)
  3145. }
  3146. var xxx_messageInfo_ListOperationsRequest proto.InternalMessageInfo
  3147. // Deprecated: Do not use.
  3148. func (m *ListOperationsRequest) GetProjectId() string {
  3149. if m != nil {
  3150. return m.ProjectId
  3151. }
  3152. return ""
  3153. }
  3154. // Deprecated: Do not use.
  3155. func (m *ListOperationsRequest) GetZone() string {
  3156. if m != nil {
  3157. return m.Zone
  3158. }
  3159. return ""
  3160. }
  3161. func (m *ListOperationsRequest) GetParent() string {
  3162. if m != nil {
  3163. return m.Parent
  3164. }
  3165. return ""
  3166. }
  3167. // CancelOperationRequest cancels a single operation.
  3168. type CancelOperationRequest struct {
  3169. // Deprecated. The Google Developers Console [project ID or project
  3170. // number](https://support.google.com/cloud/answer/6158840).
  3171. // This field has been deprecated and replaced by the name field.
  3172. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  3173. // Deprecated. The name of the Google Compute Engine
  3174. // [zone](/compute/docs/zones#available) in which the operation resides.
  3175. // This field has been deprecated and replaced by the name field.
  3176. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  3177. // Deprecated. The server-assigned `name` of the operation.
  3178. // This field has been deprecated and replaced by the name field.
  3179. OperationId string `protobuf:"bytes,3,opt,name=operation_id,json=operationId,proto3" json:"operation_id,omitempty"` // Deprecated: Do not use.
  3180. // The name (project, location, operation id) of the operation to cancel.
  3181. // Specified in the format 'projects/*/locations/*/operations/*'.
  3182. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
  3183. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3184. XXX_unrecognized []byte `json:"-"`
  3185. XXX_sizecache int32 `json:"-"`
  3186. }
  3187. func (m *CancelOperationRequest) Reset() { *m = CancelOperationRequest{} }
  3188. func (m *CancelOperationRequest) String() string { return proto.CompactTextString(m) }
  3189. func (*CancelOperationRequest) ProtoMessage() {}
  3190. func (*CancelOperationRequest) Descriptor() ([]byte, []int) {
  3191. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{32}
  3192. }
  3193. func (m *CancelOperationRequest) XXX_Unmarshal(b []byte) error {
  3194. return xxx_messageInfo_CancelOperationRequest.Unmarshal(m, b)
  3195. }
  3196. func (m *CancelOperationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3197. return xxx_messageInfo_CancelOperationRequest.Marshal(b, m, deterministic)
  3198. }
  3199. func (dst *CancelOperationRequest) XXX_Merge(src proto.Message) {
  3200. xxx_messageInfo_CancelOperationRequest.Merge(dst, src)
  3201. }
  3202. func (m *CancelOperationRequest) XXX_Size() int {
  3203. return xxx_messageInfo_CancelOperationRequest.Size(m)
  3204. }
  3205. func (m *CancelOperationRequest) XXX_DiscardUnknown() {
  3206. xxx_messageInfo_CancelOperationRequest.DiscardUnknown(m)
  3207. }
  3208. var xxx_messageInfo_CancelOperationRequest proto.InternalMessageInfo
  3209. // Deprecated: Do not use.
  3210. func (m *CancelOperationRequest) GetProjectId() string {
  3211. if m != nil {
  3212. return m.ProjectId
  3213. }
  3214. return ""
  3215. }
  3216. // Deprecated: Do not use.
  3217. func (m *CancelOperationRequest) GetZone() string {
  3218. if m != nil {
  3219. return m.Zone
  3220. }
  3221. return ""
  3222. }
  3223. // Deprecated: Do not use.
  3224. func (m *CancelOperationRequest) GetOperationId() string {
  3225. if m != nil {
  3226. return m.OperationId
  3227. }
  3228. return ""
  3229. }
  3230. func (m *CancelOperationRequest) GetName() string {
  3231. if m != nil {
  3232. return m.Name
  3233. }
  3234. return ""
  3235. }
  3236. // ListOperationsResponse is the result of ListOperationsRequest.
  3237. type ListOperationsResponse struct {
  3238. // A list of operations in the project in the specified zone.
  3239. Operations []*Operation `protobuf:"bytes,1,rep,name=operations,proto3" json:"operations,omitempty"`
  3240. // If any zones are listed here, the list of operations returned
  3241. // may be missing the operations from those zones.
  3242. MissingZones []string `protobuf:"bytes,2,rep,name=missing_zones,json=missingZones,proto3" json:"missing_zones,omitempty"`
  3243. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3244. XXX_unrecognized []byte `json:"-"`
  3245. XXX_sizecache int32 `json:"-"`
  3246. }
  3247. func (m *ListOperationsResponse) Reset() { *m = ListOperationsResponse{} }
  3248. func (m *ListOperationsResponse) String() string { return proto.CompactTextString(m) }
  3249. func (*ListOperationsResponse) ProtoMessage() {}
  3250. func (*ListOperationsResponse) Descriptor() ([]byte, []int) {
  3251. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{33}
  3252. }
  3253. func (m *ListOperationsResponse) XXX_Unmarshal(b []byte) error {
  3254. return xxx_messageInfo_ListOperationsResponse.Unmarshal(m, b)
  3255. }
  3256. func (m *ListOperationsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3257. return xxx_messageInfo_ListOperationsResponse.Marshal(b, m, deterministic)
  3258. }
  3259. func (dst *ListOperationsResponse) XXX_Merge(src proto.Message) {
  3260. xxx_messageInfo_ListOperationsResponse.Merge(dst, src)
  3261. }
  3262. func (m *ListOperationsResponse) XXX_Size() int {
  3263. return xxx_messageInfo_ListOperationsResponse.Size(m)
  3264. }
  3265. func (m *ListOperationsResponse) XXX_DiscardUnknown() {
  3266. xxx_messageInfo_ListOperationsResponse.DiscardUnknown(m)
  3267. }
  3268. var xxx_messageInfo_ListOperationsResponse proto.InternalMessageInfo
  3269. func (m *ListOperationsResponse) GetOperations() []*Operation {
  3270. if m != nil {
  3271. return m.Operations
  3272. }
  3273. return nil
  3274. }
  3275. func (m *ListOperationsResponse) GetMissingZones() []string {
  3276. if m != nil {
  3277. return m.MissingZones
  3278. }
  3279. return nil
  3280. }
  3281. // Gets the current Kubernetes Engine service configuration.
  3282. type GetServerConfigRequest struct {
  3283. // Deprecated. The Google Developers Console [project ID or project
  3284. // number](https://support.google.com/cloud/answer/6158840).
  3285. // This field has been deprecated and replaced by the name field.
  3286. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  3287. // Deprecated. The name of the Google Compute Engine
  3288. // [zone](/compute/docs/zones#available) to return operations for.
  3289. // This field has been deprecated and replaced by the name field.
  3290. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  3291. // The name (project and location) of the server config to get
  3292. // Specified in the format 'projects/*/locations/*'.
  3293. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
  3294. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3295. XXX_unrecognized []byte `json:"-"`
  3296. XXX_sizecache int32 `json:"-"`
  3297. }
  3298. func (m *GetServerConfigRequest) Reset() { *m = GetServerConfigRequest{} }
  3299. func (m *GetServerConfigRequest) String() string { return proto.CompactTextString(m) }
  3300. func (*GetServerConfigRequest) ProtoMessage() {}
  3301. func (*GetServerConfigRequest) Descriptor() ([]byte, []int) {
  3302. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{34}
  3303. }
  3304. func (m *GetServerConfigRequest) XXX_Unmarshal(b []byte) error {
  3305. return xxx_messageInfo_GetServerConfigRequest.Unmarshal(m, b)
  3306. }
  3307. func (m *GetServerConfigRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3308. return xxx_messageInfo_GetServerConfigRequest.Marshal(b, m, deterministic)
  3309. }
  3310. func (dst *GetServerConfigRequest) XXX_Merge(src proto.Message) {
  3311. xxx_messageInfo_GetServerConfigRequest.Merge(dst, src)
  3312. }
  3313. func (m *GetServerConfigRequest) XXX_Size() int {
  3314. return xxx_messageInfo_GetServerConfigRequest.Size(m)
  3315. }
  3316. func (m *GetServerConfigRequest) XXX_DiscardUnknown() {
  3317. xxx_messageInfo_GetServerConfigRequest.DiscardUnknown(m)
  3318. }
  3319. var xxx_messageInfo_GetServerConfigRequest proto.InternalMessageInfo
  3320. // Deprecated: Do not use.
  3321. func (m *GetServerConfigRequest) GetProjectId() string {
  3322. if m != nil {
  3323. return m.ProjectId
  3324. }
  3325. return ""
  3326. }
  3327. // Deprecated: Do not use.
  3328. func (m *GetServerConfigRequest) GetZone() string {
  3329. if m != nil {
  3330. return m.Zone
  3331. }
  3332. return ""
  3333. }
  3334. func (m *GetServerConfigRequest) GetName() string {
  3335. if m != nil {
  3336. return m.Name
  3337. }
  3338. return ""
  3339. }
  3340. // Kubernetes Engine service configuration.
  3341. type ServerConfig struct {
  3342. // Version of Kubernetes the service deploys by default.
  3343. DefaultClusterVersion string `protobuf:"bytes,1,opt,name=default_cluster_version,json=defaultClusterVersion,proto3" json:"default_cluster_version,omitempty"`
  3344. // List of valid node upgrade target versions.
  3345. ValidNodeVersions []string `protobuf:"bytes,3,rep,name=valid_node_versions,json=validNodeVersions,proto3" json:"valid_node_versions,omitempty"`
  3346. // Default image type.
  3347. DefaultImageType string `protobuf:"bytes,4,opt,name=default_image_type,json=defaultImageType,proto3" json:"default_image_type,omitempty"`
  3348. // List of valid image types.
  3349. ValidImageTypes []string `protobuf:"bytes,5,rep,name=valid_image_types,json=validImageTypes,proto3" json:"valid_image_types,omitempty"`
  3350. // List of valid master versions.
  3351. ValidMasterVersions []string `protobuf:"bytes,6,rep,name=valid_master_versions,json=validMasterVersions,proto3" json:"valid_master_versions,omitempty"`
  3352. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3353. XXX_unrecognized []byte `json:"-"`
  3354. XXX_sizecache int32 `json:"-"`
  3355. }
  3356. func (m *ServerConfig) Reset() { *m = ServerConfig{} }
  3357. func (m *ServerConfig) String() string { return proto.CompactTextString(m) }
  3358. func (*ServerConfig) ProtoMessage() {}
  3359. func (*ServerConfig) Descriptor() ([]byte, []int) {
  3360. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{35}
  3361. }
  3362. func (m *ServerConfig) XXX_Unmarshal(b []byte) error {
  3363. return xxx_messageInfo_ServerConfig.Unmarshal(m, b)
  3364. }
  3365. func (m *ServerConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3366. return xxx_messageInfo_ServerConfig.Marshal(b, m, deterministic)
  3367. }
  3368. func (dst *ServerConfig) XXX_Merge(src proto.Message) {
  3369. xxx_messageInfo_ServerConfig.Merge(dst, src)
  3370. }
  3371. func (m *ServerConfig) XXX_Size() int {
  3372. return xxx_messageInfo_ServerConfig.Size(m)
  3373. }
  3374. func (m *ServerConfig) XXX_DiscardUnknown() {
  3375. xxx_messageInfo_ServerConfig.DiscardUnknown(m)
  3376. }
  3377. var xxx_messageInfo_ServerConfig proto.InternalMessageInfo
  3378. func (m *ServerConfig) GetDefaultClusterVersion() string {
  3379. if m != nil {
  3380. return m.DefaultClusterVersion
  3381. }
  3382. return ""
  3383. }
  3384. func (m *ServerConfig) GetValidNodeVersions() []string {
  3385. if m != nil {
  3386. return m.ValidNodeVersions
  3387. }
  3388. return nil
  3389. }
  3390. func (m *ServerConfig) GetDefaultImageType() string {
  3391. if m != nil {
  3392. return m.DefaultImageType
  3393. }
  3394. return ""
  3395. }
  3396. func (m *ServerConfig) GetValidImageTypes() []string {
  3397. if m != nil {
  3398. return m.ValidImageTypes
  3399. }
  3400. return nil
  3401. }
  3402. func (m *ServerConfig) GetValidMasterVersions() []string {
  3403. if m != nil {
  3404. return m.ValidMasterVersions
  3405. }
  3406. return nil
  3407. }
  3408. // CreateNodePoolRequest creates a node pool for a cluster.
  3409. type CreateNodePoolRequest struct {
  3410. // Deprecated. The Google Developers Console [project ID or project
  3411. // number](https://developers.google.com/console/help/new/#projectnumber).
  3412. // This field has been deprecated and replaced by the parent field.
  3413. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  3414. // Deprecated. The name of the Google Compute Engine
  3415. // [zone](/compute/docs/zones#available) in which the cluster
  3416. // resides.
  3417. // This field has been deprecated and replaced by the parent field.
  3418. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  3419. // Deprecated. The name of the cluster.
  3420. // This field has been deprecated and replaced by the parent field.
  3421. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` // Deprecated: Do not use.
  3422. // The node pool to create.
  3423. NodePool *NodePool `protobuf:"bytes,4,opt,name=node_pool,json=nodePool,proto3" json:"node_pool,omitempty"`
  3424. // The parent (project, location, cluster id) where the node pool will be
  3425. // created. Specified in the format
  3426. // 'projects/*/locations/*/clusters/*'.
  3427. Parent string `protobuf:"bytes,6,opt,name=parent,proto3" json:"parent,omitempty"`
  3428. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3429. XXX_unrecognized []byte `json:"-"`
  3430. XXX_sizecache int32 `json:"-"`
  3431. }
  3432. func (m *CreateNodePoolRequest) Reset() { *m = CreateNodePoolRequest{} }
  3433. func (m *CreateNodePoolRequest) String() string { return proto.CompactTextString(m) }
  3434. func (*CreateNodePoolRequest) ProtoMessage() {}
  3435. func (*CreateNodePoolRequest) Descriptor() ([]byte, []int) {
  3436. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{36}
  3437. }
  3438. func (m *CreateNodePoolRequest) XXX_Unmarshal(b []byte) error {
  3439. return xxx_messageInfo_CreateNodePoolRequest.Unmarshal(m, b)
  3440. }
  3441. func (m *CreateNodePoolRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3442. return xxx_messageInfo_CreateNodePoolRequest.Marshal(b, m, deterministic)
  3443. }
  3444. func (dst *CreateNodePoolRequest) XXX_Merge(src proto.Message) {
  3445. xxx_messageInfo_CreateNodePoolRequest.Merge(dst, src)
  3446. }
  3447. func (m *CreateNodePoolRequest) XXX_Size() int {
  3448. return xxx_messageInfo_CreateNodePoolRequest.Size(m)
  3449. }
  3450. func (m *CreateNodePoolRequest) XXX_DiscardUnknown() {
  3451. xxx_messageInfo_CreateNodePoolRequest.DiscardUnknown(m)
  3452. }
  3453. var xxx_messageInfo_CreateNodePoolRequest proto.InternalMessageInfo
  3454. // Deprecated: Do not use.
  3455. func (m *CreateNodePoolRequest) GetProjectId() string {
  3456. if m != nil {
  3457. return m.ProjectId
  3458. }
  3459. return ""
  3460. }
  3461. // Deprecated: Do not use.
  3462. func (m *CreateNodePoolRequest) GetZone() string {
  3463. if m != nil {
  3464. return m.Zone
  3465. }
  3466. return ""
  3467. }
  3468. // Deprecated: Do not use.
  3469. func (m *CreateNodePoolRequest) GetClusterId() string {
  3470. if m != nil {
  3471. return m.ClusterId
  3472. }
  3473. return ""
  3474. }
  3475. func (m *CreateNodePoolRequest) GetNodePool() *NodePool {
  3476. if m != nil {
  3477. return m.NodePool
  3478. }
  3479. return nil
  3480. }
  3481. func (m *CreateNodePoolRequest) GetParent() string {
  3482. if m != nil {
  3483. return m.Parent
  3484. }
  3485. return ""
  3486. }
  3487. // DeleteNodePoolRequest deletes a node pool for a cluster.
  3488. type DeleteNodePoolRequest struct {
  3489. // Deprecated. The Google Developers Console [project ID or project
  3490. // number](https://developers.google.com/console/help/new/#projectnumber).
  3491. // This field has been deprecated and replaced by the name field.
  3492. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  3493. // Deprecated. The name of the Google Compute Engine
  3494. // [zone](/compute/docs/zones#available) in which the cluster
  3495. // resides.
  3496. // This field has been deprecated and replaced by the name field.
  3497. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  3498. // Deprecated. The name of the cluster.
  3499. // This field has been deprecated and replaced by the name field.
  3500. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` // Deprecated: Do not use.
  3501. // Deprecated. The name of the node pool to delete.
  3502. // This field has been deprecated and replaced by the name field.
  3503. NodePoolId string `protobuf:"bytes,4,opt,name=node_pool_id,json=nodePoolId,proto3" json:"node_pool_id,omitempty"` // Deprecated: Do not use.
  3504. // The name (project, location, cluster, node pool id) of the node pool to
  3505. // delete. Specified in the format
  3506. // 'projects/*/locations/*/clusters/*/nodePools/*'.
  3507. Name string `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
  3508. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3509. XXX_unrecognized []byte `json:"-"`
  3510. XXX_sizecache int32 `json:"-"`
  3511. }
  3512. func (m *DeleteNodePoolRequest) Reset() { *m = DeleteNodePoolRequest{} }
  3513. func (m *DeleteNodePoolRequest) String() string { return proto.CompactTextString(m) }
  3514. func (*DeleteNodePoolRequest) ProtoMessage() {}
  3515. func (*DeleteNodePoolRequest) Descriptor() ([]byte, []int) {
  3516. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{37}
  3517. }
  3518. func (m *DeleteNodePoolRequest) XXX_Unmarshal(b []byte) error {
  3519. return xxx_messageInfo_DeleteNodePoolRequest.Unmarshal(m, b)
  3520. }
  3521. func (m *DeleteNodePoolRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3522. return xxx_messageInfo_DeleteNodePoolRequest.Marshal(b, m, deterministic)
  3523. }
  3524. func (dst *DeleteNodePoolRequest) XXX_Merge(src proto.Message) {
  3525. xxx_messageInfo_DeleteNodePoolRequest.Merge(dst, src)
  3526. }
  3527. func (m *DeleteNodePoolRequest) XXX_Size() int {
  3528. return xxx_messageInfo_DeleteNodePoolRequest.Size(m)
  3529. }
  3530. func (m *DeleteNodePoolRequest) XXX_DiscardUnknown() {
  3531. xxx_messageInfo_DeleteNodePoolRequest.DiscardUnknown(m)
  3532. }
  3533. var xxx_messageInfo_DeleteNodePoolRequest proto.InternalMessageInfo
  3534. // Deprecated: Do not use.
  3535. func (m *DeleteNodePoolRequest) GetProjectId() string {
  3536. if m != nil {
  3537. return m.ProjectId
  3538. }
  3539. return ""
  3540. }
  3541. // Deprecated: Do not use.
  3542. func (m *DeleteNodePoolRequest) GetZone() string {
  3543. if m != nil {
  3544. return m.Zone
  3545. }
  3546. return ""
  3547. }
  3548. // Deprecated: Do not use.
  3549. func (m *DeleteNodePoolRequest) GetClusterId() string {
  3550. if m != nil {
  3551. return m.ClusterId
  3552. }
  3553. return ""
  3554. }
  3555. // Deprecated: Do not use.
  3556. func (m *DeleteNodePoolRequest) GetNodePoolId() string {
  3557. if m != nil {
  3558. return m.NodePoolId
  3559. }
  3560. return ""
  3561. }
  3562. func (m *DeleteNodePoolRequest) GetName() string {
  3563. if m != nil {
  3564. return m.Name
  3565. }
  3566. return ""
  3567. }
  3568. // ListNodePoolsRequest lists the node pool(s) for a cluster.
  3569. type ListNodePoolsRequest struct {
  3570. // Deprecated. The Google Developers Console [project ID or project
  3571. // number](https://developers.google.com/console/help/new/#projectnumber).
  3572. // This field has been deprecated and replaced by the parent field.
  3573. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  3574. // Deprecated. The name of the Google Compute Engine
  3575. // [zone](/compute/docs/zones#available) in which the cluster
  3576. // resides.
  3577. // This field has been deprecated and replaced by the parent field.
  3578. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  3579. // Deprecated. The name of the cluster.
  3580. // This field has been deprecated and replaced by the parent field.
  3581. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` // Deprecated: Do not use.
  3582. // The parent (project, location, cluster id) where the node pools will be
  3583. // listed. Specified in the format 'projects/*/locations/*/clusters/*'.
  3584. Parent string `protobuf:"bytes,5,opt,name=parent,proto3" json:"parent,omitempty"`
  3585. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3586. XXX_unrecognized []byte `json:"-"`
  3587. XXX_sizecache int32 `json:"-"`
  3588. }
  3589. func (m *ListNodePoolsRequest) Reset() { *m = ListNodePoolsRequest{} }
  3590. func (m *ListNodePoolsRequest) String() string { return proto.CompactTextString(m) }
  3591. func (*ListNodePoolsRequest) ProtoMessage() {}
  3592. func (*ListNodePoolsRequest) Descriptor() ([]byte, []int) {
  3593. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{38}
  3594. }
  3595. func (m *ListNodePoolsRequest) XXX_Unmarshal(b []byte) error {
  3596. return xxx_messageInfo_ListNodePoolsRequest.Unmarshal(m, b)
  3597. }
  3598. func (m *ListNodePoolsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3599. return xxx_messageInfo_ListNodePoolsRequest.Marshal(b, m, deterministic)
  3600. }
  3601. func (dst *ListNodePoolsRequest) XXX_Merge(src proto.Message) {
  3602. xxx_messageInfo_ListNodePoolsRequest.Merge(dst, src)
  3603. }
  3604. func (m *ListNodePoolsRequest) XXX_Size() int {
  3605. return xxx_messageInfo_ListNodePoolsRequest.Size(m)
  3606. }
  3607. func (m *ListNodePoolsRequest) XXX_DiscardUnknown() {
  3608. xxx_messageInfo_ListNodePoolsRequest.DiscardUnknown(m)
  3609. }
  3610. var xxx_messageInfo_ListNodePoolsRequest proto.InternalMessageInfo
  3611. // Deprecated: Do not use.
  3612. func (m *ListNodePoolsRequest) GetProjectId() string {
  3613. if m != nil {
  3614. return m.ProjectId
  3615. }
  3616. return ""
  3617. }
  3618. // Deprecated: Do not use.
  3619. func (m *ListNodePoolsRequest) GetZone() string {
  3620. if m != nil {
  3621. return m.Zone
  3622. }
  3623. return ""
  3624. }
  3625. // Deprecated: Do not use.
  3626. func (m *ListNodePoolsRequest) GetClusterId() string {
  3627. if m != nil {
  3628. return m.ClusterId
  3629. }
  3630. return ""
  3631. }
  3632. func (m *ListNodePoolsRequest) GetParent() string {
  3633. if m != nil {
  3634. return m.Parent
  3635. }
  3636. return ""
  3637. }
  3638. // GetNodePoolRequest retrieves a node pool for a cluster.
  3639. type GetNodePoolRequest struct {
  3640. // Deprecated. The Google Developers Console [project ID or project
  3641. // number](https://developers.google.com/console/help/new/#projectnumber).
  3642. // This field has been deprecated and replaced by the name field.
  3643. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  3644. // Deprecated. The name of the Google Compute Engine
  3645. // [zone](/compute/docs/zones#available) in which the cluster
  3646. // resides.
  3647. // This field has been deprecated and replaced by the name field.
  3648. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  3649. // Deprecated. The name of the cluster.
  3650. // This field has been deprecated and replaced by the name field.
  3651. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` // Deprecated: Do not use.
  3652. // Deprecated. The name of the node pool.
  3653. // This field has been deprecated and replaced by the name field.
  3654. NodePoolId string `protobuf:"bytes,4,opt,name=node_pool_id,json=nodePoolId,proto3" json:"node_pool_id,omitempty"` // Deprecated: Do not use.
  3655. // The name (project, location, cluster, node pool id) of the node pool to
  3656. // get. Specified in the format
  3657. // 'projects/*/locations/*/clusters/*/nodePools/*'.
  3658. Name string `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
  3659. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3660. XXX_unrecognized []byte `json:"-"`
  3661. XXX_sizecache int32 `json:"-"`
  3662. }
  3663. func (m *GetNodePoolRequest) Reset() { *m = GetNodePoolRequest{} }
  3664. func (m *GetNodePoolRequest) String() string { return proto.CompactTextString(m) }
  3665. func (*GetNodePoolRequest) ProtoMessage() {}
  3666. func (*GetNodePoolRequest) Descriptor() ([]byte, []int) {
  3667. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{39}
  3668. }
  3669. func (m *GetNodePoolRequest) XXX_Unmarshal(b []byte) error {
  3670. return xxx_messageInfo_GetNodePoolRequest.Unmarshal(m, b)
  3671. }
  3672. func (m *GetNodePoolRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3673. return xxx_messageInfo_GetNodePoolRequest.Marshal(b, m, deterministic)
  3674. }
  3675. func (dst *GetNodePoolRequest) XXX_Merge(src proto.Message) {
  3676. xxx_messageInfo_GetNodePoolRequest.Merge(dst, src)
  3677. }
  3678. func (m *GetNodePoolRequest) XXX_Size() int {
  3679. return xxx_messageInfo_GetNodePoolRequest.Size(m)
  3680. }
  3681. func (m *GetNodePoolRequest) XXX_DiscardUnknown() {
  3682. xxx_messageInfo_GetNodePoolRequest.DiscardUnknown(m)
  3683. }
  3684. var xxx_messageInfo_GetNodePoolRequest proto.InternalMessageInfo
  3685. // Deprecated: Do not use.
  3686. func (m *GetNodePoolRequest) GetProjectId() string {
  3687. if m != nil {
  3688. return m.ProjectId
  3689. }
  3690. return ""
  3691. }
  3692. // Deprecated: Do not use.
  3693. func (m *GetNodePoolRequest) GetZone() string {
  3694. if m != nil {
  3695. return m.Zone
  3696. }
  3697. return ""
  3698. }
  3699. // Deprecated: Do not use.
  3700. func (m *GetNodePoolRequest) GetClusterId() string {
  3701. if m != nil {
  3702. return m.ClusterId
  3703. }
  3704. return ""
  3705. }
  3706. // Deprecated: Do not use.
  3707. func (m *GetNodePoolRequest) GetNodePoolId() string {
  3708. if m != nil {
  3709. return m.NodePoolId
  3710. }
  3711. return ""
  3712. }
  3713. func (m *GetNodePoolRequest) GetName() string {
  3714. if m != nil {
  3715. return m.Name
  3716. }
  3717. return ""
  3718. }
  3719. // NodePool contains the name and configuration for a cluster's node pool.
  3720. // Node pools are a set of nodes (i.e. VM's), with a common configuration and
  3721. // specification, under the control of the cluster master. They may have a set
  3722. // of Kubernetes labels applied to them, which may be used to reference them
  3723. // during pod scheduling. They may also be resized up or down, to accommodate
  3724. // the workload.
  3725. type NodePool struct {
  3726. // The name of the node pool.
  3727. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  3728. // The node configuration of the pool.
  3729. Config *NodeConfig `protobuf:"bytes,2,opt,name=config,proto3" json:"config,omitempty"`
  3730. // The initial node count for the pool. You must ensure that your
  3731. // Compute Engine <a href="/compute/docs/resource-quotas">resource quota</a>
  3732. // is sufficient for this number of instances. You must also have available
  3733. // firewall and routes quota.
  3734. InitialNodeCount int32 `protobuf:"varint,3,opt,name=initial_node_count,json=initialNodeCount,proto3" json:"initial_node_count,omitempty"`
  3735. // [Output only] Server-defined URL for the resource.
  3736. SelfLink string `protobuf:"bytes,100,opt,name=self_link,json=selfLink,proto3" json:"self_link,omitempty"`
  3737. // The version of the Kubernetes of this node.
  3738. Version string `protobuf:"bytes,101,opt,name=version,proto3" json:"version,omitempty"`
  3739. // [Output only] The resource URLs of the [managed instance
  3740. // groups](/compute/docs/instance-groups/creating-groups-of-managed-instances)
  3741. // associated with this node pool.
  3742. InstanceGroupUrls []string `protobuf:"bytes,102,rep,name=instance_group_urls,json=instanceGroupUrls,proto3" json:"instance_group_urls,omitempty"`
  3743. // [Output only] The status of the nodes in this pool instance.
  3744. Status NodePool_Status `protobuf:"varint,103,opt,name=status,proto3,enum=google.container.v1.NodePool_Status" json:"status,omitempty"`
  3745. // [Output only] Additional information about the current status of this
  3746. // node pool instance, if available.
  3747. StatusMessage string `protobuf:"bytes,104,opt,name=status_message,json=statusMessage,proto3" json:"status_message,omitempty"`
  3748. // Autoscaler configuration for this NodePool. Autoscaler is enabled
  3749. // only if a valid configuration is present.
  3750. Autoscaling *NodePoolAutoscaling `protobuf:"bytes,4,opt,name=autoscaling,proto3" json:"autoscaling,omitempty"`
  3751. // NodeManagement configuration for this NodePool.
  3752. Management *NodeManagement `protobuf:"bytes,5,opt,name=management,proto3" json:"management,omitempty"`
  3753. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3754. XXX_unrecognized []byte `json:"-"`
  3755. XXX_sizecache int32 `json:"-"`
  3756. }
  3757. func (m *NodePool) Reset() { *m = NodePool{} }
  3758. func (m *NodePool) String() string { return proto.CompactTextString(m) }
  3759. func (*NodePool) ProtoMessage() {}
  3760. func (*NodePool) Descriptor() ([]byte, []int) {
  3761. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{40}
  3762. }
  3763. func (m *NodePool) XXX_Unmarshal(b []byte) error {
  3764. return xxx_messageInfo_NodePool.Unmarshal(m, b)
  3765. }
  3766. func (m *NodePool) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3767. return xxx_messageInfo_NodePool.Marshal(b, m, deterministic)
  3768. }
  3769. func (dst *NodePool) XXX_Merge(src proto.Message) {
  3770. xxx_messageInfo_NodePool.Merge(dst, src)
  3771. }
  3772. func (m *NodePool) XXX_Size() int {
  3773. return xxx_messageInfo_NodePool.Size(m)
  3774. }
  3775. func (m *NodePool) XXX_DiscardUnknown() {
  3776. xxx_messageInfo_NodePool.DiscardUnknown(m)
  3777. }
  3778. var xxx_messageInfo_NodePool proto.InternalMessageInfo
  3779. func (m *NodePool) GetName() string {
  3780. if m != nil {
  3781. return m.Name
  3782. }
  3783. return ""
  3784. }
  3785. func (m *NodePool) GetConfig() *NodeConfig {
  3786. if m != nil {
  3787. return m.Config
  3788. }
  3789. return nil
  3790. }
  3791. func (m *NodePool) GetInitialNodeCount() int32 {
  3792. if m != nil {
  3793. return m.InitialNodeCount
  3794. }
  3795. return 0
  3796. }
  3797. func (m *NodePool) GetSelfLink() string {
  3798. if m != nil {
  3799. return m.SelfLink
  3800. }
  3801. return ""
  3802. }
  3803. func (m *NodePool) GetVersion() string {
  3804. if m != nil {
  3805. return m.Version
  3806. }
  3807. return ""
  3808. }
  3809. func (m *NodePool) GetInstanceGroupUrls() []string {
  3810. if m != nil {
  3811. return m.InstanceGroupUrls
  3812. }
  3813. return nil
  3814. }
  3815. func (m *NodePool) GetStatus() NodePool_Status {
  3816. if m != nil {
  3817. return m.Status
  3818. }
  3819. return NodePool_STATUS_UNSPECIFIED
  3820. }
  3821. func (m *NodePool) GetStatusMessage() string {
  3822. if m != nil {
  3823. return m.StatusMessage
  3824. }
  3825. return ""
  3826. }
  3827. func (m *NodePool) GetAutoscaling() *NodePoolAutoscaling {
  3828. if m != nil {
  3829. return m.Autoscaling
  3830. }
  3831. return nil
  3832. }
  3833. func (m *NodePool) GetManagement() *NodeManagement {
  3834. if m != nil {
  3835. return m.Management
  3836. }
  3837. return nil
  3838. }
  3839. // NodeManagement defines the set of node management services turned on for the
  3840. // node pool.
  3841. type NodeManagement struct {
  3842. // A flag that specifies whether node auto-upgrade is enabled for the node
  3843. // pool. If enabled, node auto-upgrade helps keep the nodes in your node pool
  3844. // up to date with the latest release version of Kubernetes.
  3845. AutoUpgrade bool `protobuf:"varint,1,opt,name=auto_upgrade,json=autoUpgrade,proto3" json:"auto_upgrade,omitempty"`
  3846. // A flag that specifies whether the node auto-repair is enabled for the node
  3847. // pool. If enabled, the nodes in this node pool will be monitored and, if
  3848. // they fail health checks too many times, an automatic repair action will be
  3849. // triggered.
  3850. AutoRepair bool `protobuf:"varint,2,opt,name=auto_repair,json=autoRepair,proto3" json:"auto_repair,omitempty"`
  3851. // Specifies the Auto Upgrade knobs for the node pool.
  3852. UpgradeOptions *AutoUpgradeOptions `protobuf:"bytes,10,opt,name=upgrade_options,json=upgradeOptions,proto3" json:"upgrade_options,omitempty"`
  3853. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3854. XXX_unrecognized []byte `json:"-"`
  3855. XXX_sizecache int32 `json:"-"`
  3856. }
  3857. func (m *NodeManagement) Reset() { *m = NodeManagement{} }
  3858. func (m *NodeManagement) String() string { return proto.CompactTextString(m) }
  3859. func (*NodeManagement) ProtoMessage() {}
  3860. func (*NodeManagement) Descriptor() ([]byte, []int) {
  3861. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{41}
  3862. }
  3863. func (m *NodeManagement) XXX_Unmarshal(b []byte) error {
  3864. return xxx_messageInfo_NodeManagement.Unmarshal(m, b)
  3865. }
  3866. func (m *NodeManagement) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3867. return xxx_messageInfo_NodeManagement.Marshal(b, m, deterministic)
  3868. }
  3869. func (dst *NodeManagement) XXX_Merge(src proto.Message) {
  3870. xxx_messageInfo_NodeManagement.Merge(dst, src)
  3871. }
  3872. func (m *NodeManagement) XXX_Size() int {
  3873. return xxx_messageInfo_NodeManagement.Size(m)
  3874. }
  3875. func (m *NodeManagement) XXX_DiscardUnknown() {
  3876. xxx_messageInfo_NodeManagement.DiscardUnknown(m)
  3877. }
  3878. var xxx_messageInfo_NodeManagement proto.InternalMessageInfo
  3879. func (m *NodeManagement) GetAutoUpgrade() bool {
  3880. if m != nil {
  3881. return m.AutoUpgrade
  3882. }
  3883. return false
  3884. }
  3885. func (m *NodeManagement) GetAutoRepair() bool {
  3886. if m != nil {
  3887. return m.AutoRepair
  3888. }
  3889. return false
  3890. }
  3891. func (m *NodeManagement) GetUpgradeOptions() *AutoUpgradeOptions {
  3892. if m != nil {
  3893. return m.UpgradeOptions
  3894. }
  3895. return nil
  3896. }
  3897. // AutoUpgradeOptions defines the set of options for the user to control how
  3898. // the Auto Upgrades will proceed.
  3899. type AutoUpgradeOptions struct {
  3900. // [Output only] This field is set when upgrades are about to commence
  3901. // with the approximate start time for the upgrades, in
  3902. // [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format.
  3903. AutoUpgradeStartTime string `protobuf:"bytes,1,opt,name=auto_upgrade_start_time,json=autoUpgradeStartTime,proto3" json:"auto_upgrade_start_time,omitempty"`
  3904. // [Output only] This field is set when upgrades are about to commence
  3905. // with the description of the upgrade.
  3906. Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
  3907. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3908. XXX_unrecognized []byte `json:"-"`
  3909. XXX_sizecache int32 `json:"-"`
  3910. }
  3911. func (m *AutoUpgradeOptions) Reset() { *m = AutoUpgradeOptions{} }
  3912. func (m *AutoUpgradeOptions) String() string { return proto.CompactTextString(m) }
  3913. func (*AutoUpgradeOptions) ProtoMessage() {}
  3914. func (*AutoUpgradeOptions) Descriptor() ([]byte, []int) {
  3915. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{42}
  3916. }
  3917. func (m *AutoUpgradeOptions) XXX_Unmarshal(b []byte) error {
  3918. return xxx_messageInfo_AutoUpgradeOptions.Unmarshal(m, b)
  3919. }
  3920. func (m *AutoUpgradeOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3921. return xxx_messageInfo_AutoUpgradeOptions.Marshal(b, m, deterministic)
  3922. }
  3923. func (dst *AutoUpgradeOptions) XXX_Merge(src proto.Message) {
  3924. xxx_messageInfo_AutoUpgradeOptions.Merge(dst, src)
  3925. }
  3926. func (m *AutoUpgradeOptions) XXX_Size() int {
  3927. return xxx_messageInfo_AutoUpgradeOptions.Size(m)
  3928. }
  3929. func (m *AutoUpgradeOptions) XXX_DiscardUnknown() {
  3930. xxx_messageInfo_AutoUpgradeOptions.DiscardUnknown(m)
  3931. }
  3932. var xxx_messageInfo_AutoUpgradeOptions proto.InternalMessageInfo
  3933. func (m *AutoUpgradeOptions) GetAutoUpgradeStartTime() string {
  3934. if m != nil {
  3935. return m.AutoUpgradeStartTime
  3936. }
  3937. return ""
  3938. }
  3939. func (m *AutoUpgradeOptions) GetDescription() string {
  3940. if m != nil {
  3941. return m.Description
  3942. }
  3943. return ""
  3944. }
  3945. // MaintenancePolicy defines the maintenance policy to be used for the cluster.
  3946. type MaintenancePolicy struct {
  3947. // Specifies the maintenance window in which maintenance may be performed.
  3948. Window *MaintenanceWindow `protobuf:"bytes,1,opt,name=window,proto3" json:"window,omitempty"`
  3949. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3950. XXX_unrecognized []byte `json:"-"`
  3951. XXX_sizecache int32 `json:"-"`
  3952. }
  3953. func (m *MaintenancePolicy) Reset() { *m = MaintenancePolicy{} }
  3954. func (m *MaintenancePolicy) String() string { return proto.CompactTextString(m) }
  3955. func (*MaintenancePolicy) ProtoMessage() {}
  3956. func (*MaintenancePolicy) Descriptor() ([]byte, []int) {
  3957. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{43}
  3958. }
  3959. func (m *MaintenancePolicy) XXX_Unmarshal(b []byte) error {
  3960. return xxx_messageInfo_MaintenancePolicy.Unmarshal(m, b)
  3961. }
  3962. func (m *MaintenancePolicy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3963. return xxx_messageInfo_MaintenancePolicy.Marshal(b, m, deterministic)
  3964. }
  3965. func (dst *MaintenancePolicy) XXX_Merge(src proto.Message) {
  3966. xxx_messageInfo_MaintenancePolicy.Merge(dst, src)
  3967. }
  3968. func (m *MaintenancePolicy) XXX_Size() int {
  3969. return xxx_messageInfo_MaintenancePolicy.Size(m)
  3970. }
  3971. func (m *MaintenancePolicy) XXX_DiscardUnknown() {
  3972. xxx_messageInfo_MaintenancePolicy.DiscardUnknown(m)
  3973. }
  3974. var xxx_messageInfo_MaintenancePolicy proto.InternalMessageInfo
  3975. func (m *MaintenancePolicy) GetWindow() *MaintenanceWindow {
  3976. if m != nil {
  3977. return m.Window
  3978. }
  3979. return nil
  3980. }
  3981. // MaintenanceWindow defines the maintenance window to be used for the cluster.
  3982. type MaintenanceWindow struct {
  3983. // Types that are valid to be assigned to Policy:
  3984. // *MaintenanceWindow_DailyMaintenanceWindow
  3985. Policy isMaintenanceWindow_Policy `protobuf_oneof:"policy"`
  3986. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3987. XXX_unrecognized []byte `json:"-"`
  3988. XXX_sizecache int32 `json:"-"`
  3989. }
  3990. func (m *MaintenanceWindow) Reset() { *m = MaintenanceWindow{} }
  3991. func (m *MaintenanceWindow) String() string { return proto.CompactTextString(m) }
  3992. func (*MaintenanceWindow) ProtoMessage() {}
  3993. func (*MaintenanceWindow) Descriptor() ([]byte, []int) {
  3994. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{44}
  3995. }
  3996. func (m *MaintenanceWindow) XXX_Unmarshal(b []byte) error {
  3997. return xxx_messageInfo_MaintenanceWindow.Unmarshal(m, b)
  3998. }
  3999. func (m *MaintenanceWindow) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4000. return xxx_messageInfo_MaintenanceWindow.Marshal(b, m, deterministic)
  4001. }
  4002. func (dst *MaintenanceWindow) XXX_Merge(src proto.Message) {
  4003. xxx_messageInfo_MaintenanceWindow.Merge(dst, src)
  4004. }
  4005. func (m *MaintenanceWindow) XXX_Size() int {
  4006. return xxx_messageInfo_MaintenanceWindow.Size(m)
  4007. }
  4008. func (m *MaintenanceWindow) XXX_DiscardUnknown() {
  4009. xxx_messageInfo_MaintenanceWindow.DiscardUnknown(m)
  4010. }
  4011. var xxx_messageInfo_MaintenanceWindow proto.InternalMessageInfo
  4012. type isMaintenanceWindow_Policy interface {
  4013. isMaintenanceWindow_Policy()
  4014. }
  4015. type MaintenanceWindow_DailyMaintenanceWindow struct {
  4016. DailyMaintenanceWindow *DailyMaintenanceWindow `protobuf:"bytes,2,opt,name=daily_maintenance_window,json=dailyMaintenanceWindow,proto3,oneof"`
  4017. }
  4018. func (*MaintenanceWindow_DailyMaintenanceWindow) isMaintenanceWindow_Policy() {}
  4019. func (m *MaintenanceWindow) GetPolicy() isMaintenanceWindow_Policy {
  4020. if m != nil {
  4021. return m.Policy
  4022. }
  4023. return nil
  4024. }
  4025. func (m *MaintenanceWindow) GetDailyMaintenanceWindow() *DailyMaintenanceWindow {
  4026. if x, ok := m.GetPolicy().(*MaintenanceWindow_DailyMaintenanceWindow); ok {
  4027. return x.DailyMaintenanceWindow
  4028. }
  4029. return nil
  4030. }
  4031. // XXX_OneofFuncs is for the internal use of the proto package.
  4032. func (*MaintenanceWindow) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
  4033. return _MaintenanceWindow_OneofMarshaler, _MaintenanceWindow_OneofUnmarshaler, _MaintenanceWindow_OneofSizer, []interface{}{
  4034. (*MaintenanceWindow_DailyMaintenanceWindow)(nil),
  4035. }
  4036. }
  4037. func _MaintenanceWindow_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
  4038. m := msg.(*MaintenanceWindow)
  4039. // policy
  4040. switch x := m.Policy.(type) {
  4041. case *MaintenanceWindow_DailyMaintenanceWindow:
  4042. b.EncodeVarint(2<<3 | proto.WireBytes)
  4043. if err := b.EncodeMessage(x.DailyMaintenanceWindow); err != nil {
  4044. return err
  4045. }
  4046. case nil:
  4047. default:
  4048. return fmt.Errorf("MaintenanceWindow.Policy has unexpected type %T", x)
  4049. }
  4050. return nil
  4051. }
  4052. func _MaintenanceWindow_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
  4053. m := msg.(*MaintenanceWindow)
  4054. switch tag {
  4055. case 2: // policy.daily_maintenance_window
  4056. if wire != proto.WireBytes {
  4057. return true, proto.ErrInternalBadWireType
  4058. }
  4059. msg := new(DailyMaintenanceWindow)
  4060. err := b.DecodeMessage(msg)
  4061. m.Policy = &MaintenanceWindow_DailyMaintenanceWindow{msg}
  4062. return true, err
  4063. default:
  4064. return false, nil
  4065. }
  4066. }
  4067. func _MaintenanceWindow_OneofSizer(msg proto.Message) (n int) {
  4068. m := msg.(*MaintenanceWindow)
  4069. // policy
  4070. switch x := m.Policy.(type) {
  4071. case *MaintenanceWindow_DailyMaintenanceWindow:
  4072. s := proto.Size(x.DailyMaintenanceWindow)
  4073. n += 1 // tag and wire
  4074. n += proto.SizeVarint(uint64(s))
  4075. n += s
  4076. case nil:
  4077. default:
  4078. panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
  4079. }
  4080. return n
  4081. }
  4082. // Time window specified for daily maintenance operations.
  4083. type DailyMaintenanceWindow struct {
  4084. // Time within the maintenance window to start the maintenance operations.
  4085. // Time format should be in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt)
  4086. // format "HH:MM”, where HH : [00-23] and MM : [00-59] GMT.
  4087. StartTime string `protobuf:"bytes,2,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
  4088. // [Output only] Duration of the time window, automatically chosen to be
  4089. // smallest possible in the given scenario.
  4090. // Duration will be in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt)
  4091. // format "PTnHnMnS".
  4092. Duration string `protobuf:"bytes,3,opt,name=duration,proto3" json:"duration,omitempty"`
  4093. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4094. XXX_unrecognized []byte `json:"-"`
  4095. XXX_sizecache int32 `json:"-"`
  4096. }
  4097. func (m *DailyMaintenanceWindow) Reset() { *m = DailyMaintenanceWindow{} }
  4098. func (m *DailyMaintenanceWindow) String() string { return proto.CompactTextString(m) }
  4099. func (*DailyMaintenanceWindow) ProtoMessage() {}
  4100. func (*DailyMaintenanceWindow) Descriptor() ([]byte, []int) {
  4101. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{45}
  4102. }
  4103. func (m *DailyMaintenanceWindow) XXX_Unmarshal(b []byte) error {
  4104. return xxx_messageInfo_DailyMaintenanceWindow.Unmarshal(m, b)
  4105. }
  4106. func (m *DailyMaintenanceWindow) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4107. return xxx_messageInfo_DailyMaintenanceWindow.Marshal(b, m, deterministic)
  4108. }
  4109. func (dst *DailyMaintenanceWindow) XXX_Merge(src proto.Message) {
  4110. xxx_messageInfo_DailyMaintenanceWindow.Merge(dst, src)
  4111. }
  4112. func (m *DailyMaintenanceWindow) XXX_Size() int {
  4113. return xxx_messageInfo_DailyMaintenanceWindow.Size(m)
  4114. }
  4115. func (m *DailyMaintenanceWindow) XXX_DiscardUnknown() {
  4116. xxx_messageInfo_DailyMaintenanceWindow.DiscardUnknown(m)
  4117. }
  4118. var xxx_messageInfo_DailyMaintenanceWindow proto.InternalMessageInfo
  4119. func (m *DailyMaintenanceWindow) GetStartTime() string {
  4120. if m != nil {
  4121. return m.StartTime
  4122. }
  4123. return ""
  4124. }
  4125. func (m *DailyMaintenanceWindow) GetDuration() string {
  4126. if m != nil {
  4127. return m.Duration
  4128. }
  4129. return ""
  4130. }
  4131. // SetNodePoolManagementRequest sets the node management properties of a node
  4132. // pool.
  4133. type SetNodePoolManagementRequest struct {
  4134. // Deprecated. The Google Developers Console [project ID or project
  4135. // number](https://support.google.com/cloud/answer/6158840).
  4136. // This field has been deprecated and replaced by the name field.
  4137. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  4138. // Deprecated. The name of the Google Compute Engine
  4139. // [zone](/compute/docs/zones#available) in which the cluster
  4140. // resides.
  4141. // This field has been deprecated and replaced by the name field.
  4142. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  4143. // Deprecated. The name of the cluster to update.
  4144. // This field has been deprecated and replaced by the name field.
  4145. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` // Deprecated: Do not use.
  4146. // Deprecated. The name of the node pool to update.
  4147. // This field has been deprecated and replaced by the name field.
  4148. NodePoolId string `protobuf:"bytes,4,opt,name=node_pool_id,json=nodePoolId,proto3" json:"node_pool_id,omitempty"` // Deprecated: Do not use.
  4149. // NodeManagement configuration for the node pool.
  4150. Management *NodeManagement `protobuf:"bytes,5,opt,name=management,proto3" json:"management,omitempty"`
  4151. // The name (project, location, cluster, node pool id) of the node pool to set
  4152. // management properties. Specified in the format
  4153. // 'projects/*/locations/*/clusters/*/nodePools/*'.
  4154. Name string `protobuf:"bytes,7,opt,name=name,proto3" json:"name,omitempty"`
  4155. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4156. XXX_unrecognized []byte `json:"-"`
  4157. XXX_sizecache int32 `json:"-"`
  4158. }
  4159. func (m *SetNodePoolManagementRequest) Reset() { *m = SetNodePoolManagementRequest{} }
  4160. func (m *SetNodePoolManagementRequest) String() string { return proto.CompactTextString(m) }
  4161. func (*SetNodePoolManagementRequest) ProtoMessage() {}
  4162. func (*SetNodePoolManagementRequest) Descriptor() ([]byte, []int) {
  4163. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{46}
  4164. }
  4165. func (m *SetNodePoolManagementRequest) XXX_Unmarshal(b []byte) error {
  4166. return xxx_messageInfo_SetNodePoolManagementRequest.Unmarshal(m, b)
  4167. }
  4168. func (m *SetNodePoolManagementRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4169. return xxx_messageInfo_SetNodePoolManagementRequest.Marshal(b, m, deterministic)
  4170. }
  4171. func (dst *SetNodePoolManagementRequest) XXX_Merge(src proto.Message) {
  4172. xxx_messageInfo_SetNodePoolManagementRequest.Merge(dst, src)
  4173. }
  4174. func (m *SetNodePoolManagementRequest) XXX_Size() int {
  4175. return xxx_messageInfo_SetNodePoolManagementRequest.Size(m)
  4176. }
  4177. func (m *SetNodePoolManagementRequest) XXX_DiscardUnknown() {
  4178. xxx_messageInfo_SetNodePoolManagementRequest.DiscardUnknown(m)
  4179. }
  4180. var xxx_messageInfo_SetNodePoolManagementRequest proto.InternalMessageInfo
  4181. // Deprecated: Do not use.
  4182. func (m *SetNodePoolManagementRequest) GetProjectId() string {
  4183. if m != nil {
  4184. return m.ProjectId
  4185. }
  4186. return ""
  4187. }
  4188. // Deprecated: Do not use.
  4189. func (m *SetNodePoolManagementRequest) GetZone() string {
  4190. if m != nil {
  4191. return m.Zone
  4192. }
  4193. return ""
  4194. }
  4195. // Deprecated: Do not use.
  4196. func (m *SetNodePoolManagementRequest) GetClusterId() string {
  4197. if m != nil {
  4198. return m.ClusterId
  4199. }
  4200. return ""
  4201. }
  4202. // Deprecated: Do not use.
  4203. func (m *SetNodePoolManagementRequest) GetNodePoolId() string {
  4204. if m != nil {
  4205. return m.NodePoolId
  4206. }
  4207. return ""
  4208. }
  4209. func (m *SetNodePoolManagementRequest) GetManagement() *NodeManagement {
  4210. if m != nil {
  4211. return m.Management
  4212. }
  4213. return nil
  4214. }
  4215. func (m *SetNodePoolManagementRequest) GetName() string {
  4216. if m != nil {
  4217. return m.Name
  4218. }
  4219. return ""
  4220. }
  4221. // SetNodePoolSizeRequest sets the size a node
  4222. // pool.
  4223. type SetNodePoolSizeRequest struct {
  4224. // Deprecated. The Google Developers Console [project ID or project
  4225. // number](https://support.google.com/cloud/answer/6158840).
  4226. // This field has been deprecated and replaced by the name field.
  4227. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  4228. // Deprecated. The name of the Google Compute Engine
  4229. // [zone](/compute/docs/zones#available) in which the cluster
  4230. // resides.
  4231. // This field has been deprecated and replaced by the name field.
  4232. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  4233. // Deprecated. The name of the cluster to update.
  4234. // This field has been deprecated and replaced by the name field.
  4235. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` // Deprecated: Do not use.
  4236. // Deprecated. The name of the node pool to update.
  4237. // This field has been deprecated and replaced by the name field.
  4238. NodePoolId string `protobuf:"bytes,4,opt,name=node_pool_id,json=nodePoolId,proto3" json:"node_pool_id,omitempty"` // Deprecated: Do not use.
  4239. // The desired node count for the pool.
  4240. NodeCount int32 `protobuf:"varint,5,opt,name=node_count,json=nodeCount,proto3" json:"node_count,omitempty"`
  4241. // The name (project, location, cluster, node pool id) of the node pool to set
  4242. // size.
  4243. // Specified in the format 'projects/*/locations/*/clusters/*/nodePools/*'.
  4244. Name string `protobuf:"bytes,7,opt,name=name,proto3" json:"name,omitempty"`
  4245. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4246. XXX_unrecognized []byte `json:"-"`
  4247. XXX_sizecache int32 `json:"-"`
  4248. }
  4249. func (m *SetNodePoolSizeRequest) Reset() { *m = SetNodePoolSizeRequest{} }
  4250. func (m *SetNodePoolSizeRequest) String() string { return proto.CompactTextString(m) }
  4251. func (*SetNodePoolSizeRequest) ProtoMessage() {}
  4252. func (*SetNodePoolSizeRequest) Descriptor() ([]byte, []int) {
  4253. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{47}
  4254. }
  4255. func (m *SetNodePoolSizeRequest) XXX_Unmarshal(b []byte) error {
  4256. return xxx_messageInfo_SetNodePoolSizeRequest.Unmarshal(m, b)
  4257. }
  4258. func (m *SetNodePoolSizeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4259. return xxx_messageInfo_SetNodePoolSizeRequest.Marshal(b, m, deterministic)
  4260. }
  4261. func (dst *SetNodePoolSizeRequest) XXX_Merge(src proto.Message) {
  4262. xxx_messageInfo_SetNodePoolSizeRequest.Merge(dst, src)
  4263. }
  4264. func (m *SetNodePoolSizeRequest) XXX_Size() int {
  4265. return xxx_messageInfo_SetNodePoolSizeRequest.Size(m)
  4266. }
  4267. func (m *SetNodePoolSizeRequest) XXX_DiscardUnknown() {
  4268. xxx_messageInfo_SetNodePoolSizeRequest.DiscardUnknown(m)
  4269. }
  4270. var xxx_messageInfo_SetNodePoolSizeRequest proto.InternalMessageInfo
  4271. // Deprecated: Do not use.
  4272. func (m *SetNodePoolSizeRequest) GetProjectId() string {
  4273. if m != nil {
  4274. return m.ProjectId
  4275. }
  4276. return ""
  4277. }
  4278. // Deprecated: Do not use.
  4279. func (m *SetNodePoolSizeRequest) GetZone() string {
  4280. if m != nil {
  4281. return m.Zone
  4282. }
  4283. return ""
  4284. }
  4285. // Deprecated: Do not use.
  4286. func (m *SetNodePoolSizeRequest) GetClusterId() string {
  4287. if m != nil {
  4288. return m.ClusterId
  4289. }
  4290. return ""
  4291. }
  4292. // Deprecated: Do not use.
  4293. func (m *SetNodePoolSizeRequest) GetNodePoolId() string {
  4294. if m != nil {
  4295. return m.NodePoolId
  4296. }
  4297. return ""
  4298. }
  4299. func (m *SetNodePoolSizeRequest) GetNodeCount() int32 {
  4300. if m != nil {
  4301. return m.NodeCount
  4302. }
  4303. return 0
  4304. }
  4305. func (m *SetNodePoolSizeRequest) GetName() string {
  4306. if m != nil {
  4307. return m.Name
  4308. }
  4309. return ""
  4310. }
  4311. // RollbackNodePoolUpgradeRequest rollbacks the previously Aborted or Failed
  4312. // NodePool upgrade. This will be an no-op if the last upgrade successfully
  4313. // completed.
  4314. type RollbackNodePoolUpgradeRequest struct {
  4315. // Deprecated. The Google Developers Console [project ID or project
  4316. // number](https://support.google.com/cloud/answer/6158840).
  4317. // This field has been deprecated and replaced by the name field.
  4318. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  4319. // Deprecated. The name of the Google Compute Engine
  4320. // [zone](/compute/docs/zones#available) in which the cluster
  4321. // resides.
  4322. // This field has been deprecated and replaced by the name field.
  4323. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  4324. // Deprecated. The name of the cluster to rollback.
  4325. // This field has been deprecated and replaced by the name field.
  4326. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` // Deprecated: Do not use.
  4327. // Deprecated. The name of the node pool to rollback.
  4328. // This field has been deprecated and replaced by the name field.
  4329. NodePoolId string `protobuf:"bytes,4,opt,name=node_pool_id,json=nodePoolId,proto3" json:"node_pool_id,omitempty"` // Deprecated: Do not use.
  4330. // The name (project, location, cluster, node pool id) of the node poll to
  4331. // rollback upgrade.
  4332. // Specified in the format 'projects/*/locations/*/clusters/*/nodePools/*'.
  4333. Name string `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
  4334. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4335. XXX_unrecognized []byte `json:"-"`
  4336. XXX_sizecache int32 `json:"-"`
  4337. }
  4338. func (m *RollbackNodePoolUpgradeRequest) Reset() { *m = RollbackNodePoolUpgradeRequest{} }
  4339. func (m *RollbackNodePoolUpgradeRequest) String() string { return proto.CompactTextString(m) }
  4340. func (*RollbackNodePoolUpgradeRequest) ProtoMessage() {}
  4341. func (*RollbackNodePoolUpgradeRequest) Descriptor() ([]byte, []int) {
  4342. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{48}
  4343. }
  4344. func (m *RollbackNodePoolUpgradeRequest) XXX_Unmarshal(b []byte) error {
  4345. return xxx_messageInfo_RollbackNodePoolUpgradeRequest.Unmarshal(m, b)
  4346. }
  4347. func (m *RollbackNodePoolUpgradeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4348. return xxx_messageInfo_RollbackNodePoolUpgradeRequest.Marshal(b, m, deterministic)
  4349. }
  4350. func (dst *RollbackNodePoolUpgradeRequest) XXX_Merge(src proto.Message) {
  4351. xxx_messageInfo_RollbackNodePoolUpgradeRequest.Merge(dst, src)
  4352. }
  4353. func (m *RollbackNodePoolUpgradeRequest) XXX_Size() int {
  4354. return xxx_messageInfo_RollbackNodePoolUpgradeRequest.Size(m)
  4355. }
  4356. func (m *RollbackNodePoolUpgradeRequest) XXX_DiscardUnknown() {
  4357. xxx_messageInfo_RollbackNodePoolUpgradeRequest.DiscardUnknown(m)
  4358. }
  4359. var xxx_messageInfo_RollbackNodePoolUpgradeRequest proto.InternalMessageInfo
  4360. // Deprecated: Do not use.
  4361. func (m *RollbackNodePoolUpgradeRequest) GetProjectId() string {
  4362. if m != nil {
  4363. return m.ProjectId
  4364. }
  4365. return ""
  4366. }
  4367. // Deprecated: Do not use.
  4368. func (m *RollbackNodePoolUpgradeRequest) GetZone() string {
  4369. if m != nil {
  4370. return m.Zone
  4371. }
  4372. return ""
  4373. }
  4374. // Deprecated: Do not use.
  4375. func (m *RollbackNodePoolUpgradeRequest) GetClusterId() string {
  4376. if m != nil {
  4377. return m.ClusterId
  4378. }
  4379. return ""
  4380. }
  4381. // Deprecated: Do not use.
  4382. func (m *RollbackNodePoolUpgradeRequest) GetNodePoolId() string {
  4383. if m != nil {
  4384. return m.NodePoolId
  4385. }
  4386. return ""
  4387. }
  4388. func (m *RollbackNodePoolUpgradeRequest) GetName() string {
  4389. if m != nil {
  4390. return m.Name
  4391. }
  4392. return ""
  4393. }
  4394. // ListNodePoolsResponse is the result of ListNodePoolsRequest.
  4395. type ListNodePoolsResponse struct {
  4396. // A list of node pools for a cluster.
  4397. NodePools []*NodePool `protobuf:"bytes,1,rep,name=node_pools,json=nodePools,proto3" json:"node_pools,omitempty"`
  4398. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4399. XXX_unrecognized []byte `json:"-"`
  4400. XXX_sizecache int32 `json:"-"`
  4401. }
  4402. func (m *ListNodePoolsResponse) Reset() { *m = ListNodePoolsResponse{} }
  4403. func (m *ListNodePoolsResponse) String() string { return proto.CompactTextString(m) }
  4404. func (*ListNodePoolsResponse) ProtoMessage() {}
  4405. func (*ListNodePoolsResponse) Descriptor() ([]byte, []int) {
  4406. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{49}
  4407. }
  4408. func (m *ListNodePoolsResponse) XXX_Unmarshal(b []byte) error {
  4409. return xxx_messageInfo_ListNodePoolsResponse.Unmarshal(m, b)
  4410. }
  4411. func (m *ListNodePoolsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4412. return xxx_messageInfo_ListNodePoolsResponse.Marshal(b, m, deterministic)
  4413. }
  4414. func (dst *ListNodePoolsResponse) XXX_Merge(src proto.Message) {
  4415. xxx_messageInfo_ListNodePoolsResponse.Merge(dst, src)
  4416. }
  4417. func (m *ListNodePoolsResponse) XXX_Size() int {
  4418. return xxx_messageInfo_ListNodePoolsResponse.Size(m)
  4419. }
  4420. func (m *ListNodePoolsResponse) XXX_DiscardUnknown() {
  4421. xxx_messageInfo_ListNodePoolsResponse.DiscardUnknown(m)
  4422. }
  4423. var xxx_messageInfo_ListNodePoolsResponse proto.InternalMessageInfo
  4424. func (m *ListNodePoolsResponse) GetNodePools() []*NodePool {
  4425. if m != nil {
  4426. return m.NodePools
  4427. }
  4428. return nil
  4429. }
  4430. // NodePoolAutoscaling contains information required by cluster autoscaler to
  4431. // adjust the size of the node pool to the current cluster usage.
  4432. type NodePoolAutoscaling struct {
  4433. // Is autoscaling enabled for this node pool.
  4434. Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
  4435. // Minimum number of nodes in the NodePool. Must be >= 1 and <=
  4436. // max_node_count.
  4437. MinNodeCount int32 `protobuf:"varint,2,opt,name=min_node_count,json=minNodeCount,proto3" json:"min_node_count,omitempty"`
  4438. // Maximum number of nodes in the NodePool. Must be >= min_node_count. There
  4439. // has to enough quota to scale up the cluster.
  4440. MaxNodeCount int32 `protobuf:"varint,3,opt,name=max_node_count,json=maxNodeCount,proto3" json:"max_node_count,omitempty"`
  4441. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4442. XXX_unrecognized []byte `json:"-"`
  4443. XXX_sizecache int32 `json:"-"`
  4444. }
  4445. func (m *NodePoolAutoscaling) Reset() { *m = NodePoolAutoscaling{} }
  4446. func (m *NodePoolAutoscaling) String() string { return proto.CompactTextString(m) }
  4447. func (*NodePoolAutoscaling) ProtoMessage() {}
  4448. func (*NodePoolAutoscaling) Descriptor() ([]byte, []int) {
  4449. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{50}
  4450. }
  4451. func (m *NodePoolAutoscaling) XXX_Unmarshal(b []byte) error {
  4452. return xxx_messageInfo_NodePoolAutoscaling.Unmarshal(m, b)
  4453. }
  4454. func (m *NodePoolAutoscaling) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4455. return xxx_messageInfo_NodePoolAutoscaling.Marshal(b, m, deterministic)
  4456. }
  4457. func (dst *NodePoolAutoscaling) XXX_Merge(src proto.Message) {
  4458. xxx_messageInfo_NodePoolAutoscaling.Merge(dst, src)
  4459. }
  4460. func (m *NodePoolAutoscaling) XXX_Size() int {
  4461. return xxx_messageInfo_NodePoolAutoscaling.Size(m)
  4462. }
  4463. func (m *NodePoolAutoscaling) XXX_DiscardUnknown() {
  4464. xxx_messageInfo_NodePoolAutoscaling.DiscardUnknown(m)
  4465. }
  4466. var xxx_messageInfo_NodePoolAutoscaling proto.InternalMessageInfo
  4467. func (m *NodePoolAutoscaling) GetEnabled() bool {
  4468. if m != nil {
  4469. return m.Enabled
  4470. }
  4471. return false
  4472. }
  4473. func (m *NodePoolAutoscaling) GetMinNodeCount() int32 {
  4474. if m != nil {
  4475. return m.MinNodeCount
  4476. }
  4477. return 0
  4478. }
  4479. func (m *NodePoolAutoscaling) GetMaxNodeCount() int32 {
  4480. if m != nil {
  4481. return m.MaxNodeCount
  4482. }
  4483. return 0
  4484. }
  4485. // SetLabelsRequest sets the Google Cloud Platform labels on a Google Container
  4486. // Engine cluster, which will in turn set them for Google Compute Engine
  4487. // resources used by that cluster
  4488. type SetLabelsRequest struct {
  4489. // Deprecated. The Google Developers Console [project ID or project
  4490. // number](https://developers.google.com/console/help/new/#projectnumber).
  4491. // This field has been deprecated and replaced by the name field.
  4492. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  4493. // Deprecated. The name of the Google Compute Engine
  4494. // [zone](/compute/docs/zones#available) in which the cluster
  4495. // resides.
  4496. // This field has been deprecated and replaced by the name field.
  4497. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  4498. // Deprecated. The name of the cluster.
  4499. // This field has been deprecated and replaced by the name field.
  4500. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` // Deprecated: Do not use.
  4501. // The labels to set for that cluster.
  4502. ResourceLabels map[string]string `protobuf:"bytes,4,rep,name=resource_labels,json=resourceLabels,proto3" json:"resource_labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  4503. // The fingerprint of the previous set of labels for this resource,
  4504. // used to detect conflicts. The fingerprint is initially generated by
  4505. // Kubernetes Engine and changes after every request to modify or update
  4506. // labels. You must always provide an up-to-date fingerprint hash when
  4507. // updating or changing labels. Make a <code>get()</code> request to the
  4508. // resource to get the latest fingerprint.
  4509. LabelFingerprint string `protobuf:"bytes,5,opt,name=label_fingerprint,json=labelFingerprint,proto3" json:"label_fingerprint,omitempty"`
  4510. // The name (project, location, cluster id) of the cluster to set labels.
  4511. // Specified in the format 'projects/*/locations/*/clusters/*'.
  4512. Name string `protobuf:"bytes,7,opt,name=name,proto3" json:"name,omitempty"`
  4513. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4514. XXX_unrecognized []byte `json:"-"`
  4515. XXX_sizecache int32 `json:"-"`
  4516. }
  4517. func (m *SetLabelsRequest) Reset() { *m = SetLabelsRequest{} }
  4518. func (m *SetLabelsRequest) String() string { return proto.CompactTextString(m) }
  4519. func (*SetLabelsRequest) ProtoMessage() {}
  4520. func (*SetLabelsRequest) Descriptor() ([]byte, []int) {
  4521. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{51}
  4522. }
  4523. func (m *SetLabelsRequest) XXX_Unmarshal(b []byte) error {
  4524. return xxx_messageInfo_SetLabelsRequest.Unmarshal(m, b)
  4525. }
  4526. func (m *SetLabelsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4527. return xxx_messageInfo_SetLabelsRequest.Marshal(b, m, deterministic)
  4528. }
  4529. func (dst *SetLabelsRequest) XXX_Merge(src proto.Message) {
  4530. xxx_messageInfo_SetLabelsRequest.Merge(dst, src)
  4531. }
  4532. func (m *SetLabelsRequest) XXX_Size() int {
  4533. return xxx_messageInfo_SetLabelsRequest.Size(m)
  4534. }
  4535. func (m *SetLabelsRequest) XXX_DiscardUnknown() {
  4536. xxx_messageInfo_SetLabelsRequest.DiscardUnknown(m)
  4537. }
  4538. var xxx_messageInfo_SetLabelsRequest proto.InternalMessageInfo
  4539. // Deprecated: Do not use.
  4540. func (m *SetLabelsRequest) GetProjectId() string {
  4541. if m != nil {
  4542. return m.ProjectId
  4543. }
  4544. return ""
  4545. }
  4546. // Deprecated: Do not use.
  4547. func (m *SetLabelsRequest) GetZone() string {
  4548. if m != nil {
  4549. return m.Zone
  4550. }
  4551. return ""
  4552. }
  4553. // Deprecated: Do not use.
  4554. func (m *SetLabelsRequest) GetClusterId() string {
  4555. if m != nil {
  4556. return m.ClusterId
  4557. }
  4558. return ""
  4559. }
  4560. func (m *SetLabelsRequest) GetResourceLabels() map[string]string {
  4561. if m != nil {
  4562. return m.ResourceLabels
  4563. }
  4564. return nil
  4565. }
  4566. func (m *SetLabelsRequest) GetLabelFingerprint() string {
  4567. if m != nil {
  4568. return m.LabelFingerprint
  4569. }
  4570. return ""
  4571. }
  4572. func (m *SetLabelsRequest) GetName() string {
  4573. if m != nil {
  4574. return m.Name
  4575. }
  4576. return ""
  4577. }
  4578. // SetLegacyAbacRequest enables or disables the ABAC authorization mechanism for
  4579. // a cluster.
  4580. type SetLegacyAbacRequest struct {
  4581. // Deprecated. The Google Developers Console [project ID or project
  4582. // number](https://support.google.com/cloud/answer/6158840).
  4583. // This field has been deprecated and replaced by the name field.
  4584. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  4585. // Deprecated. The name of the Google Compute Engine
  4586. // [zone](/compute/docs/zones#available) in which the cluster
  4587. // resides.
  4588. // This field has been deprecated and replaced by the name field.
  4589. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  4590. // Deprecated. The name of the cluster to update.
  4591. // This field has been deprecated and replaced by the name field.
  4592. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` // Deprecated: Do not use.
  4593. // Whether ABAC authorization will be enabled in the cluster.
  4594. Enabled bool `protobuf:"varint,4,opt,name=enabled,proto3" json:"enabled,omitempty"`
  4595. // The name (project, location, cluster id) of the cluster to set legacy abac.
  4596. // Specified in the format 'projects/*/locations/*/clusters/*'.
  4597. Name string `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
  4598. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4599. XXX_unrecognized []byte `json:"-"`
  4600. XXX_sizecache int32 `json:"-"`
  4601. }
  4602. func (m *SetLegacyAbacRequest) Reset() { *m = SetLegacyAbacRequest{} }
  4603. func (m *SetLegacyAbacRequest) String() string { return proto.CompactTextString(m) }
  4604. func (*SetLegacyAbacRequest) ProtoMessage() {}
  4605. func (*SetLegacyAbacRequest) Descriptor() ([]byte, []int) {
  4606. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{52}
  4607. }
  4608. func (m *SetLegacyAbacRequest) XXX_Unmarshal(b []byte) error {
  4609. return xxx_messageInfo_SetLegacyAbacRequest.Unmarshal(m, b)
  4610. }
  4611. func (m *SetLegacyAbacRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4612. return xxx_messageInfo_SetLegacyAbacRequest.Marshal(b, m, deterministic)
  4613. }
  4614. func (dst *SetLegacyAbacRequest) XXX_Merge(src proto.Message) {
  4615. xxx_messageInfo_SetLegacyAbacRequest.Merge(dst, src)
  4616. }
  4617. func (m *SetLegacyAbacRequest) XXX_Size() int {
  4618. return xxx_messageInfo_SetLegacyAbacRequest.Size(m)
  4619. }
  4620. func (m *SetLegacyAbacRequest) XXX_DiscardUnknown() {
  4621. xxx_messageInfo_SetLegacyAbacRequest.DiscardUnknown(m)
  4622. }
  4623. var xxx_messageInfo_SetLegacyAbacRequest proto.InternalMessageInfo
  4624. // Deprecated: Do not use.
  4625. func (m *SetLegacyAbacRequest) GetProjectId() string {
  4626. if m != nil {
  4627. return m.ProjectId
  4628. }
  4629. return ""
  4630. }
  4631. // Deprecated: Do not use.
  4632. func (m *SetLegacyAbacRequest) GetZone() string {
  4633. if m != nil {
  4634. return m.Zone
  4635. }
  4636. return ""
  4637. }
  4638. // Deprecated: Do not use.
  4639. func (m *SetLegacyAbacRequest) GetClusterId() string {
  4640. if m != nil {
  4641. return m.ClusterId
  4642. }
  4643. return ""
  4644. }
  4645. func (m *SetLegacyAbacRequest) GetEnabled() bool {
  4646. if m != nil {
  4647. return m.Enabled
  4648. }
  4649. return false
  4650. }
  4651. func (m *SetLegacyAbacRequest) GetName() string {
  4652. if m != nil {
  4653. return m.Name
  4654. }
  4655. return ""
  4656. }
  4657. // StartIPRotationRequest creates a new IP for the cluster and then performs
  4658. // a node upgrade on each node pool to point to the new IP.
  4659. type StartIPRotationRequest struct {
  4660. // Deprecated. The Google Developers Console [project ID or project
  4661. // number](https://developers.google.com/console/help/new/#projectnumber).
  4662. // This field has been deprecated and replaced by the name field.
  4663. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  4664. // Deprecated. The name of the Google Compute Engine
  4665. // [zone](/compute/docs/zones#available) in which the cluster
  4666. // resides.
  4667. // This field has been deprecated and replaced by the name field.
  4668. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  4669. // Deprecated. The name of the cluster.
  4670. // This field has been deprecated and replaced by the name field.
  4671. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` // Deprecated: Do not use.
  4672. // The name (project, location, cluster id) of the cluster to start IP
  4673. // rotation. Specified in the format 'projects/*/locations/*/clusters/*'.
  4674. Name string `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
  4675. // Whether to rotate credentials during IP rotation.
  4676. RotateCredentials bool `protobuf:"varint,7,opt,name=rotate_credentials,json=rotateCredentials,proto3" json:"rotate_credentials,omitempty"`
  4677. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4678. XXX_unrecognized []byte `json:"-"`
  4679. XXX_sizecache int32 `json:"-"`
  4680. }
  4681. func (m *StartIPRotationRequest) Reset() { *m = StartIPRotationRequest{} }
  4682. func (m *StartIPRotationRequest) String() string { return proto.CompactTextString(m) }
  4683. func (*StartIPRotationRequest) ProtoMessage() {}
  4684. func (*StartIPRotationRequest) Descriptor() ([]byte, []int) {
  4685. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{53}
  4686. }
  4687. func (m *StartIPRotationRequest) XXX_Unmarshal(b []byte) error {
  4688. return xxx_messageInfo_StartIPRotationRequest.Unmarshal(m, b)
  4689. }
  4690. func (m *StartIPRotationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4691. return xxx_messageInfo_StartIPRotationRequest.Marshal(b, m, deterministic)
  4692. }
  4693. func (dst *StartIPRotationRequest) XXX_Merge(src proto.Message) {
  4694. xxx_messageInfo_StartIPRotationRequest.Merge(dst, src)
  4695. }
  4696. func (m *StartIPRotationRequest) XXX_Size() int {
  4697. return xxx_messageInfo_StartIPRotationRequest.Size(m)
  4698. }
  4699. func (m *StartIPRotationRequest) XXX_DiscardUnknown() {
  4700. xxx_messageInfo_StartIPRotationRequest.DiscardUnknown(m)
  4701. }
  4702. var xxx_messageInfo_StartIPRotationRequest proto.InternalMessageInfo
  4703. // Deprecated: Do not use.
  4704. func (m *StartIPRotationRequest) GetProjectId() string {
  4705. if m != nil {
  4706. return m.ProjectId
  4707. }
  4708. return ""
  4709. }
  4710. // Deprecated: Do not use.
  4711. func (m *StartIPRotationRequest) GetZone() string {
  4712. if m != nil {
  4713. return m.Zone
  4714. }
  4715. return ""
  4716. }
  4717. // Deprecated: Do not use.
  4718. func (m *StartIPRotationRequest) GetClusterId() string {
  4719. if m != nil {
  4720. return m.ClusterId
  4721. }
  4722. return ""
  4723. }
  4724. func (m *StartIPRotationRequest) GetName() string {
  4725. if m != nil {
  4726. return m.Name
  4727. }
  4728. return ""
  4729. }
  4730. func (m *StartIPRotationRequest) GetRotateCredentials() bool {
  4731. if m != nil {
  4732. return m.RotateCredentials
  4733. }
  4734. return false
  4735. }
  4736. // CompleteIPRotationRequest moves the cluster master back into single-IP mode.
  4737. type CompleteIPRotationRequest struct {
  4738. // Deprecated. The Google Developers Console [project ID or project
  4739. // number](https://developers.google.com/console/help/new/#projectnumber).
  4740. // This field has been deprecated and replaced by the name field.
  4741. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  4742. // Deprecated. The name of the Google Compute Engine
  4743. // [zone](/compute/docs/zones#available) in which the cluster
  4744. // resides.
  4745. // This field has been deprecated and replaced by the name field.
  4746. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  4747. // Deprecated. The name of the cluster.
  4748. // This field has been deprecated and replaced by the name field.
  4749. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` // Deprecated: Do not use.
  4750. // The name (project, location, cluster id) of the cluster to complete IP
  4751. // rotation. Specified in the format 'projects/*/locations/*/clusters/*'.
  4752. Name string `protobuf:"bytes,7,opt,name=name,proto3" json:"name,omitempty"`
  4753. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4754. XXX_unrecognized []byte `json:"-"`
  4755. XXX_sizecache int32 `json:"-"`
  4756. }
  4757. func (m *CompleteIPRotationRequest) Reset() { *m = CompleteIPRotationRequest{} }
  4758. func (m *CompleteIPRotationRequest) String() string { return proto.CompactTextString(m) }
  4759. func (*CompleteIPRotationRequest) ProtoMessage() {}
  4760. func (*CompleteIPRotationRequest) Descriptor() ([]byte, []int) {
  4761. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{54}
  4762. }
  4763. func (m *CompleteIPRotationRequest) XXX_Unmarshal(b []byte) error {
  4764. return xxx_messageInfo_CompleteIPRotationRequest.Unmarshal(m, b)
  4765. }
  4766. func (m *CompleteIPRotationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4767. return xxx_messageInfo_CompleteIPRotationRequest.Marshal(b, m, deterministic)
  4768. }
  4769. func (dst *CompleteIPRotationRequest) XXX_Merge(src proto.Message) {
  4770. xxx_messageInfo_CompleteIPRotationRequest.Merge(dst, src)
  4771. }
  4772. func (m *CompleteIPRotationRequest) XXX_Size() int {
  4773. return xxx_messageInfo_CompleteIPRotationRequest.Size(m)
  4774. }
  4775. func (m *CompleteIPRotationRequest) XXX_DiscardUnknown() {
  4776. xxx_messageInfo_CompleteIPRotationRequest.DiscardUnknown(m)
  4777. }
  4778. var xxx_messageInfo_CompleteIPRotationRequest proto.InternalMessageInfo
  4779. // Deprecated: Do not use.
  4780. func (m *CompleteIPRotationRequest) GetProjectId() string {
  4781. if m != nil {
  4782. return m.ProjectId
  4783. }
  4784. return ""
  4785. }
  4786. // Deprecated: Do not use.
  4787. func (m *CompleteIPRotationRequest) GetZone() string {
  4788. if m != nil {
  4789. return m.Zone
  4790. }
  4791. return ""
  4792. }
  4793. // Deprecated: Do not use.
  4794. func (m *CompleteIPRotationRequest) GetClusterId() string {
  4795. if m != nil {
  4796. return m.ClusterId
  4797. }
  4798. return ""
  4799. }
  4800. func (m *CompleteIPRotationRequest) GetName() string {
  4801. if m != nil {
  4802. return m.Name
  4803. }
  4804. return ""
  4805. }
  4806. // AcceleratorConfig represents a Hardware Accelerator request.
  4807. type AcceleratorConfig struct {
  4808. // The number of the accelerator cards exposed to an instance.
  4809. AcceleratorCount int64 `protobuf:"varint,1,opt,name=accelerator_count,json=acceleratorCount,proto3" json:"accelerator_count,omitempty"`
  4810. // The accelerator type resource name. List of supported accelerators
  4811. // [here](/compute/docs/gpus/#Introduction)
  4812. AcceleratorType string `protobuf:"bytes,2,opt,name=accelerator_type,json=acceleratorType,proto3" json:"accelerator_type,omitempty"`
  4813. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4814. XXX_unrecognized []byte `json:"-"`
  4815. XXX_sizecache int32 `json:"-"`
  4816. }
  4817. func (m *AcceleratorConfig) Reset() { *m = AcceleratorConfig{} }
  4818. func (m *AcceleratorConfig) String() string { return proto.CompactTextString(m) }
  4819. func (*AcceleratorConfig) ProtoMessage() {}
  4820. func (*AcceleratorConfig) Descriptor() ([]byte, []int) {
  4821. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{55}
  4822. }
  4823. func (m *AcceleratorConfig) XXX_Unmarshal(b []byte) error {
  4824. return xxx_messageInfo_AcceleratorConfig.Unmarshal(m, b)
  4825. }
  4826. func (m *AcceleratorConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4827. return xxx_messageInfo_AcceleratorConfig.Marshal(b, m, deterministic)
  4828. }
  4829. func (dst *AcceleratorConfig) XXX_Merge(src proto.Message) {
  4830. xxx_messageInfo_AcceleratorConfig.Merge(dst, src)
  4831. }
  4832. func (m *AcceleratorConfig) XXX_Size() int {
  4833. return xxx_messageInfo_AcceleratorConfig.Size(m)
  4834. }
  4835. func (m *AcceleratorConfig) XXX_DiscardUnknown() {
  4836. xxx_messageInfo_AcceleratorConfig.DiscardUnknown(m)
  4837. }
  4838. var xxx_messageInfo_AcceleratorConfig proto.InternalMessageInfo
  4839. func (m *AcceleratorConfig) GetAcceleratorCount() int64 {
  4840. if m != nil {
  4841. return m.AcceleratorCount
  4842. }
  4843. return 0
  4844. }
  4845. func (m *AcceleratorConfig) GetAcceleratorType() string {
  4846. if m != nil {
  4847. return m.AcceleratorType
  4848. }
  4849. return ""
  4850. }
  4851. // SetNetworkPolicyRequest enables/disables network policy for a cluster.
  4852. type SetNetworkPolicyRequest struct {
  4853. // Deprecated. The Google Developers Console [project ID or project
  4854. // number](https://developers.google.com/console/help/new/#projectnumber).
  4855. // This field has been deprecated and replaced by the name field.
  4856. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` // Deprecated: Do not use.
  4857. // Deprecated. The name of the Google Compute Engine
  4858. // [zone](/compute/docs/zones#available) in which the cluster
  4859. // resides.
  4860. // This field has been deprecated and replaced by the name field.
  4861. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"` // Deprecated: Do not use.
  4862. // Deprecated. The name of the cluster.
  4863. // This field has been deprecated and replaced by the name field.
  4864. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` // Deprecated: Do not use.
  4865. // Configuration options for the NetworkPolicy feature.
  4866. NetworkPolicy *NetworkPolicy `protobuf:"bytes,4,opt,name=network_policy,json=networkPolicy,proto3" json:"network_policy,omitempty"`
  4867. // The name (project, location, cluster id) of the cluster to set networking
  4868. // policy. Specified in the format 'projects/*/locations/*/clusters/*'.
  4869. Name string `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
  4870. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4871. XXX_unrecognized []byte `json:"-"`
  4872. XXX_sizecache int32 `json:"-"`
  4873. }
  4874. func (m *SetNetworkPolicyRequest) Reset() { *m = SetNetworkPolicyRequest{} }
  4875. func (m *SetNetworkPolicyRequest) String() string { return proto.CompactTextString(m) }
  4876. func (*SetNetworkPolicyRequest) ProtoMessage() {}
  4877. func (*SetNetworkPolicyRequest) Descriptor() ([]byte, []int) {
  4878. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{56}
  4879. }
  4880. func (m *SetNetworkPolicyRequest) XXX_Unmarshal(b []byte) error {
  4881. return xxx_messageInfo_SetNetworkPolicyRequest.Unmarshal(m, b)
  4882. }
  4883. func (m *SetNetworkPolicyRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4884. return xxx_messageInfo_SetNetworkPolicyRequest.Marshal(b, m, deterministic)
  4885. }
  4886. func (dst *SetNetworkPolicyRequest) XXX_Merge(src proto.Message) {
  4887. xxx_messageInfo_SetNetworkPolicyRequest.Merge(dst, src)
  4888. }
  4889. func (m *SetNetworkPolicyRequest) XXX_Size() int {
  4890. return xxx_messageInfo_SetNetworkPolicyRequest.Size(m)
  4891. }
  4892. func (m *SetNetworkPolicyRequest) XXX_DiscardUnknown() {
  4893. xxx_messageInfo_SetNetworkPolicyRequest.DiscardUnknown(m)
  4894. }
  4895. var xxx_messageInfo_SetNetworkPolicyRequest proto.InternalMessageInfo
  4896. // Deprecated: Do not use.
  4897. func (m *SetNetworkPolicyRequest) GetProjectId() string {
  4898. if m != nil {
  4899. return m.ProjectId
  4900. }
  4901. return ""
  4902. }
  4903. // Deprecated: Do not use.
  4904. func (m *SetNetworkPolicyRequest) GetZone() string {
  4905. if m != nil {
  4906. return m.Zone
  4907. }
  4908. return ""
  4909. }
  4910. // Deprecated: Do not use.
  4911. func (m *SetNetworkPolicyRequest) GetClusterId() string {
  4912. if m != nil {
  4913. return m.ClusterId
  4914. }
  4915. return ""
  4916. }
  4917. func (m *SetNetworkPolicyRequest) GetNetworkPolicy() *NetworkPolicy {
  4918. if m != nil {
  4919. return m.NetworkPolicy
  4920. }
  4921. return nil
  4922. }
  4923. func (m *SetNetworkPolicyRequest) GetName() string {
  4924. if m != nil {
  4925. return m.Name
  4926. }
  4927. return ""
  4928. }
  4929. // SetMaintenancePolicyRequest sets the maintenance policy for a cluster.
  4930. type SetMaintenancePolicyRequest struct {
  4931. // The Google Developers Console [project ID or project
  4932. // number](https://support.google.com/cloud/answer/6158840).
  4933. ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  4934. // The name of the Google Compute Engine
  4935. // [zone](/compute/docs/zones#available) in which the cluster
  4936. // resides.
  4937. Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"`
  4938. // The name of the cluster to update.
  4939. ClusterId string `protobuf:"bytes,3,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"`
  4940. // The maintenance policy to be set for the cluster. An empty field
  4941. // clears the existing maintenance policy.
  4942. MaintenancePolicy *MaintenancePolicy `protobuf:"bytes,4,opt,name=maintenance_policy,json=maintenancePolicy,proto3" json:"maintenance_policy,omitempty"`
  4943. // The name (project, location, cluster id) of the cluster to set maintenance
  4944. // policy.
  4945. // Specified in the format 'projects/*/locations/*/clusters/*'.
  4946. Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
  4947. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4948. XXX_unrecognized []byte `json:"-"`
  4949. XXX_sizecache int32 `json:"-"`
  4950. }
  4951. func (m *SetMaintenancePolicyRequest) Reset() { *m = SetMaintenancePolicyRequest{} }
  4952. func (m *SetMaintenancePolicyRequest) String() string { return proto.CompactTextString(m) }
  4953. func (*SetMaintenancePolicyRequest) ProtoMessage() {}
  4954. func (*SetMaintenancePolicyRequest) Descriptor() ([]byte, []int) {
  4955. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{57}
  4956. }
  4957. func (m *SetMaintenancePolicyRequest) XXX_Unmarshal(b []byte) error {
  4958. return xxx_messageInfo_SetMaintenancePolicyRequest.Unmarshal(m, b)
  4959. }
  4960. func (m *SetMaintenancePolicyRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4961. return xxx_messageInfo_SetMaintenancePolicyRequest.Marshal(b, m, deterministic)
  4962. }
  4963. func (dst *SetMaintenancePolicyRequest) XXX_Merge(src proto.Message) {
  4964. xxx_messageInfo_SetMaintenancePolicyRequest.Merge(dst, src)
  4965. }
  4966. func (m *SetMaintenancePolicyRequest) XXX_Size() int {
  4967. return xxx_messageInfo_SetMaintenancePolicyRequest.Size(m)
  4968. }
  4969. func (m *SetMaintenancePolicyRequest) XXX_DiscardUnknown() {
  4970. xxx_messageInfo_SetMaintenancePolicyRequest.DiscardUnknown(m)
  4971. }
  4972. var xxx_messageInfo_SetMaintenancePolicyRequest proto.InternalMessageInfo
  4973. func (m *SetMaintenancePolicyRequest) GetProjectId() string {
  4974. if m != nil {
  4975. return m.ProjectId
  4976. }
  4977. return ""
  4978. }
  4979. func (m *SetMaintenancePolicyRequest) GetZone() string {
  4980. if m != nil {
  4981. return m.Zone
  4982. }
  4983. return ""
  4984. }
  4985. func (m *SetMaintenancePolicyRequest) GetClusterId() string {
  4986. if m != nil {
  4987. return m.ClusterId
  4988. }
  4989. return ""
  4990. }
  4991. func (m *SetMaintenancePolicyRequest) GetMaintenancePolicy() *MaintenancePolicy {
  4992. if m != nil {
  4993. return m.MaintenancePolicy
  4994. }
  4995. return nil
  4996. }
  4997. func (m *SetMaintenancePolicyRequest) GetName() string {
  4998. if m != nil {
  4999. return m.Name
  5000. }
  5001. return ""
  5002. }
  5003. // NetworkConfig reports the relative names of network & subnetwork.
  5004. type NetworkConfig struct {
  5005. // Output only. The relative name of the Google Compute Engine
  5006. // [network][google.container.v1.NetworkConfig.network](/compute/docs/networks-and-firewalls#networks) to which
  5007. // the cluster is connected.
  5008. // Example: projects/my-project/global/networks/my-network
  5009. Network string `protobuf:"bytes,1,opt,name=network,proto3" json:"network,omitempty"`
  5010. // Output only. The relative name of the Google Compute Engine
  5011. // [subnetwork](/compute/docs/vpc) to which the cluster is connected.
  5012. // Example: projects/my-project/regions/us-central1/subnetworks/my-subnet
  5013. Subnetwork string `protobuf:"bytes,2,opt,name=subnetwork,proto3" json:"subnetwork,omitempty"`
  5014. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5015. XXX_unrecognized []byte `json:"-"`
  5016. XXX_sizecache int32 `json:"-"`
  5017. }
  5018. func (m *NetworkConfig) Reset() { *m = NetworkConfig{} }
  5019. func (m *NetworkConfig) String() string { return proto.CompactTextString(m) }
  5020. func (*NetworkConfig) ProtoMessage() {}
  5021. func (*NetworkConfig) Descriptor() ([]byte, []int) {
  5022. return fileDescriptor_cluster_service_ddce0395d8fb4971, []int{58}
  5023. }
  5024. func (m *NetworkConfig) XXX_Unmarshal(b []byte) error {
  5025. return xxx_messageInfo_NetworkConfig.Unmarshal(m, b)
  5026. }
  5027. func (m *NetworkConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5028. return xxx_messageInfo_NetworkConfig.Marshal(b, m, deterministic)
  5029. }
  5030. func (dst *NetworkConfig) XXX_Merge(src proto.Message) {
  5031. xxx_messageInfo_NetworkConfig.Merge(dst, src)
  5032. }
  5033. func (m *NetworkConfig) XXX_Size() int {
  5034. return xxx_messageInfo_NetworkConfig.Size(m)
  5035. }
  5036. func (m *NetworkConfig) XXX_DiscardUnknown() {
  5037. xxx_messageInfo_NetworkConfig.DiscardUnknown(m)
  5038. }
  5039. var xxx_messageInfo_NetworkConfig proto.InternalMessageInfo
  5040. func (m *NetworkConfig) GetNetwork() string {
  5041. if m != nil {
  5042. return m.Network
  5043. }
  5044. return ""
  5045. }
  5046. func (m *NetworkConfig) GetSubnetwork() string {
  5047. if m != nil {
  5048. return m.Subnetwork
  5049. }
  5050. return ""
  5051. }
  5052. func init() {
  5053. proto.RegisterType((*NodeConfig)(nil), "google.container.v1.NodeConfig")
  5054. proto.RegisterMapType((map[string]string)(nil), "google.container.v1.NodeConfig.LabelsEntry")
  5055. proto.RegisterMapType((map[string]string)(nil), "google.container.v1.NodeConfig.MetadataEntry")
  5056. proto.RegisterType((*MasterAuth)(nil), "google.container.v1.MasterAuth")
  5057. proto.RegisterType((*ClientCertificateConfig)(nil), "google.container.v1.ClientCertificateConfig")
  5058. proto.RegisterType((*AddonsConfig)(nil), "google.container.v1.AddonsConfig")
  5059. proto.RegisterType((*HttpLoadBalancing)(nil), "google.container.v1.HttpLoadBalancing")
  5060. proto.RegisterType((*HorizontalPodAutoscaling)(nil), "google.container.v1.HorizontalPodAutoscaling")
  5061. proto.RegisterType((*KubernetesDashboard)(nil), "google.container.v1.KubernetesDashboard")
  5062. proto.RegisterType((*NetworkPolicyConfig)(nil), "google.container.v1.NetworkPolicyConfig")
  5063. proto.RegisterType((*PrivateClusterConfig)(nil), "google.container.v1.PrivateClusterConfig")
  5064. proto.RegisterType((*MasterAuthorizedNetworksConfig)(nil), "google.container.v1.MasterAuthorizedNetworksConfig")
  5065. proto.RegisterType((*MasterAuthorizedNetworksConfig_CidrBlock)(nil), "google.container.v1.MasterAuthorizedNetworksConfig.CidrBlock")
  5066. proto.RegisterType((*LegacyAbac)(nil), "google.container.v1.LegacyAbac")
  5067. proto.RegisterType((*NetworkPolicy)(nil), "google.container.v1.NetworkPolicy")
  5068. proto.RegisterType((*IPAllocationPolicy)(nil), "google.container.v1.IPAllocationPolicy")
  5069. proto.RegisterType((*Cluster)(nil), "google.container.v1.Cluster")
  5070. proto.RegisterMapType((map[string]string)(nil), "google.container.v1.Cluster.ResourceLabelsEntry")
  5071. proto.RegisterType((*ClusterUpdate)(nil), "google.container.v1.ClusterUpdate")
  5072. proto.RegisterType((*Operation)(nil), "google.container.v1.Operation")
  5073. proto.RegisterType((*CreateClusterRequest)(nil), "google.container.v1.CreateClusterRequest")
  5074. proto.RegisterType((*GetClusterRequest)(nil), "google.container.v1.GetClusterRequest")
  5075. proto.RegisterType((*UpdateClusterRequest)(nil), "google.container.v1.UpdateClusterRequest")
  5076. proto.RegisterType((*UpdateNodePoolRequest)(nil), "google.container.v1.UpdateNodePoolRequest")
  5077. proto.RegisterType((*SetNodePoolAutoscalingRequest)(nil), "google.container.v1.SetNodePoolAutoscalingRequest")
  5078. proto.RegisterType((*SetLoggingServiceRequest)(nil), "google.container.v1.SetLoggingServiceRequest")
  5079. proto.RegisterType((*SetMonitoringServiceRequest)(nil), "google.container.v1.SetMonitoringServiceRequest")
  5080. proto.RegisterType((*SetAddonsConfigRequest)(nil), "google.container.v1.SetAddonsConfigRequest")
  5081. proto.RegisterType((*SetLocationsRequest)(nil), "google.container.v1.SetLocationsRequest")
  5082. proto.RegisterType((*UpdateMasterRequest)(nil), "google.container.v1.UpdateMasterRequest")
  5083. proto.RegisterType((*SetMasterAuthRequest)(nil), "google.container.v1.SetMasterAuthRequest")
  5084. proto.RegisterType((*DeleteClusterRequest)(nil), "google.container.v1.DeleteClusterRequest")
  5085. proto.RegisterType((*ListClustersRequest)(nil), "google.container.v1.ListClustersRequest")
  5086. proto.RegisterType((*ListClustersResponse)(nil), "google.container.v1.ListClustersResponse")
  5087. proto.RegisterType((*GetOperationRequest)(nil), "google.container.v1.GetOperationRequest")
  5088. proto.RegisterType((*ListOperationsRequest)(nil), "google.container.v1.ListOperationsRequest")
  5089. proto.RegisterType((*CancelOperationRequest)(nil), "google.container.v1.CancelOperationRequest")
  5090. proto.RegisterType((*ListOperationsResponse)(nil), "google.container.v1.ListOperationsResponse")
  5091. proto.RegisterType((*GetServerConfigRequest)(nil), "google.container.v1.GetServerConfigRequest")
  5092. proto.RegisterType((*ServerConfig)(nil), "google.container.v1.ServerConfig")
  5093. proto.RegisterType((*CreateNodePoolRequest)(nil), "google.container.v1.CreateNodePoolRequest")
  5094. proto.RegisterType((*DeleteNodePoolRequest)(nil), "google.container.v1.DeleteNodePoolRequest")
  5095. proto.RegisterType((*ListNodePoolsRequest)(nil), "google.container.v1.ListNodePoolsRequest")
  5096. proto.RegisterType((*GetNodePoolRequest)(nil), "google.container.v1.GetNodePoolRequest")
  5097. proto.RegisterType((*NodePool)(nil), "google.container.v1.NodePool")
  5098. proto.RegisterType((*NodeManagement)(nil), "google.container.v1.NodeManagement")
  5099. proto.RegisterType((*AutoUpgradeOptions)(nil), "google.container.v1.AutoUpgradeOptions")
  5100. proto.RegisterType((*MaintenancePolicy)(nil), "google.container.v1.MaintenancePolicy")
  5101. proto.RegisterType((*MaintenanceWindow)(nil), "google.container.v1.MaintenanceWindow")
  5102. proto.RegisterType((*DailyMaintenanceWindow)(nil), "google.container.v1.DailyMaintenanceWindow")
  5103. proto.RegisterType((*SetNodePoolManagementRequest)(nil), "google.container.v1.SetNodePoolManagementRequest")
  5104. proto.RegisterType((*SetNodePoolSizeRequest)(nil), "google.container.v1.SetNodePoolSizeRequest")
  5105. proto.RegisterType((*RollbackNodePoolUpgradeRequest)(nil), "google.container.v1.RollbackNodePoolUpgradeRequest")
  5106. proto.RegisterType((*ListNodePoolsResponse)(nil), "google.container.v1.ListNodePoolsResponse")
  5107. proto.RegisterType((*NodePoolAutoscaling)(nil), "google.container.v1.NodePoolAutoscaling")
  5108. proto.RegisterType((*SetLabelsRequest)(nil), "google.container.v1.SetLabelsRequest")
  5109. proto.RegisterMapType((map[string]string)(nil), "google.container.v1.SetLabelsRequest.ResourceLabelsEntry")
  5110. proto.RegisterType((*SetLegacyAbacRequest)(nil), "google.container.v1.SetLegacyAbacRequest")
  5111. proto.RegisterType((*StartIPRotationRequest)(nil), "google.container.v1.StartIPRotationRequest")
  5112. proto.RegisterType((*CompleteIPRotationRequest)(nil), "google.container.v1.CompleteIPRotationRequest")
  5113. proto.RegisterType((*AcceleratorConfig)(nil), "google.container.v1.AcceleratorConfig")
  5114. proto.RegisterType((*SetNetworkPolicyRequest)(nil), "google.container.v1.SetNetworkPolicyRequest")
  5115. proto.RegisterType((*SetMaintenancePolicyRequest)(nil), "google.container.v1.SetMaintenancePolicyRequest")
  5116. proto.RegisterType((*NetworkConfig)(nil), "google.container.v1.NetworkConfig")
  5117. proto.RegisterEnum("google.container.v1.NetworkPolicy_Provider", NetworkPolicy_Provider_name, NetworkPolicy_Provider_value)
  5118. proto.RegisterEnum("google.container.v1.Cluster_Status", Cluster_Status_name, Cluster_Status_value)
  5119. proto.RegisterEnum("google.container.v1.Operation_Status", Operation_Status_name, Operation_Status_value)
  5120. proto.RegisterEnum("google.container.v1.Operation_Type", Operation_Type_name, Operation_Type_value)
  5121. proto.RegisterEnum("google.container.v1.SetMasterAuthRequest_Action", SetMasterAuthRequest_Action_name, SetMasterAuthRequest_Action_value)
  5122. proto.RegisterEnum("google.container.v1.NodePool_Status", NodePool_Status_name, NodePool_Status_value)
  5123. }
  5124. // Reference imports to suppress errors if they are not otherwise used.
  5125. var _ context.Context
  5126. var _ grpc.ClientConn
  5127. // This is a compile-time assertion to ensure that this generated file
  5128. // is compatible with the grpc package it is being compiled against.
  5129. const _ = grpc.SupportPackageIsVersion4
  5130. // ClusterManagerClient is the client API for ClusterManager service.
  5131. //
  5132. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  5133. type ClusterManagerClient interface {
  5134. // Lists all clusters owned by a project in either the specified zone or all
  5135. // zones.
  5136. ListClusters(ctx context.Context, in *ListClustersRequest, opts ...grpc.CallOption) (*ListClustersResponse, error)
  5137. // Gets the details of a specific cluster.
  5138. GetCluster(ctx context.Context, in *GetClusterRequest, opts ...grpc.CallOption) (*Cluster, error)
  5139. // Creates a cluster, consisting of the specified number and type of Google
  5140. // Compute Engine instances.
  5141. //
  5142. // By default, the cluster is created in the project's
  5143. // [default network](/compute/docs/networks-and-firewalls#networks).
  5144. //
  5145. // One firewall is added for the cluster. After cluster creation,
  5146. // the cluster creates routes for each node to allow the containers
  5147. // on that node to communicate with all other instances in the
  5148. // cluster.
  5149. //
  5150. // Finally, an entry is added to the project's global metadata indicating
  5151. // which CIDR range is being used by the cluster.
  5152. CreateCluster(ctx context.Context, in *CreateClusterRequest, opts ...grpc.CallOption) (*Operation, error)
  5153. // Updates the settings of a specific cluster.
  5154. UpdateCluster(ctx context.Context, in *UpdateClusterRequest, opts ...grpc.CallOption) (*Operation, error)
  5155. // Updates the version and/or image type for a specific node pool.
  5156. UpdateNodePool(ctx context.Context, in *UpdateNodePoolRequest, opts ...grpc.CallOption) (*Operation, error)
  5157. // Sets the autoscaling settings for a specific node pool.
  5158. SetNodePoolAutoscaling(ctx context.Context, in *SetNodePoolAutoscalingRequest, opts ...grpc.CallOption) (*Operation, error)
  5159. // Sets the logging service for a specific cluster.
  5160. SetLoggingService(ctx context.Context, in *SetLoggingServiceRequest, opts ...grpc.CallOption) (*Operation, error)
  5161. // Sets the monitoring service for a specific cluster.
  5162. SetMonitoringService(ctx context.Context, in *SetMonitoringServiceRequest, opts ...grpc.CallOption) (*Operation, error)
  5163. // Sets the addons for a specific cluster.
  5164. SetAddonsConfig(ctx context.Context, in *SetAddonsConfigRequest, opts ...grpc.CallOption) (*Operation, error)
  5165. // Sets the locations for a specific cluster.
  5166. SetLocations(ctx context.Context, in *SetLocationsRequest, opts ...grpc.CallOption) (*Operation, error)
  5167. // Updates the master for a specific cluster.
  5168. UpdateMaster(ctx context.Context, in *UpdateMasterRequest, opts ...grpc.CallOption) (*Operation, error)
  5169. // Used to set master auth materials. Currently supports :-
  5170. // Changing the admin password for a specific cluster.
  5171. // This can be either via password generation or explicitly set the password.
  5172. SetMasterAuth(ctx context.Context, in *SetMasterAuthRequest, opts ...grpc.CallOption) (*Operation, error)
  5173. // Deletes the cluster, including the Kubernetes endpoint and all worker
  5174. // nodes.
  5175. //
  5176. // Firewalls and routes that were configured during cluster creation
  5177. // are also deleted.
  5178. //
  5179. // Other Google Compute Engine resources that might be in use by the cluster
  5180. // (e.g. load balancer resources) will not be deleted if they weren't present
  5181. // at the initial create time.
  5182. DeleteCluster(ctx context.Context, in *DeleteClusterRequest, opts ...grpc.CallOption) (*Operation, error)
  5183. // Lists all operations in a project in a specific zone or all zones.
  5184. ListOperations(ctx context.Context, in *ListOperationsRequest, opts ...grpc.CallOption) (*ListOperationsResponse, error)
  5185. // Gets the specified operation.
  5186. GetOperation(ctx context.Context, in *GetOperationRequest, opts ...grpc.CallOption) (*Operation, error)
  5187. // Cancels the specified operation.
  5188. CancelOperation(ctx context.Context, in *CancelOperationRequest, opts ...grpc.CallOption) (*empty.Empty, error)
  5189. // Returns configuration info about the Kubernetes Engine service.
  5190. GetServerConfig(ctx context.Context, in *GetServerConfigRequest, opts ...grpc.CallOption) (*ServerConfig, error)
  5191. // Lists the node pools for a cluster.
  5192. ListNodePools(ctx context.Context, in *ListNodePoolsRequest, opts ...grpc.CallOption) (*ListNodePoolsResponse, error)
  5193. // Retrieves the node pool requested.
  5194. GetNodePool(ctx context.Context, in *GetNodePoolRequest, opts ...grpc.CallOption) (*NodePool, error)
  5195. // Creates a node pool for a cluster.
  5196. CreateNodePool(ctx context.Context, in *CreateNodePoolRequest, opts ...grpc.CallOption) (*Operation, error)
  5197. // Deletes a node pool from a cluster.
  5198. DeleteNodePool(ctx context.Context, in *DeleteNodePoolRequest, opts ...grpc.CallOption) (*Operation, error)
  5199. // Roll back the previously Aborted or Failed NodePool upgrade.
  5200. // This will be an no-op if the last upgrade successfully completed.
  5201. RollbackNodePoolUpgrade(ctx context.Context, in *RollbackNodePoolUpgradeRequest, opts ...grpc.CallOption) (*Operation, error)
  5202. // Sets the NodeManagement options for a node pool.
  5203. SetNodePoolManagement(ctx context.Context, in *SetNodePoolManagementRequest, opts ...grpc.CallOption) (*Operation, error)
  5204. // Sets labels on a cluster.
  5205. SetLabels(ctx context.Context, in *SetLabelsRequest, opts ...grpc.CallOption) (*Operation, error)
  5206. // Enables or disables the ABAC authorization mechanism on a cluster.
  5207. SetLegacyAbac(ctx context.Context, in *SetLegacyAbacRequest, opts ...grpc.CallOption) (*Operation, error)
  5208. // Start master IP rotation.
  5209. StartIPRotation(ctx context.Context, in *StartIPRotationRequest, opts ...grpc.CallOption) (*Operation, error)
  5210. // Completes master IP rotation.
  5211. CompleteIPRotation(ctx context.Context, in *CompleteIPRotationRequest, opts ...grpc.CallOption) (*Operation, error)
  5212. // Sets the size for a specific node pool.
  5213. SetNodePoolSize(ctx context.Context, in *SetNodePoolSizeRequest, opts ...grpc.CallOption) (*Operation, error)
  5214. // Enables/Disables Network Policy for a cluster.
  5215. SetNetworkPolicy(ctx context.Context, in *SetNetworkPolicyRequest, opts ...grpc.CallOption) (*Operation, error)
  5216. // Sets the maintenance policy for a cluster.
  5217. SetMaintenancePolicy(ctx context.Context, in *SetMaintenancePolicyRequest, opts ...grpc.CallOption) (*Operation, error)
  5218. }
  5219. type clusterManagerClient struct {
  5220. cc *grpc.ClientConn
  5221. }
  5222. func NewClusterManagerClient(cc *grpc.ClientConn) ClusterManagerClient {
  5223. return &clusterManagerClient{cc}
  5224. }
  5225. func (c *clusterManagerClient) ListClusters(ctx context.Context, in *ListClustersRequest, opts ...grpc.CallOption) (*ListClustersResponse, error) {
  5226. out := new(ListClustersResponse)
  5227. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/ListClusters", in, out, opts...)
  5228. if err != nil {
  5229. return nil, err
  5230. }
  5231. return out, nil
  5232. }
  5233. func (c *clusterManagerClient) GetCluster(ctx context.Context, in *GetClusterRequest, opts ...grpc.CallOption) (*Cluster, error) {
  5234. out := new(Cluster)
  5235. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/GetCluster", in, out, opts...)
  5236. if err != nil {
  5237. return nil, err
  5238. }
  5239. return out, nil
  5240. }
  5241. func (c *clusterManagerClient) CreateCluster(ctx context.Context, in *CreateClusterRequest, opts ...grpc.CallOption) (*Operation, error) {
  5242. out := new(Operation)
  5243. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/CreateCluster", in, out, opts...)
  5244. if err != nil {
  5245. return nil, err
  5246. }
  5247. return out, nil
  5248. }
  5249. func (c *clusterManagerClient) UpdateCluster(ctx context.Context, in *UpdateClusterRequest, opts ...grpc.CallOption) (*Operation, error) {
  5250. out := new(Operation)
  5251. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/UpdateCluster", in, out, opts...)
  5252. if err != nil {
  5253. return nil, err
  5254. }
  5255. return out, nil
  5256. }
  5257. func (c *clusterManagerClient) UpdateNodePool(ctx context.Context, in *UpdateNodePoolRequest, opts ...grpc.CallOption) (*Operation, error) {
  5258. out := new(Operation)
  5259. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/UpdateNodePool", in, out, opts...)
  5260. if err != nil {
  5261. return nil, err
  5262. }
  5263. return out, nil
  5264. }
  5265. func (c *clusterManagerClient) SetNodePoolAutoscaling(ctx context.Context, in *SetNodePoolAutoscalingRequest, opts ...grpc.CallOption) (*Operation, error) {
  5266. out := new(Operation)
  5267. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/SetNodePoolAutoscaling", in, out, opts...)
  5268. if err != nil {
  5269. return nil, err
  5270. }
  5271. return out, nil
  5272. }
  5273. func (c *clusterManagerClient) SetLoggingService(ctx context.Context, in *SetLoggingServiceRequest, opts ...grpc.CallOption) (*Operation, error) {
  5274. out := new(Operation)
  5275. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/SetLoggingService", in, out, opts...)
  5276. if err != nil {
  5277. return nil, err
  5278. }
  5279. return out, nil
  5280. }
  5281. func (c *clusterManagerClient) SetMonitoringService(ctx context.Context, in *SetMonitoringServiceRequest, opts ...grpc.CallOption) (*Operation, error) {
  5282. out := new(Operation)
  5283. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/SetMonitoringService", in, out, opts...)
  5284. if err != nil {
  5285. return nil, err
  5286. }
  5287. return out, nil
  5288. }
  5289. func (c *clusterManagerClient) SetAddonsConfig(ctx context.Context, in *SetAddonsConfigRequest, opts ...grpc.CallOption) (*Operation, error) {
  5290. out := new(Operation)
  5291. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/SetAddonsConfig", in, out, opts...)
  5292. if err != nil {
  5293. return nil, err
  5294. }
  5295. return out, nil
  5296. }
  5297. func (c *clusterManagerClient) SetLocations(ctx context.Context, in *SetLocationsRequest, opts ...grpc.CallOption) (*Operation, error) {
  5298. out := new(Operation)
  5299. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/SetLocations", in, out, opts...)
  5300. if err != nil {
  5301. return nil, err
  5302. }
  5303. return out, nil
  5304. }
  5305. func (c *clusterManagerClient) UpdateMaster(ctx context.Context, in *UpdateMasterRequest, opts ...grpc.CallOption) (*Operation, error) {
  5306. out := new(Operation)
  5307. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/UpdateMaster", in, out, opts...)
  5308. if err != nil {
  5309. return nil, err
  5310. }
  5311. return out, nil
  5312. }
  5313. func (c *clusterManagerClient) SetMasterAuth(ctx context.Context, in *SetMasterAuthRequest, opts ...grpc.CallOption) (*Operation, error) {
  5314. out := new(Operation)
  5315. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/SetMasterAuth", in, out, opts...)
  5316. if err != nil {
  5317. return nil, err
  5318. }
  5319. return out, nil
  5320. }
  5321. func (c *clusterManagerClient) DeleteCluster(ctx context.Context, in *DeleteClusterRequest, opts ...grpc.CallOption) (*Operation, error) {
  5322. out := new(Operation)
  5323. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/DeleteCluster", in, out, opts...)
  5324. if err != nil {
  5325. return nil, err
  5326. }
  5327. return out, nil
  5328. }
  5329. func (c *clusterManagerClient) ListOperations(ctx context.Context, in *ListOperationsRequest, opts ...grpc.CallOption) (*ListOperationsResponse, error) {
  5330. out := new(ListOperationsResponse)
  5331. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/ListOperations", in, out, opts...)
  5332. if err != nil {
  5333. return nil, err
  5334. }
  5335. return out, nil
  5336. }
  5337. func (c *clusterManagerClient) GetOperation(ctx context.Context, in *GetOperationRequest, opts ...grpc.CallOption) (*Operation, error) {
  5338. out := new(Operation)
  5339. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/GetOperation", in, out, opts...)
  5340. if err != nil {
  5341. return nil, err
  5342. }
  5343. return out, nil
  5344. }
  5345. func (c *clusterManagerClient) CancelOperation(ctx context.Context, in *CancelOperationRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
  5346. out := new(empty.Empty)
  5347. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/CancelOperation", in, out, opts...)
  5348. if err != nil {
  5349. return nil, err
  5350. }
  5351. return out, nil
  5352. }
  5353. func (c *clusterManagerClient) GetServerConfig(ctx context.Context, in *GetServerConfigRequest, opts ...grpc.CallOption) (*ServerConfig, error) {
  5354. out := new(ServerConfig)
  5355. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/GetServerConfig", in, out, opts...)
  5356. if err != nil {
  5357. return nil, err
  5358. }
  5359. return out, nil
  5360. }
  5361. func (c *clusterManagerClient) ListNodePools(ctx context.Context, in *ListNodePoolsRequest, opts ...grpc.CallOption) (*ListNodePoolsResponse, error) {
  5362. out := new(ListNodePoolsResponse)
  5363. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/ListNodePools", in, out, opts...)
  5364. if err != nil {
  5365. return nil, err
  5366. }
  5367. return out, nil
  5368. }
  5369. func (c *clusterManagerClient) GetNodePool(ctx context.Context, in *GetNodePoolRequest, opts ...grpc.CallOption) (*NodePool, error) {
  5370. out := new(NodePool)
  5371. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/GetNodePool", in, out, opts...)
  5372. if err != nil {
  5373. return nil, err
  5374. }
  5375. return out, nil
  5376. }
  5377. func (c *clusterManagerClient) CreateNodePool(ctx context.Context, in *CreateNodePoolRequest, opts ...grpc.CallOption) (*Operation, error) {
  5378. out := new(Operation)
  5379. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/CreateNodePool", in, out, opts...)
  5380. if err != nil {
  5381. return nil, err
  5382. }
  5383. return out, nil
  5384. }
  5385. func (c *clusterManagerClient) DeleteNodePool(ctx context.Context, in *DeleteNodePoolRequest, opts ...grpc.CallOption) (*Operation, error) {
  5386. out := new(Operation)
  5387. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/DeleteNodePool", in, out, opts...)
  5388. if err != nil {
  5389. return nil, err
  5390. }
  5391. return out, nil
  5392. }
  5393. func (c *clusterManagerClient) RollbackNodePoolUpgrade(ctx context.Context, in *RollbackNodePoolUpgradeRequest, opts ...grpc.CallOption) (*Operation, error) {
  5394. out := new(Operation)
  5395. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/RollbackNodePoolUpgrade", in, out, opts...)
  5396. if err != nil {
  5397. return nil, err
  5398. }
  5399. return out, nil
  5400. }
  5401. func (c *clusterManagerClient) SetNodePoolManagement(ctx context.Context, in *SetNodePoolManagementRequest, opts ...grpc.CallOption) (*Operation, error) {
  5402. out := new(Operation)
  5403. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/SetNodePoolManagement", in, out, opts...)
  5404. if err != nil {
  5405. return nil, err
  5406. }
  5407. return out, nil
  5408. }
  5409. func (c *clusterManagerClient) SetLabels(ctx context.Context, in *SetLabelsRequest, opts ...grpc.CallOption) (*Operation, error) {
  5410. out := new(Operation)
  5411. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/SetLabels", in, out, opts...)
  5412. if err != nil {
  5413. return nil, err
  5414. }
  5415. return out, nil
  5416. }
  5417. func (c *clusterManagerClient) SetLegacyAbac(ctx context.Context, in *SetLegacyAbacRequest, opts ...grpc.CallOption) (*Operation, error) {
  5418. out := new(Operation)
  5419. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/SetLegacyAbac", in, out, opts...)
  5420. if err != nil {
  5421. return nil, err
  5422. }
  5423. return out, nil
  5424. }
  5425. func (c *clusterManagerClient) StartIPRotation(ctx context.Context, in *StartIPRotationRequest, opts ...grpc.CallOption) (*Operation, error) {
  5426. out := new(Operation)
  5427. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/StartIPRotation", in, out, opts...)
  5428. if err != nil {
  5429. return nil, err
  5430. }
  5431. return out, nil
  5432. }
  5433. func (c *clusterManagerClient) CompleteIPRotation(ctx context.Context, in *CompleteIPRotationRequest, opts ...grpc.CallOption) (*Operation, error) {
  5434. out := new(Operation)
  5435. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/CompleteIPRotation", in, out, opts...)
  5436. if err != nil {
  5437. return nil, err
  5438. }
  5439. return out, nil
  5440. }
  5441. func (c *clusterManagerClient) SetNodePoolSize(ctx context.Context, in *SetNodePoolSizeRequest, opts ...grpc.CallOption) (*Operation, error) {
  5442. out := new(Operation)
  5443. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/SetNodePoolSize", in, out, opts...)
  5444. if err != nil {
  5445. return nil, err
  5446. }
  5447. return out, nil
  5448. }
  5449. func (c *clusterManagerClient) SetNetworkPolicy(ctx context.Context, in *SetNetworkPolicyRequest, opts ...grpc.CallOption) (*Operation, error) {
  5450. out := new(Operation)
  5451. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/SetNetworkPolicy", in, out, opts...)
  5452. if err != nil {
  5453. return nil, err
  5454. }
  5455. return out, nil
  5456. }
  5457. func (c *clusterManagerClient) SetMaintenancePolicy(ctx context.Context, in *SetMaintenancePolicyRequest, opts ...grpc.CallOption) (*Operation, error) {
  5458. out := new(Operation)
  5459. err := c.cc.Invoke(ctx, "/google.container.v1.ClusterManager/SetMaintenancePolicy", in, out, opts...)
  5460. if err != nil {
  5461. return nil, err
  5462. }
  5463. return out, nil
  5464. }
  5465. // ClusterManagerServer is the server API for ClusterManager service.
  5466. type ClusterManagerServer interface {
  5467. // Lists all clusters owned by a project in either the specified zone or all
  5468. // zones.
  5469. ListClusters(context.Context, *ListClustersRequest) (*ListClustersResponse, error)
  5470. // Gets the details of a specific cluster.
  5471. GetCluster(context.Context, *GetClusterRequest) (*Cluster, error)
  5472. // Creates a cluster, consisting of the specified number and type of Google
  5473. // Compute Engine instances.
  5474. //
  5475. // By default, the cluster is created in the project's
  5476. // [default network](/compute/docs/networks-and-firewalls#networks).
  5477. //
  5478. // One firewall is added for the cluster. After cluster creation,
  5479. // the cluster creates routes for each node to allow the containers
  5480. // on that node to communicate with all other instances in the
  5481. // cluster.
  5482. //
  5483. // Finally, an entry is added to the project's global metadata indicating
  5484. // which CIDR range is being used by the cluster.
  5485. CreateCluster(context.Context, *CreateClusterRequest) (*Operation, error)
  5486. // Updates the settings of a specific cluster.
  5487. UpdateCluster(context.Context, *UpdateClusterRequest) (*Operation, error)
  5488. // Updates the version and/or image type for a specific node pool.
  5489. UpdateNodePool(context.Context, *UpdateNodePoolRequest) (*Operation, error)
  5490. // Sets the autoscaling settings for a specific node pool.
  5491. SetNodePoolAutoscaling(context.Context, *SetNodePoolAutoscalingRequest) (*Operation, error)
  5492. // Sets the logging service for a specific cluster.
  5493. SetLoggingService(context.Context, *SetLoggingServiceRequest) (*Operation, error)
  5494. // Sets the monitoring service for a specific cluster.
  5495. SetMonitoringService(context.Context, *SetMonitoringServiceRequest) (*Operation, error)
  5496. // Sets the addons for a specific cluster.
  5497. SetAddonsConfig(context.Context, *SetAddonsConfigRequest) (*Operation, error)
  5498. // Sets the locations for a specific cluster.
  5499. SetLocations(context.Context, *SetLocationsRequest) (*Operation, error)
  5500. // Updates the master for a specific cluster.
  5501. UpdateMaster(context.Context, *UpdateMasterRequest) (*Operation, error)
  5502. // Used to set master auth materials. Currently supports :-
  5503. // Changing the admin password for a specific cluster.
  5504. // This can be either via password generation or explicitly set the password.
  5505. SetMasterAuth(context.Context, *SetMasterAuthRequest) (*Operation, error)
  5506. // Deletes the cluster, including the Kubernetes endpoint and all worker
  5507. // nodes.
  5508. //
  5509. // Firewalls and routes that were configured during cluster creation
  5510. // are also deleted.
  5511. //
  5512. // Other Google Compute Engine resources that might be in use by the cluster
  5513. // (e.g. load balancer resources) will not be deleted if they weren't present
  5514. // at the initial create time.
  5515. DeleteCluster(context.Context, *DeleteClusterRequest) (*Operation, error)
  5516. // Lists all operations in a project in a specific zone or all zones.
  5517. ListOperations(context.Context, *ListOperationsRequest) (*ListOperationsResponse, error)
  5518. // Gets the specified operation.
  5519. GetOperation(context.Context, *GetOperationRequest) (*Operation, error)
  5520. // Cancels the specified operation.
  5521. CancelOperation(context.Context, *CancelOperationRequest) (*empty.Empty, error)
  5522. // Returns configuration info about the Kubernetes Engine service.
  5523. GetServerConfig(context.Context, *GetServerConfigRequest) (*ServerConfig, error)
  5524. // Lists the node pools for a cluster.
  5525. ListNodePools(context.Context, *ListNodePoolsRequest) (*ListNodePoolsResponse, error)
  5526. // Retrieves the node pool requested.
  5527. GetNodePool(context.Context, *GetNodePoolRequest) (*NodePool, error)
  5528. // Creates a node pool for a cluster.
  5529. CreateNodePool(context.Context, *CreateNodePoolRequest) (*Operation, error)
  5530. // Deletes a node pool from a cluster.
  5531. DeleteNodePool(context.Context, *DeleteNodePoolRequest) (*Operation, error)
  5532. // Roll back the previously Aborted or Failed NodePool upgrade.
  5533. // This will be an no-op if the last upgrade successfully completed.
  5534. RollbackNodePoolUpgrade(context.Context, *RollbackNodePoolUpgradeRequest) (*Operation, error)
  5535. // Sets the NodeManagement options for a node pool.
  5536. SetNodePoolManagement(context.Context, *SetNodePoolManagementRequest) (*Operation, error)
  5537. // Sets labels on a cluster.
  5538. SetLabels(context.Context, *SetLabelsRequest) (*Operation, error)
  5539. // Enables or disables the ABAC authorization mechanism on a cluster.
  5540. SetLegacyAbac(context.Context, *SetLegacyAbacRequest) (*Operation, error)
  5541. // Start master IP rotation.
  5542. StartIPRotation(context.Context, *StartIPRotationRequest) (*Operation, error)
  5543. // Completes master IP rotation.
  5544. CompleteIPRotation(context.Context, *CompleteIPRotationRequest) (*Operation, error)
  5545. // Sets the size for a specific node pool.
  5546. SetNodePoolSize(context.Context, *SetNodePoolSizeRequest) (*Operation, error)
  5547. // Enables/Disables Network Policy for a cluster.
  5548. SetNetworkPolicy(context.Context, *SetNetworkPolicyRequest) (*Operation, error)
  5549. // Sets the maintenance policy for a cluster.
  5550. SetMaintenancePolicy(context.Context, *SetMaintenancePolicyRequest) (*Operation, error)
  5551. }
  5552. func RegisterClusterManagerServer(s *grpc.Server, srv ClusterManagerServer) {
  5553. s.RegisterService(&_ClusterManager_serviceDesc, srv)
  5554. }
  5555. func _ClusterManager_ListClusters_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5556. in := new(ListClustersRequest)
  5557. if err := dec(in); err != nil {
  5558. return nil, err
  5559. }
  5560. if interceptor == nil {
  5561. return srv.(ClusterManagerServer).ListClusters(ctx, in)
  5562. }
  5563. info := &grpc.UnaryServerInfo{
  5564. Server: srv,
  5565. FullMethod: "/google.container.v1.ClusterManager/ListClusters",
  5566. }
  5567. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5568. return srv.(ClusterManagerServer).ListClusters(ctx, req.(*ListClustersRequest))
  5569. }
  5570. return interceptor(ctx, in, info, handler)
  5571. }
  5572. func _ClusterManager_GetCluster_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5573. in := new(GetClusterRequest)
  5574. if err := dec(in); err != nil {
  5575. return nil, err
  5576. }
  5577. if interceptor == nil {
  5578. return srv.(ClusterManagerServer).GetCluster(ctx, in)
  5579. }
  5580. info := &grpc.UnaryServerInfo{
  5581. Server: srv,
  5582. FullMethod: "/google.container.v1.ClusterManager/GetCluster",
  5583. }
  5584. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5585. return srv.(ClusterManagerServer).GetCluster(ctx, req.(*GetClusterRequest))
  5586. }
  5587. return interceptor(ctx, in, info, handler)
  5588. }
  5589. func _ClusterManager_CreateCluster_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5590. in := new(CreateClusterRequest)
  5591. if err := dec(in); err != nil {
  5592. return nil, err
  5593. }
  5594. if interceptor == nil {
  5595. return srv.(ClusterManagerServer).CreateCluster(ctx, in)
  5596. }
  5597. info := &grpc.UnaryServerInfo{
  5598. Server: srv,
  5599. FullMethod: "/google.container.v1.ClusterManager/CreateCluster",
  5600. }
  5601. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5602. return srv.(ClusterManagerServer).CreateCluster(ctx, req.(*CreateClusterRequest))
  5603. }
  5604. return interceptor(ctx, in, info, handler)
  5605. }
  5606. func _ClusterManager_UpdateCluster_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5607. in := new(UpdateClusterRequest)
  5608. if err := dec(in); err != nil {
  5609. return nil, err
  5610. }
  5611. if interceptor == nil {
  5612. return srv.(ClusterManagerServer).UpdateCluster(ctx, in)
  5613. }
  5614. info := &grpc.UnaryServerInfo{
  5615. Server: srv,
  5616. FullMethod: "/google.container.v1.ClusterManager/UpdateCluster",
  5617. }
  5618. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5619. return srv.(ClusterManagerServer).UpdateCluster(ctx, req.(*UpdateClusterRequest))
  5620. }
  5621. return interceptor(ctx, in, info, handler)
  5622. }
  5623. func _ClusterManager_UpdateNodePool_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5624. in := new(UpdateNodePoolRequest)
  5625. if err := dec(in); err != nil {
  5626. return nil, err
  5627. }
  5628. if interceptor == nil {
  5629. return srv.(ClusterManagerServer).UpdateNodePool(ctx, in)
  5630. }
  5631. info := &grpc.UnaryServerInfo{
  5632. Server: srv,
  5633. FullMethod: "/google.container.v1.ClusterManager/UpdateNodePool",
  5634. }
  5635. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5636. return srv.(ClusterManagerServer).UpdateNodePool(ctx, req.(*UpdateNodePoolRequest))
  5637. }
  5638. return interceptor(ctx, in, info, handler)
  5639. }
  5640. func _ClusterManager_SetNodePoolAutoscaling_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5641. in := new(SetNodePoolAutoscalingRequest)
  5642. if err := dec(in); err != nil {
  5643. return nil, err
  5644. }
  5645. if interceptor == nil {
  5646. return srv.(ClusterManagerServer).SetNodePoolAutoscaling(ctx, in)
  5647. }
  5648. info := &grpc.UnaryServerInfo{
  5649. Server: srv,
  5650. FullMethod: "/google.container.v1.ClusterManager/SetNodePoolAutoscaling",
  5651. }
  5652. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5653. return srv.(ClusterManagerServer).SetNodePoolAutoscaling(ctx, req.(*SetNodePoolAutoscalingRequest))
  5654. }
  5655. return interceptor(ctx, in, info, handler)
  5656. }
  5657. func _ClusterManager_SetLoggingService_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5658. in := new(SetLoggingServiceRequest)
  5659. if err := dec(in); err != nil {
  5660. return nil, err
  5661. }
  5662. if interceptor == nil {
  5663. return srv.(ClusterManagerServer).SetLoggingService(ctx, in)
  5664. }
  5665. info := &grpc.UnaryServerInfo{
  5666. Server: srv,
  5667. FullMethod: "/google.container.v1.ClusterManager/SetLoggingService",
  5668. }
  5669. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5670. return srv.(ClusterManagerServer).SetLoggingService(ctx, req.(*SetLoggingServiceRequest))
  5671. }
  5672. return interceptor(ctx, in, info, handler)
  5673. }
  5674. func _ClusterManager_SetMonitoringService_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5675. in := new(SetMonitoringServiceRequest)
  5676. if err := dec(in); err != nil {
  5677. return nil, err
  5678. }
  5679. if interceptor == nil {
  5680. return srv.(ClusterManagerServer).SetMonitoringService(ctx, in)
  5681. }
  5682. info := &grpc.UnaryServerInfo{
  5683. Server: srv,
  5684. FullMethod: "/google.container.v1.ClusterManager/SetMonitoringService",
  5685. }
  5686. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5687. return srv.(ClusterManagerServer).SetMonitoringService(ctx, req.(*SetMonitoringServiceRequest))
  5688. }
  5689. return interceptor(ctx, in, info, handler)
  5690. }
  5691. func _ClusterManager_SetAddonsConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5692. in := new(SetAddonsConfigRequest)
  5693. if err := dec(in); err != nil {
  5694. return nil, err
  5695. }
  5696. if interceptor == nil {
  5697. return srv.(ClusterManagerServer).SetAddonsConfig(ctx, in)
  5698. }
  5699. info := &grpc.UnaryServerInfo{
  5700. Server: srv,
  5701. FullMethod: "/google.container.v1.ClusterManager/SetAddonsConfig",
  5702. }
  5703. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5704. return srv.(ClusterManagerServer).SetAddonsConfig(ctx, req.(*SetAddonsConfigRequest))
  5705. }
  5706. return interceptor(ctx, in, info, handler)
  5707. }
  5708. func _ClusterManager_SetLocations_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5709. in := new(SetLocationsRequest)
  5710. if err := dec(in); err != nil {
  5711. return nil, err
  5712. }
  5713. if interceptor == nil {
  5714. return srv.(ClusterManagerServer).SetLocations(ctx, in)
  5715. }
  5716. info := &grpc.UnaryServerInfo{
  5717. Server: srv,
  5718. FullMethod: "/google.container.v1.ClusterManager/SetLocations",
  5719. }
  5720. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5721. return srv.(ClusterManagerServer).SetLocations(ctx, req.(*SetLocationsRequest))
  5722. }
  5723. return interceptor(ctx, in, info, handler)
  5724. }
  5725. func _ClusterManager_UpdateMaster_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5726. in := new(UpdateMasterRequest)
  5727. if err := dec(in); err != nil {
  5728. return nil, err
  5729. }
  5730. if interceptor == nil {
  5731. return srv.(ClusterManagerServer).UpdateMaster(ctx, in)
  5732. }
  5733. info := &grpc.UnaryServerInfo{
  5734. Server: srv,
  5735. FullMethod: "/google.container.v1.ClusterManager/UpdateMaster",
  5736. }
  5737. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5738. return srv.(ClusterManagerServer).UpdateMaster(ctx, req.(*UpdateMasterRequest))
  5739. }
  5740. return interceptor(ctx, in, info, handler)
  5741. }
  5742. func _ClusterManager_SetMasterAuth_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5743. in := new(SetMasterAuthRequest)
  5744. if err := dec(in); err != nil {
  5745. return nil, err
  5746. }
  5747. if interceptor == nil {
  5748. return srv.(ClusterManagerServer).SetMasterAuth(ctx, in)
  5749. }
  5750. info := &grpc.UnaryServerInfo{
  5751. Server: srv,
  5752. FullMethod: "/google.container.v1.ClusterManager/SetMasterAuth",
  5753. }
  5754. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5755. return srv.(ClusterManagerServer).SetMasterAuth(ctx, req.(*SetMasterAuthRequest))
  5756. }
  5757. return interceptor(ctx, in, info, handler)
  5758. }
  5759. func _ClusterManager_DeleteCluster_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5760. in := new(DeleteClusterRequest)
  5761. if err := dec(in); err != nil {
  5762. return nil, err
  5763. }
  5764. if interceptor == nil {
  5765. return srv.(ClusterManagerServer).DeleteCluster(ctx, in)
  5766. }
  5767. info := &grpc.UnaryServerInfo{
  5768. Server: srv,
  5769. FullMethod: "/google.container.v1.ClusterManager/DeleteCluster",
  5770. }
  5771. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5772. return srv.(ClusterManagerServer).DeleteCluster(ctx, req.(*DeleteClusterRequest))
  5773. }
  5774. return interceptor(ctx, in, info, handler)
  5775. }
  5776. func _ClusterManager_ListOperations_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5777. in := new(ListOperationsRequest)
  5778. if err := dec(in); err != nil {
  5779. return nil, err
  5780. }
  5781. if interceptor == nil {
  5782. return srv.(ClusterManagerServer).ListOperations(ctx, in)
  5783. }
  5784. info := &grpc.UnaryServerInfo{
  5785. Server: srv,
  5786. FullMethod: "/google.container.v1.ClusterManager/ListOperations",
  5787. }
  5788. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5789. return srv.(ClusterManagerServer).ListOperations(ctx, req.(*ListOperationsRequest))
  5790. }
  5791. return interceptor(ctx, in, info, handler)
  5792. }
  5793. func _ClusterManager_GetOperation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5794. in := new(GetOperationRequest)
  5795. if err := dec(in); err != nil {
  5796. return nil, err
  5797. }
  5798. if interceptor == nil {
  5799. return srv.(ClusterManagerServer).GetOperation(ctx, in)
  5800. }
  5801. info := &grpc.UnaryServerInfo{
  5802. Server: srv,
  5803. FullMethod: "/google.container.v1.ClusterManager/GetOperation",
  5804. }
  5805. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5806. return srv.(ClusterManagerServer).GetOperation(ctx, req.(*GetOperationRequest))
  5807. }
  5808. return interceptor(ctx, in, info, handler)
  5809. }
  5810. func _ClusterManager_CancelOperation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5811. in := new(CancelOperationRequest)
  5812. if err := dec(in); err != nil {
  5813. return nil, err
  5814. }
  5815. if interceptor == nil {
  5816. return srv.(ClusterManagerServer).CancelOperation(ctx, in)
  5817. }
  5818. info := &grpc.UnaryServerInfo{
  5819. Server: srv,
  5820. FullMethod: "/google.container.v1.ClusterManager/CancelOperation",
  5821. }
  5822. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5823. return srv.(ClusterManagerServer).CancelOperation(ctx, req.(*CancelOperationRequest))
  5824. }
  5825. return interceptor(ctx, in, info, handler)
  5826. }
  5827. func _ClusterManager_GetServerConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5828. in := new(GetServerConfigRequest)
  5829. if err := dec(in); err != nil {
  5830. return nil, err
  5831. }
  5832. if interceptor == nil {
  5833. return srv.(ClusterManagerServer).GetServerConfig(ctx, in)
  5834. }
  5835. info := &grpc.UnaryServerInfo{
  5836. Server: srv,
  5837. FullMethod: "/google.container.v1.ClusterManager/GetServerConfig",
  5838. }
  5839. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5840. return srv.(ClusterManagerServer).GetServerConfig(ctx, req.(*GetServerConfigRequest))
  5841. }
  5842. return interceptor(ctx, in, info, handler)
  5843. }
  5844. func _ClusterManager_ListNodePools_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5845. in := new(ListNodePoolsRequest)
  5846. if err := dec(in); err != nil {
  5847. return nil, err
  5848. }
  5849. if interceptor == nil {
  5850. return srv.(ClusterManagerServer).ListNodePools(ctx, in)
  5851. }
  5852. info := &grpc.UnaryServerInfo{
  5853. Server: srv,
  5854. FullMethod: "/google.container.v1.ClusterManager/ListNodePools",
  5855. }
  5856. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5857. return srv.(ClusterManagerServer).ListNodePools(ctx, req.(*ListNodePoolsRequest))
  5858. }
  5859. return interceptor(ctx, in, info, handler)
  5860. }
  5861. func _ClusterManager_GetNodePool_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5862. in := new(GetNodePoolRequest)
  5863. if err := dec(in); err != nil {
  5864. return nil, err
  5865. }
  5866. if interceptor == nil {
  5867. return srv.(ClusterManagerServer).GetNodePool(ctx, in)
  5868. }
  5869. info := &grpc.UnaryServerInfo{
  5870. Server: srv,
  5871. FullMethod: "/google.container.v1.ClusterManager/GetNodePool",
  5872. }
  5873. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5874. return srv.(ClusterManagerServer).GetNodePool(ctx, req.(*GetNodePoolRequest))
  5875. }
  5876. return interceptor(ctx, in, info, handler)
  5877. }
  5878. func _ClusterManager_CreateNodePool_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5879. in := new(CreateNodePoolRequest)
  5880. if err := dec(in); err != nil {
  5881. return nil, err
  5882. }
  5883. if interceptor == nil {
  5884. return srv.(ClusterManagerServer).CreateNodePool(ctx, in)
  5885. }
  5886. info := &grpc.UnaryServerInfo{
  5887. Server: srv,
  5888. FullMethod: "/google.container.v1.ClusterManager/CreateNodePool",
  5889. }
  5890. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5891. return srv.(ClusterManagerServer).CreateNodePool(ctx, req.(*CreateNodePoolRequest))
  5892. }
  5893. return interceptor(ctx, in, info, handler)
  5894. }
  5895. func _ClusterManager_DeleteNodePool_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5896. in := new(DeleteNodePoolRequest)
  5897. if err := dec(in); err != nil {
  5898. return nil, err
  5899. }
  5900. if interceptor == nil {
  5901. return srv.(ClusterManagerServer).DeleteNodePool(ctx, in)
  5902. }
  5903. info := &grpc.UnaryServerInfo{
  5904. Server: srv,
  5905. FullMethod: "/google.container.v1.ClusterManager/DeleteNodePool",
  5906. }
  5907. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5908. return srv.(ClusterManagerServer).DeleteNodePool(ctx, req.(*DeleteNodePoolRequest))
  5909. }
  5910. return interceptor(ctx, in, info, handler)
  5911. }
  5912. func _ClusterManager_RollbackNodePoolUpgrade_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5913. in := new(RollbackNodePoolUpgradeRequest)
  5914. if err := dec(in); err != nil {
  5915. return nil, err
  5916. }
  5917. if interceptor == nil {
  5918. return srv.(ClusterManagerServer).RollbackNodePoolUpgrade(ctx, in)
  5919. }
  5920. info := &grpc.UnaryServerInfo{
  5921. Server: srv,
  5922. FullMethod: "/google.container.v1.ClusterManager/RollbackNodePoolUpgrade",
  5923. }
  5924. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5925. return srv.(ClusterManagerServer).RollbackNodePoolUpgrade(ctx, req.(*RollbackNodePoolUpgradeRequest))
  5926. }
  5927. return interceptor(ctx, in, info, handler)
  5928. }
  5929. func _ClusterManager_SetNodePoolManagement_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5930. in := new(SetNodePoolManagementRequest)
  5931. if err := dec(in); err != nil {
  5932. return nil, err
  5933. }
  5934. if interceptor == nil {
  5935. return srv.(ClusterManagerServer).SetNodePoolManagement(ctx, in)
  5936. }
  5937. info := &grpc.UnaryServerInfo{
  5938. Server: srv,
  5939. FullMethod: "/google.container.v1.ClusterManager/SetNodePoolManagement",
  5940. }
  5941. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5942. return srv.(ClusterManagerServer).SetNodePoolManagement(ctx, req.(*SetNodePoolManagementRequest))
  5943. }
  5944. return interceptor(ctx, in, info, handler)
  5945. }
  5946. func _ClusterManager_SetLabels_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5947. in := new(SetLabelsRequest)
  5948. if err := dec(in); err != nil {
  5949. return nil, err
  5950. }
  5951. if interceptor == nil {
  5952. return srv.(ClusterManagerServer).SetLabels(ctx, in)
  5953. }
  5954. info := &grpc.UnaryServerInfo{
  5955. Server: srv,
  5956. FullMethod: "/google.container.v1.ClusterManager/SetLabels",
  5957. }
  5958. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5959. return srv.(ClusterManagerServer).SetLabels(ctx, req.(*SetLabelsRequest))
  5960. }
  5961. return interceptor(ctx, in, info, handler)
  5962. }
  5963. func _ClusterManager_SetLegacyAbac_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5964. in := new(SetLegacyAbacRequest)
  5965. if err := dec(in); err != nil {
  5966. return nil, err
  5967. }
  5968. if interceptor == nil {
  5969. return srv.(ClusterManagerServer).SetLegacyAbac(ctx, in)
  5970. }
  5971. info := &grpc.UnaryServerInfo{
  5972. Server: srv,
  5973. FullMethod: "/google.container.v1.ClusterManager/SetLegacyAbac",
  5974. }
  5975. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5976. return srv.(ClusterManagerServer).SetLegacyAbac(ctx, req.(*SetLegacyAbacRequest))
  5977. }
  5978. return interceptor(ctx, in, info, handler)
  5979. }
  5980. func _ClusterManager_StartIPRotation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5981. in := new(StartIPRotationRequest)
  5982. if err := dec(in); err != nil {
  5983. return nil, err
  5984. }
  5985. if interceptor == nil {
  5986. return srv.(ClusterManagerServer).StartIPRotation(ctx, in)
  5987. }
  5988. info := &grpc.UnaryServerInfo{
  5989. Server: srv,
  5990. FullMethod: "/google.container.v1.ClusterManager/StartIPRotation",
  5991. }
  5992. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5993. return srv.(ClusterManagerServer).StartIPRotation(ctx, req.(*StartIPRotationRequest))
  5994. }
  5995. return interceptor(ctx, in, info, handler)
  5996. }
  5997. func _ClusterManager_CompleteIPRotation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5998. in := new(CompleteIPRotationRequest)
  5999. if err := dec(in); err != nil {
  6000. return nil, err
  6001. }
  6002. if interceptor == nil {
  6003. return srv.(ClusterManagerServer).CompleteIPRotation(ctx, in)
  6004. }
  6005. info := &grpc.UnaryServerInfo{
  6006. Server: srv,
  6007. FullMethod: "/google.container.v1.ClusterManager/CompleteIPRotation",
  6008. }
  6009. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6010. return srv.(ClusterManagerServer).CompleteIPRotation(ctx, req.(*CompleteIPRotationRequest))
  6011. }
  6012. return interceptor(ctx, in, info, handler)
  6013. }
  6014. func _ClusterManager_SetNodePoolSize_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6015. in := new(SetNodePoolSizeRequest)
  6016. if err := dec(in); err != nil {
  6017. return nil, err
  6018. }
  6019. if interceptor == nil {
  6020. return srv.(ClusterManagerServer).SetNodePoolSize(ctx, in)
  6021. }
  6022. info := &grpc.UnaryServerInfo{
  6023. Server: srv,
  6024. FullMethod: "/google.container.v1.ClusterManager/SetNodePoolSize",
  6025. }
  6026. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6027. return srv.(ClusterManagerServer).SetNodePoolSize(ctx, req.(*SetNodePoolSizeRequest))
  6028. }
  6029. return interceptor(ctx, in, info, handler)
  6030. }
  6031. func _ClusterManager_SetNetworkPolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6032. in := new(SetNetworkPolicyRequest)
  6033. if err := dec(in); err != nil {
  6034. return nil, err
  6035. }
  6036. if interceptor == nil {
  6037. return srv.(ClusterManagerServer).SetNetworkPolicy(ctx, in)
  6038. }
  6039. info := &grpc.UnaryServerInfo{
  6040. Server: srv,
  6041. FullMethod: "/google.container.v1.ClusterManager/SetNetworkPolicy",
  6042. }
  6043. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6044. return srv.(ClusterManagerServer).SetNetworkPolicy(ctx, req.(*SetNetworkPolicyRequest))
  6045. }
  6046. return interceptor(ctx, in, info, handler)
  6047. }
  6048. func _ClusterManager_SetMaintenancePolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6049. in := new(SetMaintenancePolicyRequest)
  6050. if err := dec(in); err != nil {
  6051. return nil, err
  6052. }
  6053. if interceptor == nil {
  6054. return srv.(ClusterManagerServer).SetMaintenancePolicy(ctx, in)
  6055. }
  6056. info := &grpc.UnaryServerInfo{
  6057. Server: srv,
  6058. FullMethod: "/google.container.v1.ClusterManager/SetMaintenancePolicy",
  6059. }
  6060. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6061. return srv.(ClusterManagerServer).SetMaintenancePolicy(ctx, req.(*SetMaintenancePolicyRequest))
  6062. }
  6063. return interceptor(ctx, in, info, handler)
  6064. }
  6065. var _ClusterManager_serviceDesc = grpc.ServiceDesc{
  6066. ServiceName: "google.container.v1.ClusterManager",
  6067. HandlerType: (*ClusterManagerServer)(nil),
  6068. Methods: []grpc.MethodDesc{
  6069. {
  6070. MethodName: "ListClusters",
  6071. Handler: _ClusterManager_ListClusters_Handler,
  6072. },
  6073. {
  6074. MethodName: "GetCluster",
  6075. Handler: _ClusterManager_GetCluster_Handler,
  6076. },
  6077. {
  6078. MethodName: "CreateCluster",
  6079. Handler: _ClusterManager_CreateCluster_Handler,
  6080. },
  6081. {
  6082. MethodName: "UpdateCluster",
  6083. Handler: _ClusterManager_UpdateCluster_Handler,
  6084. },
  6085. {
  6086. MethodName: "UpdateNodePool",
  6087. Handler: _ClusterManager_UpdateNodePool_Handler,
  6088. },
  6089. {
  6090. MethodName: "SetNodePoolAutoscaling",
  6091. Handler: _ClusterManager_SetNodePoolAutoscaling_Handler,
  6092. },
  6093. {
  6094. MethodName: "SetLoggingService",
  6095. Handler: _ClusterManager_SetLoggingService_Handler,
  6096. },
  6097. {
  6098. MethodName: "SetMonitoringService",
  6099. Handler: _ClusterManager_SetMonitoringService_Handler,
  6100. },
  6101. {
  6102. MethodName: "SetAddonsConfig",
  6103. Handler: _ClusterManager_SetAddonsConfig_Handler,
  6104. },
  6105. {
  6106. MethodName: "SetLocations",
  6107. Handler: _ClusterManager_SetLocations_Handler,
  6108. },
  6109. {
  6110. MethodName: "UpdateMaster",
  6111. Handler: _ClusterManager_UpdateMaster_Handler,
  6112. },
  6113. {
  6114. MethodName: "SetMasterAuth",
  6115. Handler: _ClusterManager_SetMasterAuth_Handler,
  6116. },
  6117. {
  6118. MethodName: "DeleteCluster",
  6119. Handler: _ClusterManager_DeleteCluster_Handler,
  6120. },
  6121. {
  6122. MethodName: "ListOperations",
  6123. Handler: _ClusterManager_ListOperations_Handler,
  6124. },
  6125. {
  6126. MethodName: "GetOperation",
  6127. Handler: _ClusterManager_GetOperation_Handler,
  6128. },
  6129. {
  6130. MethodName: "CancelOperation",
  6131. Handler: _ClusterManager_CancelOperation_Handler,
  6132. },
  6133. {
  6134. MethodName: "GetServerConfig",
  6135. Handler: _ClusterManager_GetServerConfig_Handler,
  6136. },
  6137. {
  6138. MethodName: "ListNodePools",
  6139. Handler: _ClusterManager_ListNodePools_Handler,
  6140. },
  6141. {
  6142. MethodName: "GetNodePool",
  6143. Handler: _ClusterManager_GetNodePool_Handler,
  6144. },
  6145. {
  6146. MethodName: "CreateNodePool",
  6147. Handler: _ClusterManager_CreateNodePool_Handler,
  6148. },
  6149. {
  6150. MethodName: "DeleteNodePool",
  6151. Handler: _ClusterManager_DeleteNodePool_Handler,
  6152. },
  6153. {
  6154. MethodName: "RollbackNodePoolUpgrade",
  6155. Handler: _ClusterManager_RollbackNodePoolUpgrade_Handler,
  6156. },
  6157. {
  6158. MethodName: "SetNodePoolManagement",
  6159. Handler: _ClusterManager_SetNodePoolManagement_Handler,
  6160. },
  6161. {
  6162. MethodName: "SetLabels",
  6163. Handler: _ClusterManager_SetLabels_Handler,
  6164. },
  6165. {
  6166. MethodName: "SetLegacyAbac",
  6167. Handler: _ClusterManager_SetLegacyAbac_Handler,
  6168. },
  6169. {
  6170. MethodName: "StartIPRotation",
  6171. Handler: _ClusterManager_StartIPRotation_Handler,
  6172. },
  6173. {
  6174. MethodName: "CompleteIPRotation",
  6175. Handler: _ClusterManager_CompleteIPRotation_Handler,
  6176. },
  6177. {
  6178. MethodName: "SetNodePoolSize",
  6179. Handler: _ClusterManager_SetNodePoolSize_Handler,
  6180. },
  6181. {
  6182. MethodName: "SetNetworkPolicy",
  6183. Handler: _ClusterManager_SetNetworkPolicy_Handler,
  6184. },
  6185. {
  6186. MethodName: "SetMaintenancePolicy",
  6187. Handler: _ClusterManager_SetMaintenancePolicy_Handler,
  6188. },
  6189. },
  6190. Streams: []grpc.StreamDesc{},
  6191. Metadata: "google/container/v1/cluster_service.proto",
  6192. }
  6193. func init() {
  6194. proto.RegisterFile("google/container/v1/cluster_service.proto", fileDescriptor_cluster_service_ddce0395d8fb4971)
  6195. }
  6196. var fileDescriptor_cluster_service_ddce0395d8fb4971 = []byte{
  6197. // 5271 bytes of a gzipped FileDescriptorProto
  6198. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x3c, 0x6d, 0x8c, 0x24, 0xd7,
  6199. 0x51, 0xe9, 0xd9, 0xd9, 0xd9, 0x9d, 0x9a, 0xd9, 0xd9, 0xd9, 0xb7, 0x1f, 0x37, 0x1e, 0xdf, 0xd9,
  6200. 0x77, 0x1d, 0x9f, 0x7d, 0xb7, 0xb6, 0x77, 0x7c, 0xe7, 0xef, 0xf3, 0xd9, 0xf1, 0xdc, 0xec, 0x78,
  6201. 0x6f, 0x7c, 0xfb, 0x31, 0xe9, 0xd9, 0xbd, 0x93, 0x0f, 0x93, 0x56, 0xef, 0x4c, 0xdf, 0x6c, 0x7b,
  6202. 0x7b, 0xba, 0x3b, 0xdd, 0x3d, 0x67, 0xef, 0x9d, 0x0e, 0xf1, 0x91, 0x04, 0x83, 0x63, 0x93, 0x90,
  6203. 0x04, 0xa4, 0xf0, 0x21, 0x02, 0x24, 0x28, 0x01, 0x41, 0x88, 0x88, 0x04, 0x02, 0x21, 0x21, 0xf1,
  6204. 0x83, 0x00, 0x12, 0x08, 0x90, 0x85, 0x90, 0xf8, 0x87, 0x10, 0x41, 0x42, 0x22, 0xc0, 0x1f, 0x04,
  6205. 0x88, 0xe8, 0x7d, 0x74, 0xf7, 0xeb, 0x99, 0xee, 0x99, 0x9d, 0xdd, 0xbb, 0xcd, 0xfd, 0xba, 0xed,
  6206. 0x7a, 0xaf, 0xde, 0xab, 0xaa, 0x57, 0xaf, 0xaa, 0x5e, 0x55, 0xcd, 0xc1, 0xd9, 0xb6, 0x69, 0xb6,
  6207. 0x75, 0xb5, 0xd4, 0x34, 0x0d, 0x57, 0xd1, 0x0c, 0xd5, 0x2e, 0xdd, 0x3c, 0x57, 0x6a, 0xea, 0x5d,
  6208. 0xc7, 0x55, 0x6d, 0xd9, 0x51, 0xed, 0x9b, 0x5a, 0x53, 0x5d, 0xb2, 0x6c, 0xd3, 0x35, 0xd1, 0x2c,
  6209. 0x9d, 0xba, 0xe4, 0x4f, 0x5d, 0xba, 0x79, 0xae, 0x78, 0x9c, 0xe1, 0x2b, 0x96, 0x56, 0x52, 0x0c,
  6210. 0xc3, 0x74, 0x15, 0x57, 0x33, 0x0d, 0x87, 0xa2, 0x14, 0x1f, 0x64, 0xa3, 0xe4, 0x6b, 0xbb, 0x7b,
  6211. 0xa3, 0xa4, 0x76, 0x2c, 0x77, 0x8f, 0x0e, 0x8a, 0xdf, 0x1e, 0x07, 0x58, 0x37, 0x5b, 0x6a, 0xc5,
  6212. 0x34, 0x6e, 0x68, 0x6d, 0x74, 0x0a, 0xb2, 0x1d, 0xa5, 0xb9, 0xa3, 0x19, 0xaa, 0xec, 0xee, 0x59,
  6213. 0x6a, 0x41, 0x38, 0x29, 0x9c, 0x49, 0x4b, 0x19, 0x06, 0xdb, 0xdc, 0xb3, 0x54, 0x74, 0x12, 0xb2,
  6214. 0x2d, 0xcd, 0xd9, 0x95, 0x1d, 0xed, 0x96, 0x2a, 0xb7, 0xb7, 0x0b, 0x89, 0x93, 0xc2, 0x99, 0x71,
  6215. 0x09, 0x30, 0xac, 0xa1, 0xdd, 0x52, 0x57, 0xb6, 0xf1, 0x22, 0xa6, 0xd2, 0x75, 0x77, 0x64, 0xa7,
  6216. 0x69, 0x5a, 0xaa, 0x53, 0x18, 0x3b, 0x39, 0x86, 0x17, 0x21, 0xb0, 0x06, 0x01, 0xa1, 0xc7, 0x60,
  6217. 0x9a, 0xf1, 0x25, 0x2b, 0xcd, 0xa6, 0xd9, 0x35, 0xdc, 0x42, 0x9a, 0x6c, 0x95, 0x63, 0xe0, 0x32,
  6218. 0x85, 0xa2, 0x1a, 0x4c, 0x76, 0x54, 0x57, 0x69, 0x29, 0xae, 0x52, 0x48, 0x9e, 0x1c, 0x3b, 0x93,
  6219. 0x39, 0xff, 0xe4, 0x52, 0x84, 0x08, 0x96, 0x02, 0x1e, 0x96, 0xd6, 0xd8, 0xfc, 0xaa, 0xe1, 0xda,
  6220. 0x7b, 0x92, 0x8f, 0x8e, 0x4e, 0x00, 0x68, 0x1d, 0xa5, 0xcd, 0x38, 0x1b, 0x27, 0xdb, 0xa5, 0x09,
  6221. 0x84, 0xf0, 0x55, 0x81, 0x94, 0xae, 0x6c, 0xab, 0xba, 0x53, 0x48, 0x91, 0x7d, 0x1e, 0x1f, 0xb6,
  6222. 0xcf, 0x2a, 0x99, 0x4d, 0x77, 0x61, 0xa8, 0xe8, 0x51, 0x98, 0xd6, 0xcd, 0xa6, 0xa2, 0xcb, 0x8e,
  6223. 0xd3, 0x92, 0x29, 0x5f, 0x13, 0x44, 0x3e, 0x53, 0x04, 0xdc, 0x70, 0x5a, 0x15, 0xc2, 0x16, 0x82,
  6224. 0xa4, 0xab, 0xb4, 0x9d, 0xc2, 0x24, 0x11, 0x0d, 0xf9, 0x1b, 0x9d, 0x84, 0x8c, 0x65, 0xab, 0xf8,
  6225. 0x70, 0xb4, 0x6d, 0x5d, 0x2d, 0xc0, 0x49, 0xe1, 0xcc, 0xa4, 0xc4, 0x83, 0xd0, 0xeb, 0x90, 0x55,
  6226. 0x9a, 0x4d, 0x55, 0x57, 0x6d, 0xc5, 0x35, 0x6d, 0xa7, 0x90, 0x21, 0x84, 0x3e, 0x1a, 0x49, 0x68,
  6227. 0x39, 0x98, 0x48, 0xe9, 0x95, 0x42, 0xb8, 0xe8, 0x41, 0x48, 0x93, 0x63, 0x24, 0xc2, 0xc8, 0x12,
  6228. 0x61, 0x4c, 0x62, 0x00, 0x91, 0xc5, 0x19, 0xc8, 0x77, 0x34, 0x43, 0x6e, 0x5a, 0x5d, 0xd9, 0xd2,
  6229. 0x15, 0xf7, 0x86, 0x69, 0x77, 0x0a, 0x53, 0xf4, 0x7c, 0x3a, 0x9a, 0x51, 0xb1, 0xba, 0x75, 0x06,
  6230. 0x2d, 0xbe, 0x04, 0x53, 0x21, 0x79, 0xa3, 0x3c, 0x8c, 0xed, 0xaa, 0x7b, 0x4c, 0x71, 0xf0, 0x9f,
  6231. 0x68, 0x0e, 0xc6, 0x6f, 0x2a, 0x7a, 0x57, 0x25, 0x9a, 0x92, 0x96, 0xe8, 0xc7, 0x85, 0xc4, 0x0b,
  6232. 0x42, 0xf1, 0x45, 0xc8, 0x70, 0x42, 0x1c, 0x05, 0x55, 0xfc, 0x56, 0x02, 0x60, 0x4d, 0xc1, 0x17,
  6233. 0xa4, 0xdc, 0x75, 0x77, 0x50, 0x11, 0x26, 0xbb, 0x8e, 0x6a, 0x1b, 0x4a, 0xc7, 0xd3, 0x59, 0xff,
  6234. 0x1b, 0x8f, 0x59, 0x8a, 0xe3, 0xbc, 0x6d, 0xda, 0x2d, 0xb6, 0x8e, 0xff, 0x8d, 0x76, 0xe0, 0x81,
  6235. 0xa6, 0xae, 0xa9, 0x86, 0x2b, 0x37, 0x55, 0xdb, 0xd5, 0x6e, 0x68, 0x4d, 0xc5, 0x55, 0xe5, 0x26,
  6236. 0x11, 0x58, 0x61, 0xec, 0xa4, 0x70, 0x26, 0x73, 0xfe, 0x89, 0x48, 0xf1, 0x56, 0x08, 0x56, 0x25,
  6237. 0x40, 0x62, 0x42, 0x3e, 0xd6, 0x8c, 0x1e, 0x40, 0xcf, 0xc0, 0x82, 0x77, 0xa3, 0x9b, 0x0a, 0xbf,
  6238. 0x5b, 0xa1, 0x45, 0x68, 0x9a, 0x63, 0xa3, 0x15, 0x85, 0xc3, 0x45, 0x4f, 0x02, 0xea, 0xa7, 0xaf,
  6239. 0xa0, 0x12, 0x8c, 0x99, 0xbe, 0xad, 0xb0, 0x8a, 0xb3, 0xe9, 0x58, 0x90, 0x37, 0xa8, 0x8a, 0x53,
  6240. 0xc8, 0x15, 0x75, 0x4f, 0x6c, 0xc0, 0xb1, 0x18, 0xba, 0xd1, 0x0b, 0x50, 0xd0, 0x1c, 0xa7, 0xab,
  6241. 0xca, 0x11, 0xdb, 0x09, 0x44, 0x13, 0x17, 0xc8, 0x78, 0x1f, 0xbe, 0xf8, 0xc1, 0x18, 0x64, 0xcb,
  6242. 0xad, 0x96, 0x69, 0x38, 0x6c, 0xa9, 0xab, 0x30, 0xbb, 0xe3, 0xba, 0x96, 0xac, 0x9b, 0x4a, 0x4b,
  6243. 0xde, 0x56, 0x74, 0xc5, 0x68, 0x6a, 0x46, 0x9b, 0xac, 0x12, 0xa7, 0xac, 0x97, 0x5d, 0xd7, 0x5a,
  6244. 0x35, 0x95, 0xd6, 0x25, 0x6f, 0xb6, 0x34, 0xb3, 0xd3, 0x0b, 0x42, 0xbb, 0x50, 0xdc, 0x31, 0x6d,
  6245. 0xed, 0x16, 0x46, 0xd4, 0x65, 0xcb, 0x6c, 0xc9, 0x4a, 0xd7, 0x35, 0x9d, 0xa6, 0xa2, 0xe3, 0xe5,
  6246. 0x13, 0x64, 0xf9, 0x68, 0xe3, 0x70, 0xd9, 0x47, 0xab, 0x9b, 0xad, 0x72, 0x80, 0x24, 0x15, 0x76,
  6247. 0x62, 0x46, 0xd0, 0x0f, 0xc1, 0xdc, 0x6e, 0x77, 0x5b, 0xb5, 0x0d, 0xd5, 0x55, 0x1d, 0xb9, 0xa5,
  6248. 0x38, 0x3b, 0xdb, 0xa6, 0x62, 0xb7, 0x98, 0x4e, 0x9c, 0x89, 0xdc, 0xe6, 0x8a, 0x8f, 0xb0, 0xec,
  6249. 0xcd, 0x97, 0x66, 0x77, 0xfb, 0x81, 0xe8, 0x4d, 0x98, 0x37, 0x54, 0xf7, 0x6d, 0xd3, 0xde, 0x95,
  6250. 0x2d, 0x53, 0xd7, 0x9a, 0x7b, 0x9e, 0xc6, 0x25, 0x07, 0xac, 0xbe, 0x4e, 0x31, 0xea, 0x04, 0x81,
  6251. 0x69, 0xdb, 0xac, 0xd1, 0x0f, 0x14, 0x4b, 0x30, 0xd3, 0x27, 0x4f, 0x7c, 0x09, 0x5a, 0x9a, 0xa3,
  6252. 0x6c, 0xeb, 0x6a, 0x8b, 0x9d, 0xa7, 0xff, 0x2d, 0x3e, 0x07, 0x85, 0x38, 0x09, 0x0d, 0xc4, 0x3b,
  6253. 0x07, 0xb3, 0x11, 0x2c, 0x0f, 0x43, 0x89, 0xe0, 0x63, 0x20, 0xca, 0x4f, 0x25, 0x60, 0xae, 0x6e,
  6254. 0x6b, 0x37, 0xb1, 0xae, 0xb2, 0x2b, 0x42, 0x91, 0x9e, 0x82, 0x39, 0xd5, 0xc0, 0x73, 0x64, 0x8b,
  6255. 0x0e, 0xcb, 0x86, 0xd9, 0x52, 0x1d, 0xb6, 0x00, 0xa2, 0x63, 0x0c, 0x13, 0x9b, 0x6d, 0x07, 0x3d,
  6256. 0x07, 0xc7, 0x7a, 0x30, 0x54, 0xa3, 0x65, 0x99, 0x9a, 0xe1, 0x12, 0xf5, 0x99, 0x94, 0xe6, 0x43,
  6257. 0x48, 0x55, 0x36, 0x88, 0x9e, 0x86, 0x85, 0x0e, 0xb1, 0x35, 0xb2, 0x66, 0xdd, 0x7c, 0x46, 0x6e,
  6258. 0x6a, 0x2d, 0x5b, 0xde, 0xd6, 0xcd, 0xe6, 0x2e, 0x51, 0x87, 0xb4, 0x34, 0x4b, 0x47, 0x6b, 0xd6,
  6259. 0xcd, 0x67, 0x2a, 0x5a, 0xcb, 0xbe, 0x84, 0x87, 0xd0, 0x59, 0xc8, 0xf7, 0xed, 0x92, 0x24, 0xd3,
  6260. 0xa7, 0xad, 0x9e, 0xf5, 0x1f, 0x83, 0x69, 0xab, 0xbb, 0xad, 0x6b, 0xcd, 0x60, 0x26, 0x75, 0x4f,
  6261. 0x39, 0x0a, 0xf6, 0x26, 0x8a, 0xdf, 0x15, 0xe0, 0xa1, 0xc0, 0xea, 0xe1, 0x33, 0x53, 0x5b, 0x4c,
  6262. 0x9e, 0xde, 0xed, 0x2b, 0xc0, 0x04, 0x65, 0xc2, 0x93, 0xa4, 0xf7, 0x89, 0x3e, 0x01, 0x99, 0x80,
  6263. 0x72, 0xa7, 0x90, 0x20, 0xce, 0xe3, 0xe5, 0x48, 0x5d, 0x1b, 0xbc, 0xc7, 0x92, 0xcf, 0xa4, 0x04,
  6264. 0x4d, 0xef, 0x4f, 0xa7, 0xb8, 0x06, 0xe9, 0x80, 0xfb, 0x53, 0x24, 0x4a, 0xb0, 0x74, 0x65, 0x4f,
  6265. 0xe6, 0x8c, 0x72, 0x86, 0xc1, 0xd6, 0xb1, 0x5d, 0xc6, 0xc6, 0x2a, 0x90, 0x64, 0x82, 0x19, 0x2b,
  6266. 0x6f, 0x05, 0xf1, 0x51, 0x80, 0x55, 0xb5, 0xad, 0x34, 0xf7, 0xca, 0xdb, 0x4a, 0x33, 0x9e, 0x2d,
  6267. 0xf1, 0xd7, 0x05, 0x98, 0x0a, 0xe9, 0x14, 0x5a, 0x81, 0x49, 0xcb, 0x36, 0x6f, 0x6a, 0x2d, 0xd5,
  6268. 0x26, 0x93, 0x73, 0x71, 0xbe, 0x9c, 0xc7, 0x5a, 0xaa, 0x33, 0x14, 0xc9, 0x47, 0xe6, 0x37, 0x4d,
  6269. 0x84, 0x37, 0x7d, 0x0a, 0x26, 0xeb, 0xc1, 0xac, 0xb9, 0xba, 0xb4, 0x71, 0xb5, 0xb6, 0x5c, 0x95,
  6270. 0xe4, 0xad, 0xf5, 0x46, 0xbd, 0x5a, 0xa9, 0xbd, 0x56, 0xab, 0x2e, 0xe7, 0x3f, 0x82, 0x00, 0x52,
  6271. 0x95, 0xf2, 0x6a, 0xad, 0xb2, 0x91, 0x17, 0xc4, 0x3f, 0x49, 0x02, 0xaa, 0xd5, 0xcb, 0x3a, 0x8e,
  6272. 0x03, 0x70, 0x74, 0xc6, 0x68, 0x7d, 0x04, 0x72, 0x5d, 0x47, 0x95, 0x35, 0x4b, 0x56, 0x74, 0x4d,
  6273. 0x71, 0x7c, 0xf5, 0xcd, 0x76, 0x1d, 0xb5, 0x66, 0x95, 0x29, 0x0c, 0x3d, 0x0e, 0x33, 0x4d, 0x5b,
  6274. 0xc5, 0xaa, 0xe4, 0x74, 0xb7, 0xd9, 0x9d, 0x67, 0x24, 0xe5, 0xe9, 0x40, 0xc3, 0x87, 0x93, 0xd8,
  6275. 0xca, 0xff, 0xa2, 0xd2, 0x1f, 0x63, 0xb1, 0x95, 0x0f, 0x26, 0x07, 0xb0, 0x04, 0x33, 0x9e, 0x4b,
  6276. 0xf2, 0xf5, 0x9a, 0xaa, 0xe8, 0xa5, 0x44, 0x41, 0x90, 0xa6, 0xd9, 0xa0, 0xa7, 0xd6, 0xe8, 0x0c,
  6277. 0xe4, 0xf0, 0x0d, 0xe3, 0x26, 0x8f, 0xfb, 0x93, 0xb3, 0x78, 0xc4, 0x9f, 0xf9, 0x14, 0x20, 0x16,
  6278. 0xc7, 0x39, 0xdc, 0xec, 0x94, 0x3f, 0x3b, 0xef, 0x8d, 0xfa, 0x18, 0x1f, 0x83, 0xe3, 0x41, 0xc0,
  6279. 0xdb, 0x34, 0x8d, 0x96, 0x62, 0xef, 0xc9, 0xb6, 0x62, 0xb4, 0x55, 0xca, 0xc1, 0x04, 0xe1, 0xe0,
  6280. 0x01, 0x36, 0xa7, 0xe1, 0x4d, 0x91, 0xf0, 0x0c, 0xc2, 0x4c, 0x19, 0x4e, 0xf8, 0x5b, 0x46, 0xae,
  6281. 0x30, 0x49, 0x56, 0x28, 0x7a, 0x93, 0x22, 0x96, 0x78, 0x16, 0x8e, 0xf5, 0xc9, 0x83, 0x69, 0x67,
  6282. 0x3a, 0xe4, 0xa3, 0xc3, 0x17, 0xbd, 0x04, 0x73, 0x61, 0xb1, 0x30, 0x1c, 0xa0, 0x5e, 0x9a, 0x17,
  6283. 0x0c, 0x45, 0x78, 0x1e, 0x0a, 0xfd, 0xd2, 0x61, 0x48, 0x19, 0x82, 0x34, 0xdf, 0x2b, 0x1f, 0x7a,
  6284. 0x25, 0xbe, 0x39, 0x03, 0x13, 0xcc, 0x06, 0xe2, 0x08, 0x92, 0xbb, 0x58, 0xe4, 0x6f, 0x1c, 0x41,
  6285. 0xb6, 0x54, 0xa7, 0x69, 0x6b, 0x16, 0xd6, 0x30, 0x76, 0xa5, 0x78, 0x10, 0x7a, 0x02, 0x90, 0x66,
  6286. 0x68, 0xae, 0xa6, 0xe8, 0xc4, 0x58, 0xb2, 0x10, 0x75, 0x8c, 0x84, 0xa8, 0x79, 0x36, 0x42, 0x43,
  6287. 0x5c, 0x1c, 0xa5, 0xbe, 0x0a, 0x19, 0x36, 0x8b, 0xf3, 0x4e, 0x0f, 0x0f, 0x89, 0x8b, 0x25, 0x30,
  6288. 0x82, 0xf7, 0xc4, 0xab, 0x90, 0x61, 0x96, 0x13, 0x07, 0xff, 0x44, 0x5f, 0xe2, 0x56, 0x08, 0x6c,
  6289. 0x8e, 0x04, 0x9d, 0x20, 0xb2, 0x7b, 0x0c, 0x47, 0xd4, 0xed, 0xb6, 0x66, 0xb4, 0xbd, 0x97, 0x10,
  6290. 0xd5, 0x23, 0x29, 0xc7, 0xc0, 0x0d, 0x0a, 0xc5, 0xa1, 0x52, 0xc7, 0x34, 0x34, 0xd7, 0xb4, 0xf9,
  6291. 0xb9, 0x54, 0x6f, 0x66, 0x82, 0x11, 0x6f, 0x7a, 0x01, 0x26, 0xbc, 0x8b, 0x44, 0x35, 0xc3, 0xfb,
  6292. 0x44, 0x8b, 0x51, 0xd7, 0x82, 0x2a, 0x40, 0xdf, 0x95, 0x78, 0x0d, 0xa6, 0x14, 0x12, 0xfb, 0x78,
  6293. 0x32, 0x02, 0xc2, 0xe1, 0xa9, 0xe8, 0x90, 0x9c, 0x8b, 0x92, 0xa4, 0xac, 0xc2, 0xc7, 0x4c, 0x0f,
  6294. 0x01, 0x70, 0x37, 0x9b, 0x2a, 0x01, 0x07, 0x41, 0x17, 0x81, 0x48, 0x55, 0xb6, 0x4c, 0x53, 0x77,
  6295. 0x0a, 0x59, 0x62, 0xba, 0x4f, 0xc4, 0x1e, 0x44, 0xdd, 0x34, 0x75, 0x29, 0x6d, 0xb0, 0xbf, 0x1c,
  6296. 0x74, 0x1c, 0xd2, 0x9e, 0xd9, 0x71, 0x0a, 0x53, 0xe4, 0xc9, 0x11, 0x00, 0x38, 0xaf, 0xc8, 0x45,
  6297. 0x3c, 0x8a, 0x6e, 0xed, 0x28, 0x85, 0x1c, 0xef, 0x15, 0x03, 0x5f, 0x5f, 0xc6, 0x83, 0xe8, 0x0d,
  6298. 0x98, 0xb6, 0x55, 0xc7, 0xec, 0xda, 0x4d, 0x55, 0x66, 0x2f, 0xa7, 0x69, 0x42, 0xd8, 0x53, 0x31,
  6299. 0x11, 0x33, 0x11, 0xdd, 0x92, 0xc4, 0x70, 0xf8, 0xe7, 0x53, 0xce, 0x0e, 0x01, 0xb1, 0xbd, 0x23,
  6300. 0x2b, 0xca, 0x37, 0x34, 0xa3, 0xad, 0xda, 0x96, 0x8d, 0x5d, 0x62, 0x9e, 0x48, 0x25, 0x4f, 0x06,
  6301. 0x5e, 0x0b, 0xe0, 0x58, 0xc7, 0x74, 0xe2, 0x28, 0x64, 0x65, 0x5b, 0x69, 0x16, 0xd0, 0x00, 0x1d,
  6302. 0x0b, 0x1c, 0x8a, 0x04, 0x7a, 0xe0, 0x5c, 0x6a, 0x90, 0x0b, 0xc7, 0x63, 0x85, 0x59, 0xb2, 0x88,
  6303. 0x38, 0xdc, 0x6d, 0x48, 0x53, 0xa1, 0x10, 0x0c, 0xbd, 0x01, 0x73, 0xc4, 0x96, 0x7b, 0xe2, 0xf5,
  6304. 0x16, 0x9c, 0x23, 0x0b, 0x3e, 0x16, 0xb9, 0x60, 0xbf, 0x5b, 0x90, 0x90, 0x66, 0xf5, 0xb9, 0x8a,
  6305. 0x1f, 0x81, 0x53, 0xdc, 0x5d, 0xa2, 0x8e, 0x59, 0x66, 0xbb, 0xfb, 0xfa, 0xb7, 0x40, 0xf6, 0x79,
  6306. 0xfa, 0x00, 0x5e, 0x5d, 0x7a, 0xa8, 0x33, 0x38, 0xb2, 0xd8, 0x02, 0xd4, 0x51, 0x34, 0xc3, 0x55,
  6307. 0x0d, 0xc5, 0x68, 0xaa, 0x1e, 0x63, 0xc7, 0x06, 0x84, 0xf5, 0x6b, 0xc1, 0x74, 0xc6, 0xd7, 0x4c,
  6308. 0xa7, 0x17, 0xc4, 0x0b, 0x9f, 0xf1, 0xf0, 0xe0, 0x70, 0xe1, 0x33, 0x92, 0x3d, 0xe1, 0x33, 0x0a,
  6309. 0x65, 0x58, 0xf0, 0x42, 0x2e, 0xff, 0xad, 0x45, 0x97, 0x3c, 0x4d, 0x96, 0x3c, 0x1b, 0xb9, 0x64,
  6310. 0x54, 0x70, 0x29, 0xcd, 0x59, 0x51, 0x21, 0xe7, 0x83, 0x90, 0x76, 0x54, 0xfd, 0x86, 0xac, 0x6b,
  6311. 0xc6, 0x2e, 0x7b, 0xb7, 0x4d, 0x62, 0xc0, 0xaa, 0x66, 0xec, 0xa2, 0x05, 0x48, 0xde, 0x32, 0x0d,
  6312. 0xf6, 0x3a, 0x23, 0x6e, 0x8e, 0x7c, 0xe3, 0xe0, 0xd6, 0x0f, 0xeb, 0xe8, 0x93, 0xcc, 0xff, 0xc6,
  6313. 0x77, 0xcf, 0xb3, 0xc7, 0x1e, 0xc5, 0x37, 0x55, 0xdb, 0xc1, 0xd6, 0xbb, 0x4d, 0x3d, 0x01, 0x1b,
  6314. 0x66, 0x74, 0x5c, 0xa5, 0x83, 0xe4, 0x35, 0xd9, 0xb5, 0x6d, 0xfc, 0x52, 0x63, 0x3a, 0xe1, 0xa1,
  6315. 0xed, 0x30, 0x4f, 0x45, 0x47, 0xe9, 0x91, 0x07, 0x58, 0x1e, 0x9c, 0x5a, 0x7f, 0x0f, 0x47, 0xf3,
  6316. 0x29, 0x46, 0x6c, 0x1c, 0x5b, 0x11, 0x0f, 0xeb, 0x61, 0xc8, 0xb0, 0xe0, 0xc3, 0xd5, 0x3a, 0x6a,
  6317. 0xe1, 0x2d, 0x6a, 0x9c, 0x28, 0x68, 0x53, 0xeb, 0xa8, 0xe8, 0x25, 0x48, 0x39, 0xae, 0xe2, 0x76,
  6318. 0x9d, 0xc2, 0x2e, 0x89, 0xb6, 0x3e, 0x3a, 0xf0, 0xfe, 0x37, 0xc8, 0x54, 0x89, 0xa1, 0xa0, 0xd3,
  6319. 0x90, 0xa3, 0x7f, 0xc9, 0x1d, 0xd5, 0x71, 0x94, 0xb6, 0x5a, 0xd0, 0xc9, 0x06, 0x53, 0x14, 0xba,
  6320. 0x46, 0x81, 0xe8, 0x49, 0x98, 0xed, 0x71, 0xb2, 0x8e, 0x76, 0x4b, 0x2d, 0x74, 0xa8, 0xe7, 0xe2,
  6321. 0x7d, 0x6c, 0x43, 0xbb, 0xa5, 0x62, 0x3f, 0x17, 0x11, 0x80, 0x18, 0xd4, 0x82, 0xf4, 0x05, 0x1f,
  6322. 0xe7, 0x61, 0x56, 0x33, 0x1c, 0x97, 0xa8, 0x75, 0xdb, 0x36, 0xbb, 0x96, 0xdc, 0xb5, 0x75, 0xa7,
  6323. 0x60, 0x62, 0x4b, 0x49, 0xc4, 0x32, 0xe3, 0x0d, 0xaf, 0xe0, 0xd1, 0x2d, 0x5b, 0x77, 0xf0, 0x0e,
  6324. 0x21, 0x59, 0x52, 0x4f, 0x6a, 0x51, 0x7a, 0x38, 0x29, 0x52, 0x4f, 0xfa, 0x30, 0x64, 0xd4, 0x77,
  6325. 0x2c, 0xcd, 0x66, 0x32, 0xfc, 0x24, 0x95, 0x21, 0x05, 0x11, 0x19, 0x16, 0x61, 0xd2, 0xbb, 0xee,
  6326. 0x05, 0x9b, 0x2a, 0x89, 0xf7, 0x5d, 0x2c, 0xc3, 0x6c, 0x84, 0xd1, 0x1c, 0x29, 0x5d, 0xf2, 0x36,
  6327. 0xa4, 0xa8, 0xdc, 0xd1, 0x02, 0xa0, 0xc6, 0x66, 0x79, 0x73, 0xab, 0xd1, 0x13, 0xab, 0xe6, 0x21,
  6328. 0x4b, 0xa2, 0xd8, 0x46, 0x6d, 0x63, 0xbd, 0xb6, 0xbe, 0x92, 0x17, 0x50, 0x06, 0x26, 0xa4, 0xad,
  6329. 0x75, 0xf2, 0x91, 0x40, 0xd3, 0x90, 0x91, 0xaa, 0x95, 0x8d, 0xf5, 0x4a, 0x6d, 0x15, 0x03, 0xc6,
  6330. 0x50, 0x16, 0x26, 0x1b, 0x9b, 0x1b, 0xf5, 0x3a, 0xfe, 0x4a, 0xa2, 0x34, 0x8c, 0x57, 0x25, 0x69,
  6331. 0x43, 0xca, 0x8f, 0xe3, 0x81, 0xe5, 0xea, 0x8a, 0x54, 0x5e, 0xae, 0x2e, 0xe7, 0x53, 0xe2, 0x97,
  6332. 0xc6, 0x61, 0x8a, 0x9d, 0xfc, 0x96, 0xd5, 0x52, 0x5c, 0x15, 0x3f, 0xdb, 0x5a, 0xaa, 0xa3, 0xd9,
  6333. 0xd8, 0x78, 0xf1, 0x4a, 0x48, 0xdf, 0x46, 0x88, 0x8d, 0xf1, 0x0a, 0x78, 0x11, 0x8a, 0x1e, 0x46,
  6334. 0x84, 0x87, 0xa7, 0x2f, 0xa5, 0x02, 0x9b, 0xb1, 0xd6, 0xe7, 0xe8, 0xb7, 0x60, 0xde, 0xc3, 0x0e,
  6335. 0xbb, 0xea, 0xd4, 0x7e, 0x5d, 0xf5, 0x2c, 0xc3, 0x0f, 0x65, 0x39, 0x4a, 0x3d, 0x6c, 0x60, 0xcf,
  6336. 0x2c, 0x6b, 0x2d, 0x2f, 0xe0, 0xe0, 0xd8, 0xc0, 0x3e, 0xb8, 0xd6, 0xc2, 0x0a, 0xe3, 0x21, 0x70,
  6337. 0x69, 0x48, 0x1a, 0x7b, 0xe4, 0xd9, 0x48, 0xcd, 0xcf, 0x46, 0xee, 0xc2, 0x89, 0xfe, 0xe5, 0xf9,
  6338. 0x7c, 0x47, 0x7a, 0x50, 0xaa, 0x80, 0xed, 0xca, 0xa7, 0x3a, 0x8a, 0x3d, 0x14, 0xf1, 0x8f, 0xfc,
  6339. 0xc7, 0xc1, 0xa3, 0x57, 0x0e, 0xe2, 0x04, 0x20, 0x71, 0x82, 0x47, 0xd9, 0xaa, 0x1f, 0x2e, 0xbc,
  6340. 0x2f, 0xc0, 0x59, 0xff, 0x38, 0x86, 0xfa, 0xa3, 0xec, 0xc1, 0xfd, 0xd1, 0x69, 0xef, 0x48, 0x07,
  6341. 0xbb, 0xa5, 0x67, 0x60, 0xa1, 0x87, 0x1c, 0x4f, 0xa3, 0x58, 0x62, 0x2d, 0xb4, 0x0c, 0xd3, 0x29,
  6342. 0xf1, 0xbb, 0x29, 0x48, 0x6f, 0x58, 0xaa, 0x4d, 0x98, 0x8a, 0x0c, 0xa6, 0x3d, 0x73, 0x9e, 0xe8,
  6343. 0x31, 0xe7, 0xaf, 0x43, 0xce, 0xf4, 0x10, 0xe9, 0x19, 0x8e, 0x0d, 0xb0, 0x7a, 0xfe, 0x1e, 0x4b,
  6344. 0xf8, 0x58, 0xa5, 0x29, 0x1f, 0x95, 0x9c, 0xf2, 0xcb, 0xbe, 0xe5, 0x4c, 0x92, 0x35, 0x4e, 0x0f,
  6345. 0x59, 0xa3, 0xc7, 0x76, 0x2e, 0x40, 0xaa, 0xa5, 0xba, 0x8a, 0xa6, 0x33, 0x35, 0x62, 0x5f, 0x11,
  6346. 0x36, 0x75, 0x3c, 0xca, 0xa6, 0x86, 0xbc, 0x59, 0xaa, 0xc7, 0x9b, 0x3d, 0x0c, 0x19, 0x57, 0xb1,
  6347. 0xdb, 0xaa, 0x4b, 0x87, 0xa9, 0x5a, 0x03, 0x05, 0x91, 0x09, 0xbc, 0xc5, 0x4a, 0x87, 0x2d, 0x16,
  6348. 0x7e, 0xda, 0x3b, 0xae, 0x62, 0xbb, 0xd4, 0xda, 0xd1, 0x87, 0x50, 0x9a, 0x40, 0x88, 0xb1, 0x7b,
  6349. 0x80, 0x78, 0x44, 0x3a, 0x48, 0x63, 0xdd, 0x09, 0xd5, 0x68, 0xe1, 0x21, 0x51, 0x1a, 0x6a, 0xa8,
  6350. 0x32, 0x30, 0x51, 0xaf, 0xae, 0x2f, 0x47, 0xd8, 0xa8, 0x49, 0x48, 0x2e, 0x6f, 0xac, 0x57, 0xa9,
  6351. 0x71, 0x2a, 0x5f, 0xda, 0x90, 0x36, 0x89, 0x71, 0x12, 0xff, 0x2f, 0x01, 0x49, 0x22, 0xee, 0x39,
  6352. 0xc8, 0x6f, 0xbe, 0x51, 0xaf, 0xf6, 0x2c, 0x88, 0x20, 0x57, 0x91, 0xaa, 0xe5, 0xcd, 0xaa, 0x5c,
  6353. 0x59, 0xdd, 0x6a, 0x6c, 0x56, 0xa5, 0xbc, 0x80, 0x61, 0xcb, 0xd5, 0xd5, 0x2a, 0x07, 0x4b, 0x60,
  6354. 0xd8, 0x56, 0x9d, 0x18, 0x36, 0x79, 0xad, 0x4c, 0x60, 0x63, 0x68, 0x06, 0xa6, 0x3c, 0xd8, 0xfa,
  6355. 0xc6, 0x72, 0xb5, 0x91, 0x4f, 0xe2, 0x69, 0x52, 0xb5, 0x5e, 0xae, 0x49, 0x3e, 0xea, 0x38, 0x45,
  6356. 0x5d, 0xe6, 0xb7, 0x48, 0x61, 0x62, 0xd8, 0xb6, 0x18, 0x53, 0xae, 0x6f, 0x6c, 0xac, 0xe6, 0x27,
  6357. 0x30, 0x94, 0x6d, 0x1c, 0x40, 0x27, 0xd1, 0x71, 0x28, 0x34, 0xaa, 0x9b, 0x01, 0x48, 0x5e, 0x2b,
  6358. 0xaf, 0x97, 0x57, 0xaa, 0x6b, 0xd5, 0xf5, 0xcd, 0x7c, 0x1a, 0xcd, 0xc3, 0x4c, 0x79, 0x6b, 0x73,
  6359. 0x43, 0x66, 0xdb, 0x52, 0x42, 0x00, 0x0b, 0x90, 0x80, 0xc3, 0x04, 0x66, 0x50, 0x0e, 0x00, 0x2f,
  6360. 0xb6, 0x5a, 0xbe, 0x54, 0x5d, 0x6d, 0xe4, 0xb3, 0x68, 0x16, 0xa6, 0xf1, 0x37, 0xe5, 0x49, 0x2e,
  6361. 0x6f, 0x6d, 0x5e, 0xce, 0x4f, 0x11, 0xe9, 0x87, 0x76, 0x6c, 0xd4, 0xae, 0x57, 0xf3, 0x39, 0x1f,
  6362. 0x5e, 0xdd, 0xbc, 0xb6, 0x21, 0x5d, 0x91, 0xeb, 0x1b, 0xab, 0xb5, 0xca, 0x1b, 0xf9, 0x69, 0x54,
  6363. 0x84, 0x05, 0xba, 0x48, 0x6d, 0x7d, 0xb3, 0xba, 0x5e, 0x5e, 0xaf, 0x54, 0xbd, 0xb1, 0xbc, 0xf8,
  6364. 0x15, 0x01, 0xe6, 0x2a, 0x24, 0x5c, 0x60, 0x9e, 0x40, 0x52, 0x3f, 0xd9, 0x55, 0x1d, 0x17, 0x9d,
  6365. 0x02, 0xb0, 0x6c, 0xf3, 0x2d, 0xb5, 0xe9, 0x62, 0xcb, 0x29, 0xf8, 0x17, 0x2d, 0xcd, 0xa0, 0xb5,
  6366. 0x56, 0xec, 0x2d, 0x7c, 0x0e, 0x26, 0x58, 0xc0, 0xc4, 0x52, 0xb2, 0xc7, 0x07, 0x05, 0x1d, 0x92,
  6367. 0x37, 0x19, 0x5f, 0x19, 0x4b, 0xc1, 0xbe, 0x99, 0x5d, 0x09, 0xf6, 0x25, 0x7e, 0x5a, 0x80, 0x99,
  6368. 0x15, 0xd5, 0xbd, 0x7b, 0x04, 0x9e, 0x02, 0xf0, 0x5f, 0x91, 0x34, 0x6d, 0xcc, 0x50, 0xbd, 0x27,
  6369. 0x64, 0xcb, 0xb7, 0x3a, 0xe3, 0x81, 0xd5, 0x11, 0xff, 0x54, 0x80, 0x39, 0xea, 0x28, 0x8f, 0x94,
  6370. 0x94, 0x0b, 0x90, 0xea, 0x92, 0x5d, 0xd9, 0x23, 0x5f, 0x1c, 0x24, 0x4d, 0x4a, 0x9f, 0xc4, 0x30,
  6371. 0x22, 0xd9, 0xf8, 0x9e, 0x00, 0xf3, 0x74, 0x9a, 0xff, 0x1e, 0x3d, 0x12, 0x3e, 0x1e, 0x81, 0x6c,
  6372. 0xc8, 0x1b, 0x07, 0xd9, 0x2c, 0x30, 0x02, 0x57, 0x7c, 0x8a, 0xcd, 0xf2, 0x1c, 0x05, 0xa5, 0x9c,
  6373. 0xe4, 0x3a, 0xbc, 0x98, 0x23, 0x5c, 0x2c, 0x4c, 0xf5, 0x16, 0x0b, 0x3d, 0x9e, 0x27, 0x39, 0x9e,
  6374. 0x7f, 0x22, 0x01, 0x27, 0x1a, 0xaa, 0x1b, 0xe5, 0x7c, 0xef, 0x23, 0xde, 0x5f, 0x87, 0x0c, 0x1f,
  6375. 0x46, 0x8c, 0x8f, 0x18, 0x46, 0xf0, 0xc8, 0xbe, 0x14, 0x52, 0x9c, 0x14, 0x7e, 0x57, 0x80, 0x42,
  6376. 0x43, 0x75, 0x57, 0x43, 0xc9, 0x99, 0x11, 0x04, 0x80, 0x78, 0x01, 0xec, 0x9f, 0xf9, 0x88, 0x34,
  6377. 0x51, 0x32, 0x32, 0x4d, 0x14, 0xa5, 0xad, 0x7f, 0x2c, 0xc0, 0x83, 0x0d, 0xd5, 0xed, 0x8b, 0x1d,
  6378. 0x8f, 0xe6, 0xdc, 0xa2, 0x13, 0x57, 0xc9, 0xb8, 0xc4, 0x55, 0x94, 0xd0, 0xff, 0x46, 0x80, 0x85,
  6379. 0x86, 0xea, 0x86, 0xa2, 0xd6, 0x23, 0xa1, 0xbd, 0x2f, 0xff, 0x95, 0x3c, 0x58, 0xfe, 0x2b, 0x8a,
  6380. 0xa9, 0xaf, 0x0a, 0x30, 0x4b, 0x34, 0x89, 0x45, 0x9e, 0x47, 0xc3, 0x51, 0x28, 0x57, 0x96, 0xec,
  6381. 0xcd, 0x95, 0x45, 0xd1, 0xf9, 0xdb, 0x02, 0xcc, 0x52, 0x5b, 0x47, 0x43, 0xcc, 0xa3, 0xa1, 0xf3,
  6382. 0x34, 0xe4, 0x7a, 0xc2, 0x5d, 0xaa, 0x31, 0x53, 0x9d, 0xd0, 0x93, 0xdf, 0x23, 0x78, 0x82, 0x23,
  6383. 0xf8, 0x1f, 0x13, 0x30, 0x87, 0xd5, 0x3d, 0x48, 0xb8, 0x1e, 0x09, 0xc5, 0x97, 0x21, 0xa5, 0x34,
  6384. 0x5d, 0x8f, 0xd2, 0x5c, 0x4c, 0x9a, 0x30, 0x8a, 0xb0, 0xa5, 0x32, 0xc1, 0x93, 0x18, 0x3e, 0x7a,
  6385. 0xde, 0xf7, 0x56, 0xfb, 0x4c, 0x28, 0xf7, 0xba, 0x2a, 0x5e, 0x1a, 0x75, 0x48, 0xd1, 0xe5, 0x71,
  6386. 0x30, 0xb9, 0xb5, 0x7e, 0x65, 0x7d, 0xe3, 0xda, 0x3a, 0x7d, 0x0f, 0xe3, 0x80, 0xa6, 0x5e, 0x6e,
  6387. 0x34, 0xae, 0x6d, 0x48, 0xcb, 0x79, 0x01, 0x87, 0x59, 0x2b, 0xd5, 0xf5, 0xaa, 0x84, 0x43, 0x36,
  6388. 0x1f, 0x9c, 0xf0, 0x26, 0x6e, 0x35, 0xaa, 0xd2, 0x7a, 0x79, 0xad, 0x9a, 0x1f, 0x13, 0xdf, 0x15,
  6389. 0x60, 0x6e, 0x59, 0xd5, 0xd5, 0x23, 0xf6, 0xe1, 0x1e, 0x73, 0x49, 0x8e, 0xb9, 0x1d, 0x98, 0x5d,
  6390. 0xd5, 0x1c, 0x2f, 0xac, 0xb9, 0x1b, 0x57, 0x28, 0x08, 0xa0, 0x92, 0xa1, 0x00, 0xaa, 0x0b, 0x73,
  6391. 0xe1, 0x9d, 0x1c, 0xcb, 0x34, 0x1c, 0x15, 0xbd, 0x00, 0x93, 0x8c, 0x44, 0xa7, 0x20, 0x90, 0xf4,
  6392. 0xf0, 0xe0, 0x48, 0xcd, 0x9f, 0x8d, 0x3e, 0x0a, 0x53, 0x1d, 0xcd, 0x71, 0xb0, 0x51, 0xc4, 0x3b,
  6393. 0xd3, 0x8a, 0x65, 0x5a, 0xca, 0x32, 0xe0, 0x75, 0x0c, 0x13, 0xdf, 0x13, 0x60, 0x76, 0x45, 0x75,
  6394. 0xfd, 0x27, 0xd2, 0x5d, 0xe0, 0xf0, 0x34, 0x64, 0x83, 0x07, 0x5e, 0x48, 0xd8, 0x19, 0x1f, 0x1e,
  6395. 0x13, 0xbd, 0xbd, 0x05, 0xf3, 0x58, 0x08, 0x3e, 0x35, 0xf7, 0x52, 0xe0, 0x1f, 0x08, 0xb0, 0x50,
  6396. 0x51, 0x8c, 0xa6, 0xaa, 0xff, 0x00, 0x99, 0xe7, 0x75, 0xed, 0x0e, 0x2c, 0xf4, 0x32, 0xcf, 0x74,
  6397. 0xe0, 0x15, 0x00, 0x1f, 0xd9, 0xd3, 0x82, 0x87, 0x06, 0x3f, 0x75, 0x25, 0x0e, 0x63, 0x7f, 0x9a,
  6398. 0xd0, 0x86, 0x85, 0x15, 0xd5, 0xc5, 0x5e, 0xd2, 0x4f, 0xe2, 0x1e, 0x5e, 0x1c, 0x51, 0x7c, 0x7e,
  6399. 0x2a, 0x01, 0x59, 0x7e, 0x1b, 0xf4, 0x1c, 0x1c, 0x6b, 0xa9, 0x37, 0x94, 0xae, 0xee, 0xf6, 0x25,
  6400. 0x71, 0x69, 0x42, 0x61, 0x9e, 0x0d, 0xf7, 0x24, 0x71, 0x97, 0x60, 0xf6, 0xa6, 0xa2, 0x6b, 0xe1,
  6401. 0x3c, 0x98, 0xd7, 0x2e, 0x37, 0x43, 0x86, 0xb8, 0x34, 0x98, 0x43, 0x33, 0x48, 0x74, 0x1f, 0x2e,
  6402. 0x36, 0x4d, 0x7a, 0x19, 0x24, 0x32, 0x12, 0x64, 0x90, 0x16, 0x81, 0x2e, 0xc1, 0xcd, 0x75, 0x0a,
  6403. 0xe3, 0x64, 0xed, 0x69, 0x32, 0xe0, 0x4f, 0x75, 0xd0, 0x79, 0x98, 0xa7, 0x73, 0xc3, 0x2e, 0x85,
  6404. 0xb6, 0xc2, 0xa5, 0x25, 0x4a, 0x66, 0x28, 0x81, 0xe2, 0x88, 0xdf, 0x11, 0x60, 0x9e, 0xbe, 0xea,
  6405. 0x8e, 0x36, 0xc4, 0xbf, 0x00, 0x69, 0x3f, 0xcc, 0x65, 0xe1, 0xc6, 0x90, 0x4a, 0xd8, 0xa4, 0x17,
  6406. 0xfe, 0x72, 0x77, 0x29, 0x15, 0xba, 0x4b, 0xbf, 0x23, 0xc0, 0x3c, 0xb5, 0xd8, 0xf7, 0xe3, 0x73,
  6407. 0x25, 0x2a, 0xe8, 0xf8, 0xac, 0x40, 0xed, 0xad, 0x47, 0xef, 0x11, 0x45, 0x47, 0x71, 0xcf, 0xe7,
  6408. 0xdf, 0x12, 0x00, 0xad, 0x04, 0x6f, 0x9f, 0xfb, 0x5d, 0x7a, 0xff, 0x9c, 0x84, 0x49, 0x8f, 0xd6,
  6409. 0xc8, 0xe4, 0xdf, 0xf3, 0x90, 0x62, 0x01, 0x6d, 0x62, 0x7f, 0x45, 0x6f, 0x36, 0x7d, 0xc4, 0x02,
  6410. 0xfb, 0xc0, 0x7a, 0x52, 0x01, 0x26, 0x3c, 0x33, 0x42, 0x1b, 0xfe, 0xbc, 0x4f, 0x6c, 0x38, 0xa2,
  6411. 0xea, 0x15, 0x37, 0xa8, 0xe1, 0xe8, 0xaf, 0x55, 0x5c, 0xf4, 0xd3, 0x8c, 0x6d, 0x12, 0x79, 0x3d,
  6412. 0x32, 0xf0, 0xbe, 0x0c, 0xaf, 0xd0, 0xec, 0x44, 0x65, 0x13, 0x7b, 0x1e, 0x96, 0xc9, 0xc3, 0x3c,
  6413. 0x2c, 0x2b, 0x00, 0x1d, 0xc5, 0x50, 0xda, 0x6a, 0xc7, 0x53, 0xb5, 0x4c, 0x4c, 0x7e, 0x15, 0x2f,
  6414. 0xb5, 0xe6, 0x4f, 0x95, 0x38, 0x34, 0xf1, 0xc7, 0x84, 0xc3, 0x16, 0x3d, 0x16, 0x00, 0xb1, 0x0f,
  6415. 0xf9, 0x5a, 0x6d, 0xf3, 0xb2, 0x4c, 0x4b, 0x1c, 0x63, 0xbd, 0xc5, 0x90, 0x64, 0xa8, 0x18, 0x32,
  6416. 0x1e, 0x14, 0x43, 0x52, 0xe2, 0xd7, 0x04, 0xc8, 0x85, 0x49, 0x44, 0xa7, 0x20, 0x8b, 0x59, 0x95,
  6417. 0xbb, 0x56, 0xdb, 0x56, 0x5a, 0x5e, 0x77, 0x25, 0x61, 0x7f, 0x8b, 0x82, 0xd0, 0xc3, 0x54, 0x94,
  6418. 0xb2, 0xad, 0x5a, 0x8a, 0x66, 0xb3, 0x46, 0x1f, 0xc0, 0x20, 0x89, 0x40, 0x50, 0x1d, 0xa6, 0x19,
  6419. 0xba, 0x6c, 0x5a, 0x5e, 0xba, 0x3e, 0xbe, 0xc0, 0x5c, 0x0e, 0xd6, 0xde, 0xa0, 0xd3, 0xa5, 0x5c,
  6420. 0x37, 0xf4, 0x2d, 0x76, 0x00, 0xf5, 0xcf, 0x42, 0xcf, 0xc2, 0x31, 0x9e, 0x56, 0x99, 0x4b, 0xea,
  6421. 0xd2, 0xdb, 0x32, 0xc7, 0x91, 0xdd, 0xf0, 0xf3, 0xbb, 0x43, 0xfb, 0x50, 0xc4, 0x06, 0xcc, 0xf4,
  6422. 0x15, 0x87, 0xd1, 0x2b, 0x90, 0x7a, 0x5b, 0x33, 0x5a, 0xe6, 0xdb, 0x03, 0x7b, 0x45, 0x39, 0xbc,
  6423. 0x6b, 0x64, 0xb6, 0xc4, 0xb0, 0xc4, 0xcf, 0x08, 0xa1, 0x55, 0xe9, 0x28, 0x6a, 0x43, 0xa1, 0xa5,
  6424. 0x68, 0xfa, 0x9e, 0xcc, 0x17, 0xaf, 0xd9, 0x3e, 0xf4, 0x72, 0x47, 0x77, 0x87, 0x2d, 0x63, 0xa4,
  6425. 0xbe, 0xe5, 0x2e, 0x7f, 0x44, 0x5a, 0x68, 0x45, 0x8e, 0x5c, 0x9a, 0x84, 0x14, 0xad, 0x89, 0x8b,
  6426. 0x0d, 0x58, 0x88, 0xc6, 0xee, 0x49, 0x8c, 0x27, 0x7a, 0x13, 0xe3, 0x45, 0x98, 0x6c, 0x75, 0x69,
  6427. 0xd4, 0xc3, 0x7a, 0xb6, 0xfc, 0x6f, 0xf1, 0x7f, 0x04, 0x38, 0xce, 0xa5, 0x97, 0x38, 0xa5, 0xbf,
  6428. 0x8f, 0x8c, 0xed, 0xdd, 0xb8, 0xb8, 0x91, 0xaf, 0xb4, 0xbf, 0xa2, 0x19, 0x0e, 0x8f, 0xfb, 0x86,
  6429. 0x76, 0x4b, 0xbd, 0x9f, 0xf8, 0x3e, 0xc1, 0xfa, 0x73, 0xa8, 0xb9, 0x1f, 0x27, 0xe6, 0x3e, 0x6d,
  6430. 0xf8, 0x76, 0x3e, 0x8a, 0xa3, 0xdf, 0x17, 0xe0, 0x21, 0xc9, 0xd4, 0xf5, 0x6d, 0xa5, 0xb9, 0xeb,
  6431. 0xb1, 0xc5, 0x6e, 0xd2, 0xfd, 0xee, 0x3e, 0xb7, 0xe8, 0x33, 0x87, 0x8b, 0x3d, 0x58, 0xa0, 0x1f,
  6432. 0x6e, 0x53, 0x12, 0x46, 0x6b, 0x53, 0x12, 0x6f, 0xc3, 0x6c, 0x54, 0x75, 0x32, 0xbe, 0xa3, 0xf5,
  6433. 0x11, 0xc8, 0x75, 0x34, 0x83, 0x77, 0xb4, 0xf4, 0xc7, 0x28, 0xd9, 0x8e, 0x66, 0x04, 0x4e, 0x16,
  6434. 0xcf, 0x52, 0xde, 0xe9, 0x77, 0xc7, 0xd9, 0x8e, 0xf2, 0x8e, 0x3f, 0x4b, 0xfc, 0xfb, 0x04, 0xe4,
  6435. 0x1b, 0xaa, 0x4b, 0x0b, 0xec, 0x47, 0x73, 0x00, 0xdb, 0xfd, 0x0d, 0x54, 0xf4, 0x27, 0x2e, 0x2f,
  6436. 0xc6, 0x65, 0x46, 0x42, 0xd4, 0x1d, 0xbc, 0x93, 0x6a, 0x3c, 0xa6, 0x93, 0x2a, 0x42, 0x4d, 0xef,
  6437. 0x46, 0xf3, 0xc1, 0xaf, 0x0a, 0x24, 0xdf, 0xc4, 0x35, 0x5f, 0x1d, 0x89, 0x78, 0x39, 0xbd, 0x49,
  6438. 0x86, 0xf5, 0x26, 0x4a, 0xa7, 0xff, 0x00, 0x1b, 0x18, 0x6c, 0x88, 0x6b, 0x75, 0x89, 0xfd, 0x80,
  6439. 0xea, 0x68, 0xd3, 0x36, 0x1c, 0x31, 0xe8, 0x49, 0x40, 0x36, 0x26, 0x42, 0x95, 0x9b, 0xb6, 0xda,
  6440. 0x52, 0x0d, 0x1c, 0x35, 0x3a, 0xe4, 0x58, 0x26, 0xa5, 0x19, 0x3a, 0x52, 0x09, 0x06, 0xc4, 0xf7,
  6441. 0x05, 0x78, 0xa0, 0x62, 0x76, 0x2c, 0xfc, 0x80, 0xf9, 0x41, 0x91, 0xcf, 0x9b, 0xb6, 0x5d, 0x98,
  6442. 0xe9, 0xfb, 0xf9, 0x11, 0xd6, 0x44, 0xee, 0x07, 0x48, 0xec, 0x26, 0x62, 0x6a, 0xc6, 0xa4, 0xbc,
  6443. 0xc2, 0xcf, 0xc6, 0x77, 0xf6, 0x2c, 0xf0, 0x30, 0xfa, 0xd0, 0xa5, 0x7a, 0x35, 0xcd, 0xc1, 0xf1,
  6444. 0xe3, 0x55, 0xfc, 0x50, 0x80, 0x63, 0xd8, 0x33, 0x84, 0xba, 0xf2, 0x8e, 0x84, 0xf5, 0xfe, 0xb6,
  6445. 0xc1, 0xe4, 0x41, 0xdb, 0x06, 0xa3, 0x34, 0xf2, 0x1f, 0x58, 0x55, 0xa2, 0xaf, 0x89, 0x8e, 0x31,
  6446. 0x77, 0xa2, 0x9f, 0xb9, 0x61, 0x85, 0x94, 0x13, 0xfd, 0x4c, 0xf1, 0x0c, 0x45, 0x77, 0xf8, 0x25,
  6447. 0x0f, 0xdb, 0xe1, 0x17, 0x95, 0x29, 0xab, 0xf9, 0x4d, 0xfb, 0xc1, 0xef, 0x16, 0xbc, 0xf6, 0x57,
  6448. 0x21, 0xdc, 0x8f, 0x1b, 0xee, 0x8d, 0x4d, 0xf4, 0xf6, 0xc6, 0x9e, 0xff, 0x8b, 0x17, 0x21, 0xc7,
  6449. 0x32, 0x2b, 0x34, 0xa0, 0xb0, 0xd1, 0x5f, 0x0a, 0x90, 0xe5, 0xb3, 0x91, 0x28, 0xfa, 0x1d, 0x12,
  6450. 0x91, 0x1a, 0x2d, 0x9e, 0xdd, 0xc7, 0x4c, 0xea, 0xed, 0xc4, 0xf6, 0x8f, 0xff, 0xed, 0x3f, 0x7d,
  6451. 0x21, 0xa1, 0xa0, 0x27, 0x4a, 0x37, 0xcf, 0x95, 0x6e, 0xd3, 0x97, 0xf0, 0xcb, 0xec, 0x00, 0x9c,
  6452. 0xd2, 0x62, 0xc9, 0x2f, 0x1b, 0x94, 0x16, 0xef, 0x78, 0x3f, 0xe7, 0x74, 0xae, 0x9f, 0x43, 0x25,
  6453. 0x3c, 0xdf, 0x9f, 0x77, 0x3b, 0x38, 0xc4, 0x3b, 0x25, 0x92, 0xde, 0x2a, 0xdd, 0xc6, 0xff, 0x04,
  6454. 0x28, 0xe8, 0xcf, 0x04, 0x80, 0xa0, 0x38, 0x8d, 0xa2, 0x8f, 0xa2, 0xaf, 0x7a, 0x5d, 0x1c, 0x98,
  6455. 0x68, 0x15, 0x5d, 0x42, 0xbd, 0xc1, 0xa8, 0xc7, 0x87, 0x12, 0x43, 0xbb, 0x4f, 0x47, 0x69, 0xf1,
  6456. 0xce, 0xf5, 0x57, 0xd0, 0xc5, 0x11, 0xa9, 0x2f, 0xdd, 0x0e, 0x54, 0xee, 0x0e, 0xfa, 0x8e, 0x00,
  6457. 0x53, 0xa1, 0x5e, 0x00, 0x14, 0x2d, 0xf0, 0xa8, 0x7e, 0x81, 0xe2, 0x90, 0x9c, 0xa1, 0xd8, 0x21,
  6458. 0x2c, 0xb5, 0xc5, 0x91, 0x0e, 0xe4, 0x82, 0xb0, 0x78, 0xfd, 0x19, 0x71, 0xd4, 0x33, 0xb9, 0x20,
  6459. 0x2c, 0xa2, 0x0f, 0x05, 0x98, 0x0a, 0xd5, 0xea, 0x63, 0x78, 0x89, 0xaa, 0xe7, 0x0f, 0xe5, 0xe5,
  6460. 0x16, 0xe1, 0xc5, 0x2d, 0x8e, 0x74, 0x3c, 0x98, 0x97, 0x72, 0xf1, 0x50, 0x27, 0x84, 0x19, 0xfb,
  6461. 0x4c, 0x02, 0x72, 0xe1, 0xea, 0x3d, 0x5a, 0x1c, 0xc0, 0x59, 0x4f, 0xd6, 0x67, 0x28, 0x6b, 0xbf,
  6462. 0x21, 0x10, 0xde, 0x7e, 0x45, 0x28, 0xbe, 0x30, 0x02, 0x73, 0x25, 0x3f, 0x50, 0x64, 0x8c, 0x2a,
  6463. 0xe2, 0x9b, 0x87, 0x61, 0x94, 0x5b, 0xef, 0x36, 0x1f, 0x07, 0xdf, 0x29, 0xd1, 0x62, 0x11, 0x16,
  6464. 0xc4, 0x37, 0x12, 0xa1, 0x57, 0x07, 0x1f, 0x95, 0x9e, 0x8f, 0x8b, 0xd1, 0xe2, 0xeb, 0xff, 0x43,
  6465. 0x05, 0xf3, 0x87, 0x54, 0x30, 0xbf, 0x27, 0x88, 0x2b, 0x07, 0x16, 0x8c, 0xa3, 0xba, 0xdc, 0xce,
  6466. 0x58, 0x4e, 0x37, 0x44, 0xe5, 0xde, 0xc8, 0x49, 0x09, 0xed, 0x83, 0xfe, 0x53, 0x80, 0x99, 0xbe,
  6467. 0xca, 0x3f, 0x7a, 0x32, 0x36, 0x96, 0x8d, 0xea, 0x10, 0x18, 0x2a, 0xa2, 0x0f, 0xa8, 0x88, 0x7e,
  6468. 0x52, 0x10, 0x9f, 0x1f, 0xe9, 0x62, 0x38, 0xfe, 0x86, 0x58, 0x24, 0x35, 0x71, 0xf9, 0x50, 0x22,
  6469. 0xd1, 0xfd, 0xa5, 0xd0, 0xff, 0xd3, 0xe0, 0xb6, 0xbf, 0xef, 0x34, 0xbe, 0xbc, 0x19, 0xd3, 0x66,
  6470. 0x30, 0x94, 0xf7, 0x2f, 0x52, 0xde, 0xdf, 0x17, 0xc4, 0x0b, 0xa3, 0xf2, 0x1e, 0xec, 0x89, 0xd9,
  6471. 0x5f, 0xa5, 0xfa, 0x75, 0x60, 0xf6, 0x3b, 0xfc, 0x6a, 0xe8, 0xdf, 0x04, 0x98, 0xee, 0x69, 0x3e,
  6472. 0x40, 0x8f, 0xc7, 0x31, 0x1f, 0xd1, 0xa2, 0x30, 0x94, 0xef, 0xcf, 0x52, 0xbe, 0x3f, 0x2d, 0x88,
  6473. 0xcf, 0x8d, 0xca, 0x37, 0xdd, 0x0e, 0xf3, 0x7c, 0x59, 0xac, 0x1c, 0x8a, 0x67, 0xc5, 0x5b, 0x09,
  6474. 0xf3, 0x9b, 0xe5, 0xfb, 0x12, 0x62, 0x82, 0x8b, 0x88, 0xd6, 0x85, 0xa1, 0x9c, 0xfe, 0x2c, 0xe5,
  6475. 0xf4, 0x3d, 0x41, 0x7c, 0x71, 0x74, 0xed, 0x66, 0x43, 0x98, 0xd9, 0x2b, 0xe2, 0x6b, 0x87, 0xd4,
  6476. 0xef, 0x60, 0x31, 0xf4, 0xaf, 0x02, 0x64, 0xf9, 0xfe, 0x86, 0x18, 0x7e, 0x23, 0x5a, 0x20, 0x86,
  6477. 0xf2, 0xfb, 0x33, 0x94, 0xdf, 0x77, 0x47, 0xe5, 0xb7, 0xcb, 0xed, 0x75, 0x37, 0x0e, 0xb7, 0xe3,
  6478. 0xad, 0x84, 0xfe, 0x4b, 0x80, 0xa9, 0x50, 0x0b, 0x42, 0x8c, 0x4f, 0x8f, 0x6a, 0x53, 0x18, 0xca,
  6479. 0xee, 0xcf, 0x53, 0x76, 0x3f, 0x77, 0x90, 0x0b, 0xec, 0x6f, 0x86, 0xf9, 0xdd, 0x10, 0x5f, 0x3f,
  6480. 0x94, 0x8f, 0xef, 0x5d, 0x10, 0xfd, 0xb5, 0x00, 0x53, 0xa1, 0x96, 0x85, 0x18, 0xb6, 0xa3, 0xda,
  6481. 0x1a, 0x86, 0xb2, 0xcd, 0x22, 0xcd, 0xc5, 0x11, 0x23, 0xcd, 0xc5, 0xc3, 0x45, 0x9a, 0x1f, 0x0a,
  6482. 0x90, 0x0b, 0xd7, 0xa3, 0x63, 0x82, 0x98, 0xc8, 0x8a, 0x7d, 0xf1, 0xf1, 0x7d, 0xcd, 0x65, 0x2f,
  6483. 0x81, 0x5d, 0xc2, 0xa1, 0x8a, 0x96, 0xf6, 0x13, 0x78, 0x06, 0x85, 0xed, 0xeb, 0x4f, 0xa3, 0x73,
  6484. 0xfb, 0xe4, 0x91, 0xab, 0x86, 0xff, 0x9d, 0x00, 0x59, 0xbe, 0xe5, 0x21, 0xe6, 0x3e, 0x46, 0x74,
  6485. 0x45, 0xec, 0x37, 0xe8, 0x64, 0x7c, 0x0c, 0x3a, 0xa9, 0x80, 0x1e, 0x7c, 0x56, 0x97, 0xd0, 0xab,
  6486. 0x23, 0xf3, 0x51, 0xba, 0xcd, 0x37, 0x1a, 0xdc, 0x41, 0xff, 0x22, 0xc0, 0x74, 0x4f, 0x3f, 0x43,
  6487. 0x8c, 0x1b, 0x89, 0xee, 0x7a, 0x28, 0x2e, 0x78, 0x93, 0xbd, 0xff, 0xe8, 0x66, 0xa9, 0xda, 0xb1,
  6488. 0xdc, 0x3d, 0xce, 0xc8, 0x3c, 0x3b, 0x1a, 0x5b, 0x17, 0x9a, 0x64, 0xa3, 0xd1, 0x3c, 0x66, 0x2c,
  6489. 0x83, 0xc1, 0x6a, 0xf8, 0xb6, 0x4d, 0xf7, 0xf4, 0x2a, 0xc4, 0xb0, 0x1a, 0xdd, 0xd1, 0x50, 0x3c,
  6490. 0x15, 0x63, 0x93, 0x82, 0x99, 0xde, 0x5b, 0x68, 0xf8, 0x51, 0xde, 0x29, 0x39, 0x1c, 0xde, 0xf5,
  6491. 0x67, 0xd1, 0xd3, 0xfb, 0xe4, 0x94, 0xa2, 0xb1, 0xba, 0x27, 0xb6, 0x9b, 0xa1, 0x9c, 0x30, 0x8a,
  6492. 0x7f, 0x48, 0xf7, 0xd6, 0xac, 0x8b, 0x8b, 0xfb, 0x99, 0xca, 0xae, 0xda, 0x7b, 0xf4, 0x34, 0x3f,
  6493. 0x25, 0xa0, 0x17, 0x86, 0x5f, 0x36, 0xde, 0xa0, 0x04, 0x71, 0xec, 0xf5, 0xcb, 0xe8, 0xb5, 0xbb,
  6494. 0x13, 0x11, 0xa3, 0xff, 0x10, 0x20, 0xc3, 0xd5, 0xbd, 0xd1, 0x63, 0x71, 0xa7, 0xd8, 0xfb, 0x46,
  6495. 0x1a, 0x9c, 0x15, 0x17, 0xbf, 0x4c, 0xb9, 0xfc, 0x82, 0xc7, 0xe5, 0x01, 0x5e, 0x02, 0xd7, 0xaf,
  6496. 0xa1, 0xad, 0x7b, 0x12, 0xf7, 0xa3, 0x7f, 0x17, 0x20, 0x17, 0xee, 0xfc, 0x88, 0xb1, 0xac, 0x91,
  6497. 0xed, 0x21, 0x43, 0x8d, 0xd0, 0xe7, 0x29, 0xef, 0x3f, 0x2d, 0x88, 0x07, 0x3e, 0xe1, 0xbb, 0x11,
  6498. 0x03, 0xf1, 0x8b, 0xa1, 0xff, 0x16, 0x20, 0x17, 0x6e, 0x10, 0x89, 0x61, 0x39, 0xb2, 0x8b, 0x64,
  6499. 0x28, 0xcb, 0xfe, 0x71, 0x2f, 0x1e, 0xe2, 0xb8, 0x17, 0xef, 0xd1, 0x71, 0xff, 0x5a, 0x02, 0x8e,
  6500. 0xc5, 0x14, 0xaa, 0x50, 0xf4, 0x0f, 0xbb, 0x06, 0x97, 0xb5, 0x86, 0x4a, 0xe3, 0x5b, 0x54, 0x1a,
  6501. 0xbf, 0x29, 0x88, 0xe5, 0x03, 0x3f, 0x83, 0x6d, 0x46, 0x02, 0xd6, 0x84, 0xa6, 0xf8, 0x89, 0x7b,
  6502. 0x22, 0x19, 0x7e, 0x13, 0xf4, 0xf5, 0x04, 0xcc, 0x47, 0x96, 0x67, 0xd1, 0xb9, 0x61, 0x99, 0x82,
  6503. 0xbe, 0x52, 0xee, 0x50, 0x09, 0xfd, 0x11, 0x95, 0xd0, 0xb7, 0x05, 0xaa, 0xe3, 0x07, 0x4d, 0x14,
  6504. 0x04, 0x1b, 0x63, 0x31, 0xed, 0x88, 0xcd, 0x7b, 0x93, 0x27, 0xe8, 0xdd, 0x09, 0x7d, 0x4f, 0x80,
  6505. 0xb4, 0x5f, 0xcd, 0x42, 0xa7, 0xf7, 0x55, 0xed, 0x1a, 0x2a, 0x93, 0x5f, 0xa4, 0x32, 0xf9, 0x92,
  6506. 0x20, 0xbe, 0x32, 0x6a, 0x70, 0x1d, 0x2e, 0x70, 0x61, 0x59, 0xd4, 0xc5, 0x2b, 0x87, 0x92, 0x85,
  6507. 0xdd, 0xbb, 0x22, 0xe6, 0x79, 0x2a, 0x54, 0x04, 0x8b, 0x7f, 0x58, 0xf4, 0x15, 0xca, 0xee, 0x65,
  6508. 0x66, 0x20, 0xd8, 0xec, 0x6e, 0x64, 0x06, 0x74, 0x7e, 0x35, 0xf4, 0xbf, 0x02, 0x4c, 0xf7, 0xd4,
  6509. 0xd4, 0xe2, 0x32, 0x03, 0x91, 0x95, 0xb7, 0xa1, 0x7c, 0xff, 0x02, 0xe5, 0xfb, 0x8b, 0x82, 0x78,
  6510. 0x71, 0x34, 0xbe, 0xc9, 0x76, 0x96, 0xb7, 0x1d, 0xe6, 0xfc, 0xe3, 0xe2, 0xea, 0xe1, 0x9e, 0x54,
  6511. 0x7d, 0x4b, 0xa2, 0x77, 0x13, 0x80, 0xfa, 0xcb, 0x72, 0x68, 0x29, 0xda, 0x57, 0xc6, 0xd5, 0xef,
  6512. 0x86, 0x0a, 0xe1, 0x2b, 0x54, 0x08, 0x5f, 0x16, 0xc4, 0x8f, 0x8d, 0x24, 0x84, 0xa6, 0xb7, 0x63,
  6513. 0x48, 0x0e, 0x9b, 0xe2, 0xc6, 0xa1, 0xe4, 0x10, 0xb9, 0x2a, 0xfa, 0x7c, 0x82, 0xe4, 0x88, 0xf8,
  6514. 0xf6, 0x8d, 0xf8, 0x1c, 0x51, 0x44, 0x93, 0xc7, 0x50, 0x21, 0x7c, 0x93, 0x0a, 0xe1, 0xeb, 0x82,
  6515. 0xf8, 0xea, 0x61, 0x2c, 0x22, 0xde, 0x12, 0x4b, 0x61, 0x5b, 0xfc, 0xe1, 0x7b, 0x66, 0x0b, 0xd9,
  6516. 0x1e, 0xe8, 0x47, 0x69, 0xc7, 0x41, 0xf8, 0xff, 0xae, 0x7a, 0x22, 0x56, 0x28, 0x11, 0xf5, 0xcd,
  6517. 0xa1, 0x52, 0xf9, 0x25, 0x2a, 0x95, 0x9f, 0x13, 0xc4, 0x97, 0x47, 0xb5, 0x0b, 0xa1, 0xfd, 0xb0,
  6518. 0x48, 0x24, 0x71, 0xed, 0xb0, 0x39, 0x87, 0xde, 0x35, 0xd1, 0xe7, 0xbc, 0x5f, 0xa2, 0xf4, 0x96,
  6519. 0x0c, 0x07, 0xfc, 0x36, 0x24, 0xba, 0x1a, 0x3a, 0x54, 0x14, 0x5f, 0xa5, 0xa2, 0xf8, 0xe5, 0xd1,
  6520. 0x82, 0x0a, 0xe6, 0x26, 0x7b, 0xf6, 0xc4, 0xe2, 0xb8, 0x2a, 0x7e, 0xfc, 0xf0, 0x29, 0x98, 0xfe,
  6521. 0x75, 0x2f, 0x7d, 0x4d, 0x80, 0x63, 0x4d, 0xb3, 0x13, 0xc5, 0xcd, 0xa5, 0xd9, 0x8a, 0xf7, 0xdf,
  6522. 0x5f, 0x91, 0xbc, 0x71, 0x1d, 0xbf, 0x73, 0xeb, 0xc2, 0xf5, 0x8b, 0x6c, 0x6e, 0xdb, 0xd4, 0x15,
  6523. 0xa3, 0xbd, 0x64, 0xda, 0xed, 0x52, 0x5b, 0x35, 0xc8, 0x2b, 0xb8, 0x44, 0x87, 0x14, 0x4b, 0x73,
  6524. 0x42, 0xff, 0xbb, 0xec, 0x4b, 0xfe, 0xc7, 0x37, 0x12, 0x0f, 0xac, 0x50, 0xf4, 0x8a, 0x6e, 0x76,
  6525. 0x5b, 0x4b, 0x15, 0x7f, 0xc3, 0xab, 0xe7, 0xfe, 0xdc, 0x1b, 0x7b, 0x93, 0x8c, 0xbd, 0xe9, 0x8f,
  6526. 0xbd, 0x79, 0xf5, 0xdc, 0x76, 0x8a, 0x6c, 0xf0, 0xf4, 0xf7, 0x03, 0x00, 0x00, 0xff, 0xff, 0x61,
  6527. 0xea, 0xa4, 0xfb, 0xbd, 0x56, 0x00, 0x00,
  6528. }