/sdk/containerservice/mgmt/src/main/java/com/azure/management/containerservice/KubernetesCluster.java

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 451 lines · 156 code · 51 blank · 244 comment · 0 complexity · 7bec95bc1288d37c8e7adbc9e59a66e4 MD5 · raw file

  1. // Copyright (c) Microsoft Corporation. All rights reserved.
  2. // Licensed under the MIT License.
  3. package com.azure.management.containerservice;
  4. import com.azure.core.annotation.Fluent;
  5. import com.azure.management.containerservice.implementation.ContainerServiceManager;
  6. import com.azure.management.containerservice.models.ManagedClusterInner;
  7. import com.azure.management.resources.fluentcore.arm.models.GroupableResource;
  8. import com.azure.management.resources.fluentcore.arm.models.Resource;
  9. import com.azure.management.resources.fluentcore.model.Appliable;
  10. import com.azure.management.resources.fluentcore.model.Attachable;
  11. import com.azure.management.resources.fluentcore.model.Creatable;
  12. import com.azure.management.resources.fluentcore.model.Refreshable;
  13. import com.azure.management.resources.fluentcore.model.Updatable;
  14. import java.util.List;
  15. import java.util.Map;
  16. /** A client-side representation for a managed Kubernetes cluster. */
  17. @Fluent
  18. public interface KubernetesCluster
  19. extends GroupableResource<ContainerServiceManager, ManagedClusterInner>,
  20. Refreshable<KubernetesCluster>,
  21. Updatable<KubernetesCluster.Update>,
  22. OrchestratorServiceBase {
  23. /** @return the provisioning state of the Kubernetes cluster */
  24. String provisioningState();
  25. /** @return the DNS prefix which was specified at creation time */
  26. String dnsPrefix();
  27. /** @return the FQDN for the master pool */
  28. String fqdn();
  29. /** @return the Kubernetes version */
  30. KubernetesVersion version();
  31. /** @return the Kubernetes configuration file content with administrative privileges to the cluster */
  32. byte[] adminKubeConfigContent();
  33. /** @return the Kubernetes configuration file content with user-level privileges to the cluster */
  34. byte[] userKubeConfigContent();
  35. /** @return the Kubernetes credentials with administrative privileges to the cluster */
  36. List<CredentialResult> adminKubeConfigs();
  37. /** @return the Kubernetes credentials with user-level privileges to the cluster */
  38. List<CredentialResult> userKubeConfigs();
  39. /** @return the service principal client ID */
  40. String servicePrincipalClientId();
  41. /** @return the service principal secret */
  42. String servicePrincipalSecret();
  43. /** @return the Linux root username */
  44. String linuxRootUsername();
  45. /** @return the Linux SSH key */
  46. String sshKey();
  47. /** @return the agent pools in the Kubernetes cluster */
  48. Map<String, KubernetesClusterAgentPool> agentPools();
  49. /** @return the network profile settings for the cluster */
  50. ContainerServiceNetworkProfile networkProfile();
  51. /** @return the cluster's add-on's profiles */
  52. Map<String, ManagedClusterAddonProfile> addonProfiles();
  53. /** @return the name of the resource group containing agent pool nodes */
  54. String nodeResourceGroup();
  55. /** @return true if Kubernetes Role-Based Access Control is enabled */
  56. boolean enableRBAC();
  57. // Fluent interfaces
  58. /** Interface for all the definitions related to a Kubernetes cluster. */
  59. interface Definition
  60. extends KubernetesCluster.DefinitionStages.Blank,
  61. KubernetesCluster.DefinitionStages.WithGroup,
  62. KubernetesCluster.DefinitionStages.WithVersion,
  63. DefinitionStages.WithLinuxRootUsername,
  64. DefinitionStages.WithLinuxSshKey,
  65. DefinitionStages.WithServicePrincipalClientId,
  66. DefinitionStages.WithServicePrincipalProfile,
  67. DefinitionStages.WithDnsPrefix,
  68. DefinitionStages.WithAgentPool,
  69. DefinitionStages.WithNetworkProfile,
  70. DefinitionStages.WithAddOnProfiles,
  71. KubernetesCluster.DefinitionStages.WithCreate {
  72. }
  73. /** Grouping of Kubernetes cluster definition stages. */
  74. interface DefinitionStages {
  75. /** The first stage of a container service definition. */
  76. interface Blank extends DefinitionWithRegion<WithGroup> {
  77. }
  78. /** The stage of the Kubernetes cluster definition allowing to specify the resource group. */
  79. interface WithGroup extends GroupableResource.DefinitionStages.WithGroup<WithVersion> {
  80. }
  81. /** The stage of the Kubernetes cluster definition allowing to specify orchestration type. */
  82. interface WithVersion {
  83. /**
  84. * Specifies the version for the Kubernetes cluster.
  85. *
  86. * @deprecated use {@link #withVersion(String)} or {@link #withLatestVersion}
  87. * @param kubernetesVersion the kubernetes version
  88. * @return the next stage of the definition
  89. */
  90. @Deprecated
  91. WithLinuxRootUsername withVersion(KubernetesVersion kubernetesVersion);
  92. /**
  93. * Specifies the version for the Kubernetes cluster.
  94. *
  95. * @param kubernetesVersion the kubernetes version
  96. * @return the next stage of the definition
  97. */
  98. WithLinuxRootUsername withVersion(String kubernetesVersion);
  99. /**
  100. * Uses the latest version for the Kubernetes cluster.
  101. *
  102. * @return the next stage of the definition
  103. */
  104. WithLinuxRootUsername withLatestVersion();
  105. }
  106. /** The stage of the Kubernetes cluster definition allowing to specific the Linux root username. */
  107. interface WithLinuxRootUsername {
  108. /**
  109. * Begins the definition to specify Linux root username.
  110. *
  111. * @param rootUserName the root username
  112. * @return the next stage of the definition
  113. */
  114. WithLinuxSshKey withRootUsername(String rootUserName);
  115. }
  116. /** The stage of the Kubernetes cluster definition allowing to specific the Linux SSH key. */
  117. interface WithLinuxSshKey {
  118. /**
  119. * Begins the definition to specify Linux ssh key.
  120. *
  121. * @param sshKeyData the SSH key data
  122. * @return the next stage of the definition
  123. */
  124. WithServicePrincipalClientId withSshKey(String sshKeyData);
  125. }
  126. /** The stage of the Kubernetes cluster definition allowing to specify the service principal client ID. */
  127. interface WithServicePrincipalClientId {
  128. /**
  129. * Properties for Kubernetes cluster service principal.
  130. *
  131. * @param clientId the ID for the service principal
  132. * @return the next stage
  133. */
  134. WithServicePrincipalProfile withServicePrincipalClientId(String clientId);
  135. }
  136. /** The stage of the Kubernetes cluster definition allowing to specify the service principal secret. */
  137. interface WithServicePrincipalProfile {
  138. /**
  139. * Properties for service principal.
  140. *
  141. * @param secret the secret password associated with the service principal
  142. * @return the next stage
  143. */
  144. WithAgentPool withServicePrincipalSecret(String secret);
  145. }
  146. /** The stage of the Kubernetes cluster definition allowing to specify an agent pool profile. */
  147. interface WithAgentPool {
  148. /**
  149. * Begins the definition of an agent pool profile to be attached to the Kubernetes cluster.
  150. *
  151. * @param name the name for the agent pool profile
  152. * @return the stage representing configuration for the agent pool profile
  153. */
  154. KubernetesClusterAgentPool.DefinitionStages.Blank<KubernetesCluster.DefinitionStages.WithCreate>
  155. defineAgentPool(String name);
  156. }
  157. /** The stage of the Kubernetes cluster definition allowing to specify a network profile. */
  158. interface WithNetworkProfile {
  159. /**
  160. * Begins the definition of a network profile to be attached to the Kubernetes cluster.
  161. *
  162. * @return the stage representing configuration for the network profile
  163. */
  164. NetworkProfileDefinitionStages.Blank<KubernetesCluster.DefinitionStages.WithCreate> defineNetworkProfile();
  165. }
  166. /** The Kubernetes cluster definition allowing to specify a network profile. */
  167. interface NetworkProfileDefinitionStages {
  168. /**
  169. * The first stage of a network profile definition.
  170. *
  171. * @param <ParentT> the stage of the Kubernetes cluster network profile definition to return to after
  172. * attaching this definition
  173. */
  174. interface Blank<ParentT> extends WithAttach<ParentT> {
  175. /**
  176. * Specifies the network plugin type to be used for building the Kubernetes network.
  177. *
  178. * @param networkPlugin the network plugin type to be used for building the Kubernetes network
  179. * @return the next stage of the definition
  180. */
  181. WithAttach<ParentT> withNetworkPlugin(NetworkPlugin networkPlugin);
  182. }
  183. /**
  184. * The stage of a network profile definition allowing to specify the network policy.
  185. *
  186. * @param <ParentT> the stage of the network profile definition to return to after attaching this definition
  187. */
  188. interface WithNetworkPolicy<ParentT> {
  189. /**
  190. * Specifies the network policy to be used for building the Kubernetes network.
  191. *
  192. * @param networkPolicy the network policy to be used for building the Kubernetes network
  193. * @return the next stage of the definition
  194. */
  195. WithAttach<ParentT> withNetworkPolicy(NetworkPolicy networkPolicy);
  196. }
  197. /**
  198. * The stage of a network profile definition allowing to specify a CIDR notation IP range from which to
  199. * assign pod IPs when kubenet is used.
  200. *
  201. * @param <ParentT> the stage of the network profile definition to return to after attaching this definition
  202. */
  203. interface WithPodCidr<ParentT> {
  204. /**
  205. * Specifies a CIDR notation IP range from which to assign pod IPs when kubenet is used.
  206. *
  207. * @param podCidr the CIDR notation IP range from which to assign pod IPs when kubenet is used
  208. * @return the next stage of the definition
  209. */
  210. WithAttach<ParentT> withPodCidr(String podCidr);
  211. }
  212. /**
  213. * The stage of a network profile definition allowing to specify a CIDR notation IP range from which to
  214. * assign service cluster IPs.
  215. *
  216. * @param <ParentT> the stage of the network profile definition to return to after attaching this definition
  217. */
  218. interface WithServiceCidr<ParentT> {
  219. /**
  220. * Specifies a CIDR notation IP range from which to assign service cluster IPs; must not overlap with
  221. * any subnet IP ranges.
  222. *
  223. * @param serviceCidr the CIDR notation IP range from which to assign service cluster IPs; it must not
  224. * overlap with any Subnet IP ranges
  225. * @return the next stage of the definition
  226. */
  227. WithAttach<ParentT> withServiceCidr(String serviceCidr);
  228. }
  229. /**
  230. * The stage of a network profile definition allowing to specify an IP address assigned to the Kubernetes
  231. * DNS service.
  232. *
  233. * @param <ParentT> the stage of the network profile definition to return to after attaching this definition
  234. */
  235. interface WithDnsServiceIP<ParentT> {
  236. /**
  237. * Specifies an IP address assigned to the Kubernetes DNS service; it must be within the Kubernetes
  238. * service address range specified in the service CIDR.
  239. *
  240. * @param dnsServiceIP the IP address assigned to the Kubernetes DNS service; it must be within the
  241. * Kubernetes service address range specified in the service CIDR
  242. * @return the next stage of the definition
  243. */
  244. WithAttach<ParentT> withDnsServiceIP(String dnsServiceIP);
  245. }
  246. /**
  247. * The stage of a network profile definition allowing to specify a CIDR notation IP range assigned to the
  248. * Docker bridge network.
  249. *
  250. * @param <ParentT> the stage of the network profile definition to return to after attaching this definition
  251. */
  252. interface WithDockerBridgeCidr<ParentT> {
  253. /**
  254. * Specifies a CIDR notation IP range assigned to the Docker bridge network; it must not overlap with
  255. * any subnet IP ranges or the Kubernetes service address range.
  256. *
  257. * @param dockerBridgeCidr the CIDR notation IP range assigned to the Docker bridge network; it must not
  258. * overlap with any subnet IP ranges or the Kubernetes service address range
  259. * @return the next stage of the definition
  260. */
  261. WithAttach<ParentT> withDockerBridgeCidr(String dockerBridgeCidr);
  262. }
  263. /**
  264. * The final stage of a network profile definition. At this stage, any remaining optional settings can be
  265. * specified, or the container service agent pool can be attached to the parent container service
  266. * definition.
  267. *
  268. * @param <ParentT> the stage of the container service definition to return to after attaching this
  269. * definition
  270. */
  271. interface WithAttach<ParentT>
  272. extends NetworkProfileDefinitionStages.WithNetworkPolicy<ParentT>,
  273. NetworkProfileDefinitionStages.WithPodCidr<ParentT>,
  274. NetworkProfileDefinitionStages.WithServiceCidr<ParentT>,
  275. NetworkProfileDefinitionStages.WithDnsServiceIP<ParentT>,
  276. NetworkProfileDefinitionStages.WithDockerBridgeCidr<ParentT>,
  277. Attachable.InDefinition<ParentT> {
  278. }
  279. }
  280. /**
  281. * The Kubernetes cluster network profile definition. The entirety of a Kubernetes cluster network profile
  282. * definition as a part of a parent definition.
  283. *
  284. * @param <ParentT> the stage of the container service definition to return to after attaching this definition
  285. */
  286. interface NetworkProfileDefinition<ParentT>
  287. extends NetworkProfileDefinitionStages.Blank<ParentT>,
  288. NetworkProfileDefinitionStages.WithNetworkPolicy<ParentT>,
  289. NetworkProfileDefinitionStages.WithPodCidr<ParentT>,
  290. NetworkProfileDefinitionStages.WithServiceCidr<ParentT>,
  291. NetworkProfileDefinitionStages.WithDnsServiceIP<ParentT>,
  292. NetworkProfileDefinitionStages.WithDockerBridgeCidr<ParentT>,
  293. NetworkProfileDefinitionStages.WithAttach<ParentT> {
  294. }
  295. /** The stage of the Kubernetes cluster definition allowing to specify the DNS prefix label. */
  296. interface WithDnsPrefix {
  297. /**
  298. * Specifies the DNS prefix to be used to create the FQDN for the master pool.
  299. *
  300. * @param dnsPrefix the DNS prefix to be used to create the FQDN for the master pool
  301. * @return the next stage of the definition
  302. */
  303. KubernetesCluster.DefinitionStages.WithCreate withDnsPrefix(String dnsPrefix);
  304. }
  305. /** The stage of the Kubernetes cluster definition allowing to specify the cluster's add-on's profiles. */
  306. interface WithAddOnProfiles {
  307. /**
  308. * Updates the cluster's add-on's profiles.
  309. *
  310. * @param addOnProfileMap the cluster's add-on's profiles
  311. * @return the next stage of the update
  312. */
  313. KubernetesCluster.Update withAddOnProfiles(Map<String, ManagedClusterAddonProfile> addOnProfileMap);
  314. }
  315. /**
  316. * The stage of the definition which contains all the minimum required inputs for the resource to be created,
  317. * but also allows for any other optional settings to be specified.
  318. */
  319. interface WithCreate
  320. extends Creatable<KubernetesCluster>,
  321. WithNetworkProfile,
  322. WithDnsPrefix,
  323. WithAddOnProfiles,
  324. Resource.DefinitionWithTags<WithCreate> {
  325. }
  326. }
  327. /** The template for an update operation, containing all the settings that can be modified. */
  328. interface Update
  329. extends KubernetesCluster.UpdateStages.WithUpdateAgentPoolCount,
  330. KubernetesCluster.UpdateStages.WithAddOnProfiles,
  331. KubernetesCluster.UpdateStages.WithNetworkProfile,
  332. KubernetesCluster.UpdateStages.WithRBAC,
  333. Resource.UpdateWithTags<KubernetesCluster.Update>,
  334. Appliable<KubernetesCluster> {
  335. }
  336. /** Grouping of the Kubernetes cluster update stages. */
  337. interface UpdateStages {
  338. /**
  339. * The stage of the Kubernetes cluster update definition allowing to specify the number of agents in the
  340. * specified pool.
  341. */
  342. interface WithUpdateAgentPoolCount {
  343. /**
  344. * Updates the agent pool virtual machine count.
  345. *
  346. * @param agentPoolName the name of the agent pool to be updated
  347. * @param agentCount the number of agents (virtual machines) to host docker containers.
  348. * @return the next stage of the update
  349. */
  350. KubernetesCluster.Update withAgentPoolVirtualMachineCount(String agentPoolName, int agentCount);
  351. /**
  352. * Updates all the agent pools virtual machine count.
  353. *
  354. * @param agentCount the number of agents (virtual machines) to host docker containers.
  355. * @return the next stage of the update
  356. */
  357. KubernetesCluster.Update withAgentPoolVirtualMachineCount(int agentCount);
  358. }
  359. /**
  360. * The stage of the Kubernetes cluster update definition allowing to specify the cluster's add-on's profiles.
  361. */
  362. interface WithAddOnProfiles {
  363. /**
  364. * Updates the cluster's add-on's profiles.
  365. *
  366. * @param addOnProfileMap the cluster's add-on's profiles
  367. * @return the next stage of the update
  368. */
  369. KubernetesCluster.Update withAddOnProfiles(Map<String, ManagedClusterAddonProfile> addOnProfileMap);
  370. }
  371. /** The stage of the Kubernetes cluster update definition allowing to specify the cluster's network profile. */
  372. interface WithNetworkProfile {
  373. /**
  374. * Updates the cluster's network profile.
  375. *
  376. * @param networkProfile the cluster's networkProfile
  377. * @return the next stage of the update
  378. */
  379. KubernetesCluster.Update withNetworkProfile(ContainerServiceNetworkProfile networkProfile);
  380. }
  381. /**
  382. * The stage of the Kubernetes cluster update definition allowing to specify if Kubernetes Role-Based Access
  383. * Control is enabled or disabled.
  384. */
  385. interface WithRBAC {
  386. /**
  387. * Updates the cluster to specify the Kubernetes Role-Based Access Control is enabled.
  388. *
  389. * @return the next stage of the update
  390. */
  391. KubernetesCluster.Update withRBACEnabled();
  392. /**
  393. * Updates the cluster to specify the Kubernetes Role-Based Access Control is disabled.
  394. *
  395. * @return the next stage of the update
  396. */
  397. KubernetesCluster.Update withRBACDisabled();
  398. }
  399. }
  400. }