25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

6836 satır
270 KiB

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