vendor: update all dependencies
This commit is contained in:
parent
3f0789e2db
commit
08021c4636
2474 changed files with 435818 additions and 282709 deletions
301
vendor/github.com/aws/aws-sdk-go/models/apis/eks/2017-11-01/api-2.json
generated
vendored
Normal file
301
vendor/github.com/aws/aws-sdk-go/models/apis/eks/2017-11-01/api-2.json
generated
vendored
Normal file
|
@ -0,0 +1,301 @@
|
|||
{
|
||||
"version":"2.0",
|
||||
"metadata":{
|
||||
"apiVersion":"2017-11-01",
|
||||
"endpointPrefix":"eks",
|
||||
"jsonVersion":"1.1",
|
||||
"protocol":"rest-json",
|
||||
"serviceAbbreviation":"Amazon EKS",
|
||||
"serviceFullName":"Amazon Elastic Container Service for Kubernetes",
|
||||
"serviceId":"EKS",
|
||||
"signatureVersion":"v4",
|
||||
"signingName":"eks",
|
||||
"uid":"eks-2017-11-01"
|
||||
},
|
||||
"operations":{
|
||||
"CreateCluster":{
|
||||
"name":"CreateCluster",
|
||||
"http":{
|
||||
"method":"POST",
|
||||
"requestUri":"/clusters"
|
||||
},
|
||||
"input":{"shape":"CreateClusterRequest"},
|
||||
"output":{"shape":"CreateClusterResponse"},
|
||||
"errors":[
|
||||
{"shape":"ResourceInUseException"},
|
||||
{"shape":"ResourceLimitExceededException"},
|
||||
{"shape":"InvalidParameterException"},
|
||||
{"shape":"ClientException"},
|
||||
{"shape":"ServerException"},
|
||||
{"shape":"ServiceUnavailableException"},
|
||||
{"shape":"UnsupportedAvailabilityZoneException"}
|
||||
]
|
||||
},
|
||||
"DeleteCluster":{
|
||||
"name":"DeleteCluster",
|
||||
"http":{
|
||||
"method":"DELETE",
|
||||
"requestUri":"/clusters/{name}"
|
||||
},
|
||||
"input":{"shape":"DeleteClusterRequest"},
|
||||
"output":{"shape":"DeleteClusterResponse"},
|
||||
"errors":[
|
||||
{"shape":"ResourceInUseException"},
|
||||
{"shape":"ResourceNotFoundException"},
|
||||
{"shape":"ClientException"},
|
||||
{"shape":"ServerException"},
|
||||
{"shape":"ServiceUnavailableException"}
|
||||
]
|
||||
},
|
||||
"DescribeCluster":{
|
||||
"name":"DescribeCluster",
|
||||
"http":{
|
||||
"method":"GET",
|
||||
"requestUri":"/clusters/{name}"
|
||||
},
|
||||
"input":{"shape":"DescribeClusterRequest"},
|
||||
"output":{"shape":"DescribeClusterResponse"},
|
||||
"errors":[
|
||||
{"shape":"ResourceNotFoundException"},
|
||||
{"shape":"ClientException"},
|
||||
{"shape":"ServerException"},
|
||||
{"shape":"ServiceUnavailableException"}
|
||||
]
|
||||
},
|
||||
"ListClusters":{
|
||||
"name":"ListClusters",
|
||||
"http":{
|
||||
"method":"GET",
|
||||
"requestUri":"/clusters"
|
||||
},
|
||||
"input":{"shape":"ListClustersRequest"},
|
||||
"output":{"shape":"ListClustersResponse"},
|
||||
"errors":[
|
||||
{"shape":"InvalidParameterException"},
|
||||
{"shape":"ClientException"},
|
||||
{"shape":"ServerException"},
|
||||
{"shape":"ServiceUnavailableException"}
|
||||
]
|
||||
}
|
||||
},
|
||||
"shapes":{
|
||||
"Certificate":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"data":{"shape":"String"}
|
||||
}
|
||||
},
|
||||
"ClientException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"clusterName":{"shape":"String"},
|
||||
"message":{"shape":"String"}
|
||||
},
|
||||
"error":{"httpStatusCode":400},
|
||||
"exception":true
|
||||
},
|
||||
"Cluster":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"name":{"shape":"String"},
|
||||
"arn":{"shape":"String"},
|
||||
"createdAt":{"shape":"Timestamp"},
|
||||
"version":{"shape":"String"},
|
||||
"endpoint":{"shape":"String"},
|
||||
"roleArn":{"shape":"String"},
|
||||
"resourcesVpcConfig":{"shape":"VpcConfigResponse"},
|
||||
"status":{"shape":"ClusterStatus"},
|
||||
"certificateAuthority":{"shape":"Certificate"},
|
||||
"clientRequestToken":{"shape":"String"}
|
||||
}
|
||||
},
|
||||
"ClusterName":{
|
||||
"type":"string",
|
||||
"max":255,
|
||||
"min":1,
|
||||
"pattern":"[A-Za-z0-9\\-_]*"
|
||||
},
|
||||
"ClusterStatus":{
|
||||
"type":"string",
|
||||
"enum":[
|
||||
"CREATING",
|
||||
"ACTIVE",
|
||||
"DELETING",
|
||||
"FAILED"
|
||||
]
|
||||
},
|
||||
"CreateClusterRequest":{
|
||||
"type":"structure",
|
||||
"required":[
|
||||
"name",
|
||||
"roleArn",
|
||||
"resourcesVpcConfig"
|
||||
],
|
||||
"members":{
|
||||
"name":{"shape":"ClusterName"},
|
||||
"version":{"shape":"String"},
|
||||
"roleArn":{"shape":"String"},
|
||||
"resourcesVpcConfig":{"shape":"VpcConfigRequest"},
|
||||
"clientRequestToken":{
|
||||
"shape":"String",
|
||||
"idempotencyToken":true
|
||||
}
|
||||
}
|
||||
},
|
||||
"CreateClusterResponse":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"cluster":{"shape":"Cluster"}
|
||||
}
|
||||
},
|
||||
"DeleteClusterRequest":{
|
||||
"type":"structure",
|
||||
"required":["name"],
|
||||
"members":{
|
||||
"name":{
|
||||
"shape":"String",
|
||||
"location":"uri",
|
||||
"locationName":"name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DeleteClusterResponse":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"cluster":{"shape":"Cluster"}
|
||||
}
|
||||
},
|
||||
"DescribeClusterRequest":{
|
||||
"type":"structure",
|
||||
"required":["name"],
|
||||
"members":{
|
||||
"name":{
|
||||
"shape":"String",
|
||||
"location":"uri",
|
||||
"locationName":"name"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DescribeClusterResponse":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"cluster":{"shape":"Cluster"}
|
||||
}
|
||||
},
|
||||
"InvalidParameterException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"clusterName":{"shape":"String"},
|
||||
"message":{"shape":"String"}
|
||||
},
|
||||
"error":{"httpStatusCode":400},
|
||||
"exception":true
|
||||
},
|
||||
"ListClustersRequest":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"maxResults":{
|
||||
"shape":"ListClustersRequestMaxResults",
|
||||
"location":"querystring",
|
||||
"locationName":"maxResults"
|
||||
},
|
||||
"nextToken":{
|
||||
"shape":"String",
|
||||
"location":"querystring",
|
||||
"locationName":"nextToken"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ListClustersRequestMaxResults":{
|
||||
"type":"integer",
|
||||
"box":true,
|
||||
"max":100,
|
||||
"min":1
|
||||
},
|
||||
"ListClustersResponse":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"clusters":{"shape":"StringList"},
|
||||
"nextToken":{"shape":"String"}
|
||||
}
|
||||
},
|
||||
"ResourceInUseException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"clusterName":{"shape":"String"},
|
||||
"message":{"shape":"String"}
|
||||
},
|
||||
"error":{"httpStatusCode":409},
|
||||
"exception":true
|
||||
},
|
||||
"ResourceLimitExceededException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"clusterName":{"shape":"String"},
|
||||
"message":{"shape":"String"}
|
||||
},
|
||||
"error":{"httpStatusCode":400},
|
||||
"exception":true
|
||||
},
|
||||
"ResourceNotFoundException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"clusterName":{"shape":"String"},
|
||||
"message":{"shape":"String"}
|
||||
},
|
||||
"error":{"httpStatusCode":404},
|
||||
"exception":true
|
||||
},
|
||||
"ServerException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"clusterName":{"shape":"String"},
|
||||
"message":{"shape":"String"}
|
||||
},
|
||||
"error":{"httpStatusCode":500},
|
||||
"exception":true,
|
||||
"fault":true
|
||||
},
|
||||
"ServiceUnavailableException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"message":{"shape":"String"}
|
||||
},
|
||||
"error":{"httpStatusCode":503},
|
||||
"exception":true,
|
||||
"fault":true
|
||||
},
|
||||
"String":{"type":"string"},
|
||||
"StringList":{
|
||||
"type":"list",
|
||||
"member":{"shape":"String"}
|
||||
},
|
||||
"Timestamp":{"type":"timestamp"},
|
||||
"UnsupportedAvailabilityZoneException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"message":{"shape":"String"},
|
||||
"clusterName":{"shape":"String"},
|
||||
"validZones":{"shape":"StringList"}
|
||||
},
|
||||
"error":{"httpStatusCode":400},
|
||||
"exception":true
|
||||
},
|
||||
"VpcConfigRequest":{
|
||||
"type":"structure",
|
||||
"required":["subnetIds"],
|
||||
"members":{
|
||||
"subnetIds":{"shape":"StringList"},
|
||||
"securityGroupIds":{"shape":"StringList"}
|
||||
}
|
||||
},
|
||||
"VpcConfigResponse":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"subnetIds":{"shape":"StringList"},
|
||||
"securityGroupIds":{"shape":"StringList"},
|
||||
"vpcId":{"shape":"String"}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
189
vendor/github.com/aws/aws-sdk-go/models/apis/eks/2017-11-01/docs-2.json
generated
vendored
Normal file
189
vendor/github.com/aws/aws-sdk-go/models/apis/eks/2017-11-01/docs-2.json
generated
vendored
Normal file
|
@ -0,0 +1,189 @@
|
|||
{
|
||||
"version": "2.0",
|
||||
"service": "<p>Amazon Elastic Container Service for Kubernetes (Amazon EKS) is a managed service that makes it easy for you to run Kubernetes on AWS without needing to stand up or maintain your own Kubernetes control plane. Kubernetes is an open-source system for automating the deployment, scaling, and management of containerized applications. </p> <p>Amazon EKS runs three Kubernetes control plane instances across three Availability Zones to ensure high availability. Amazon EKS automatically detects and replaces unhealthy control plane instances, and it provides automated version upgrades and patching for them.</p> <p>Amazon EKS is also integrated with many AWS services to provide scalability and security for your applications, including the following: </p> <ul> <li> <p>Elastic Load Balancing for load distribution</p> </li> <li> <p>IAM for authentication</p> </li> <li> <p>Amazon VPC for isolation</p> </li> </ul> <p>Amazon EKS runs up to date versions of the open-source Kubernetes software, so you can use all the existing plugins and tooling from the Kubernetes community. Applications running on Amazon EKS are fully compatible with applications running on any standard Kubernetes environment, whether running in on-premises data centers or public clouds. This means that you can easily migrate any standard Kubernetes application to Amazon EKS without any code modification required.</p>",
|
||||
"operations": {
|
||||
"CreateCluster": "<p>Creates an Amazon EKS control plane. </p> <p>The Amazon EKS control plane consists of control plane instances that run the Kubernetes software, like <code>etcd</code> and the API server. The control plane runs in an account managed by AWS, and the Kubernetes API is exposed via the Amazon EKS API server endpoint.</p> <p>Amazon EKS worker nodes run in your AWS account and connect to your cluster's control plane via the Kubernetes API server endpoint and a certificate file that is created for your cluster.</p> <p>The cluster control plane is provisioned across multiple Availability Zones and fronted by an Elastic Load Balancing Network Load Balancer. Amazon EKS also provisions elastic network interfaces in your VPC subnets to provide connectivity from the control plane instances to the worker nodes (for example, to support <code>kubectl exec</code>, <code>logs</code>, and <code>proxy</code> data flows).</p> <p>After you create an Amazon EKS cluster, you must configure your Kubernetes tooling to communicate with the API server and launch worker nodes into your cluster. For more information, see <a href=\"http://docs.aws.amazon.com/eks/latest/userguide/managing-auth.html\">Managing Cluster Authentication</a> and <a href=\"http://docs.aws.amazon.com/eks/latest/userguide/launch-workers.html\">Launching Amazon EKS Worker Nodes</a>in the <i>Amazon EKS User Guide</i>.</p>",
|
||||
"DeleteCluster": "<p>Deletes the Amazon EKS cluster control plane. </p> <note> <p>If you have active services in your cluster that are associated with a load balancer, you must delete those services before deleting the cluster so that the load balancers are deleted properly. Otherwise, you can have orphaned resources in your VPC that prevent you from being able to delete the VPC. For more information, see <a href=\"http://docs.aws.amazon.com/eks/latest/userguide/delete-cluster.html\">Deleting a Cluster</a> in the <i>Amazon EKS User Guide</i>.</p> </note>",
|
||||
"DescribeCluster": "<p>Returns descriptive information about an Amazon EKS cluster.</p> <p>The API server endpoint and certificate authority data returned by this operation are required for <code>kubelet</code> and <code>kubectl</code> to communicate with your Kubernetes API server. For more information, see <a href=\"http://docs.aws.amazon.com/eks/latest/userguide/create-kubeconfig.html\">Create a kubeconfig for Amazon EKS</a>.</p> <note> <p>The API server endpoint and certificate authority data are not available until the cluster reaches the <code>ACTIVE</code> state.</p> </note>",
|
||||
"ListClusters": "<p>Lists the Amazon EKS clusters in your AWS account in the specified region.</p>"
|
||||
},
|
||||
"shapes": {
|
||||
"Certificate": {
|
||||
"base": "<p>An object representing the <code>certificate-authority-data</code> for your cluster.</p>",
|
||||
"refs": {
|
||||
"Cluster$certificateAuthority": "<p>The <code>certificate-authority-data</code> for your cluster.</p>"
|
||||
}
|
||||
},
|
||||
"ClientException": {
|
||||
"base": "<p>These errors are usually caused by a client action, such as using an action or resource on behalf of a user that doesn't have permissions to use the action or resource, or specifying an identifier that is not valid.</p>",
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"Cluster": {
|
||||
"base": "<p>An object representing an Amazon EKS cluster.</p>",
|
||||
"refs": {
|
||||
"CreateClusterResponse$cluster": "<p>The full description of your new cluster.</p>",
|
||||
"DeleteClusterResponse$cluster": "<p>The full description of the cluster to delete.</p>",
|
||||
"DescribeClusterResponse$cluster": "<p>The full description of your specified cluster.</p>"
|
||||
}
|
||||
},
|
||||
"ClusterName": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"CreateClusterRequest$name": "<p>The unique name to give to your cluster.</p>"
|
||||
}
|
||||
},
|
||||
"ClusterStatus": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"Cluster$status": "<p>The current status of the cluster.</p>"
|
||||
}
|
||||
},
|
||||
"CreateClusterRequest": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"CreateClusterResponse": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"DeleteClusterRequest": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"DeleteClusterResponse": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"DescribeClusterRequest": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"DescribeClusterResponse": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"InvalidParameterException": {
|
||||
"base": "<p>The specified parameter is invalid. Review the available parameters for the API request.</p>",
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"ListClustersRequest": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"ListClustersRequestMaxResults": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"ListClustersRequest$maxResults": "<p>The maximum number of cluster results returned by <code>ListClusters</code> in paginated output. When this parameter is used, <code>ListClusters</code> only returns <code>maxResults</code> results in a single page along with a <code>nextToken</code> response element. The remaining results of the initial request can be seen by sending another <code>ListClusters</code> request with the returned <code>nextToken</code> value. This value can be between 1 and 100. If this parameter is not used, then <code>ListClusters</code> returns up to 100 results and a <code>nextToken</code> value if applicable.</p>"
|
||||
}
|
||||
},
|
||||
"ListClustersResponse": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"ResourceInUseException": {
|
||||
"base": "<p>The specified resource is in use.</p>",
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"ResourceLimitExceededException": {
|
||||
"base": "<p>You have encountered a service limit on the specified resource.</p>",
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"ResourceNotFoundException": {
|
||||
"base": "<p>The specified resource could not be found. You can view your available clusters with <a>ListClusters</a>. Amazon EKS clusters are region-specific.</p>",
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"ServerException": {
|
||||
"base": "<p>These errors are usually caused by a server-side issue.</p>",
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"ServiceUnavailableException": {
|
||||
"base": "<p>The service is unavailable, back off and retry the operation.</p>",
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"String": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"Certificate$data": "<p>The base64 encoded certificate data required to communicate with your cluster. Add this to the <code>certificate-authority-data</code> section of the <code>kubeconfig</code> file for your cluster.</p>",
|
||||
"ClientException$clusterName": "<p>The Amazon EKS cluster associated with the exception.</p>",
|
||||
"ClientException$message": null,
|
||||
"Cluster$name": "<p>The name of the cluster.</p>",
|
||||
"Cluster$arn": "<p>The Amazon Resource Name (ARN) of the cluster.</p>",
|
||||
"Cluster$version": "<p>The Kubernetes server version for the cluster.</p>",
|
||||
"Cluster$endpoint": "<p>The endpoint for your Kubernetes API server.</p>",
|
||||
"Cluster$roleArn": "<p>The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes control plane to make calls to AWS API operations on your behalf.</p>",
|
||||
"Cluster$clientRequestToken": "<p>Unique, case-sensitive identifier you provide to ensure the idempotency of the request.</p>",
|
||||
"CreateClusterRequest$version": "<p>The desired Kubernetes version for your cluster. If you do not specify a value here, the latest version available in Amazon EKS is used.</p>",
|
||||
"CreateClusterRequest$roleArn": "<p>The Amazon Resource Name (ARN) of the IAM role that provides permissions for Amazon EKS to make calls to other AWS API operations on your behalf. For more information, see <a href=\"http://docs.aws.amazon.com/eks/latest/userguide/service_IAM_role.html\">Amazon EKS Service IAM Role</a> in the <i> <i>Amazon EKS User Guide</i> </i> </p>",
|
||||
"CreateClusterRequest$clientRequestToken": "<p>Unique, case-sensitive identifier you provide to ensure the idempotency of the request.</p>",
|
||||
"DeleteClusterRequest$name": "<p>The name of the cluster to delete.</p>",
|
||||
"DescribeClusterRequest$name": "<p>The name of the cluster to describe.</p>",
|
||||
"InvalidParameterException$clusterName": "<p>The Amazon EKS cluster associated with the exception.</p>",
|
||||
"InvalidParameterException$message": null,
|
||||
"ListClustersRequest$nextToken": "<p>The <code>nextToken</code> value returned from a previous paginated <code>ListClusters</code> request where <code>maxResults</code> was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the <code>nextToken</code> value.</p> <note> <p>This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.</p> </note>",
|
||||
"ListClustersResponse$nextToken": "<p>The <code>nextToken</code> value to include in a future <code>ListClusters</code> request. When the results of a <code>ListClusters</code> request exceed <code>maxResults</code>, this value can be used to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>",
|
||||
"ResourceInUseException$clusterName": "<p>The Amazon EKS cluster associated with the exception.</p>",
|
||||
"ResourceInUseException$message": null,
|
||||
"ResourceLimitExceededException$clusterName": "<p>The Amazon EKS cluster associated with the exception.</p>",
|
||||
"ResourceLimitExceededException$message": null,
|
||||
"ResourceNotFoundException$clusterName": "<p>The Amazon EKS cluster associated with the exception.</p>",
|
||||
"ResourceNotFoundException$message": null,
|
||||
"ServerException$clusterName": "<p>The Amazon EKS cluster associated with the exception.</p>",
|
||||
"ServerException$message": null,
|
||||
"ServiceUnavailableException$message": null,
|
||||
"StringList$member": null,
|
||||
"UnsupportedAvailabilityZoneException$message": null,
|
||||
"UnsupportedAvailabilityZoneException$clusterName": "<p>The Amazon EKS cluster associated with the exception.</p>",
|
||||
"VpcConfigResponse$vpcId": "<p>The VPC associated with your cluster.</p>"
|
||||
}
|
||||
},
|
||||
"StringList": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"ListClustersResponse$clusters": "<p>A list of all of the clusters for your account in the specified region.</p>",
|
||||
"UnsupportedAvailabilityZoneException$validZones": "<p>The supported Availability Zones for your account. Choose subnets in these Availability Zones for your cluster.</p>",
|
||||
"VpcConfigRequest$subnetIds": "<p>Specify subnets for your Amazon EKS worker nodes. Amazon EKS creates cross-account elastic network interfaces in these subnets to allow communication between your worker nodes and the Kubernetes control plane.</p>",
|
||||
"VpcConfigRequest$securityGroupIds": "<p>Specify one or more security groups for the cross-account elastic network interfaces that Amazon EKS creates to use to allow communication between your worker nodes and the Kubernetes control plane.</p>",
|
||||
"VpcConfigResponse$subnetIds": "<p>The subnets associated with your cluster.</p>",
|
||||
"VpcConfigResponse$securityGroupIds": "<p>The security groups associated with the cross-account elastic network interfaces that are used to allow communication between your worker nodes and the Kubernetes control plane.</p>"
|
||||
}
|
||||
},
|
||||
"Timestamp": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"Cluster$createdAt": "<p>The Unix epoch time stamp in seconds for when the cluster was created.</p>"
|
||||
}
|
||||
},
|
||||
"UnsupportedAvailabilityZoneException": {
|
||||
"base": "<p>At least one of your specified cluster subnets is in an Availability Zone that does not support Amazon EKS. The exception output will specify the supported Availability Zones for your account, from which you can choose subnets for your cluster.</p>",
|
||||
"refs": {
|
||||
}
|
||||
},
|
||||
"VpcConfigRequest": {
|
||||
"base": "<p>An object representing an Amazon EKS cluster VPC configuration request.</p>",
|
||||
"refs": {
|
||||
"CreateClusterRequest$resourcesVpcConfig": "<p>The VPC subnets and security groups used by the cluster control plane. Amazon EKS VPC resources have specific requirements to work properly with Kubernetes. For more information, see <a href=\"http://docs.aws.amazon.com/eks/latest/userguide/network_reqs.html\">Cluster VPC Considerations</a> and <a href=\"http://docs.aws.amazon.com/eks/latest/userguide/sec-group-reqs.html\">Cluster Security Group Considerations</a> in the <i>Amazon EKS User Guide</i>.</p>"
|
||||
}
|
||||
},
|
||||
"VpcConfigResponse": {
|
||||
"base": "<p>An object representing an Amazon EKS cluster VPC configuration response.</p>",
|
||||
"refs": {
|
||||
"Cluster$resourcesVpcConfig": "<p>The VPC subnets and security groups used by the cluster control plane. Amazon EKS VPC resources have specific requirements to work properly with Kubernetes. For more information, see <a href=\"http://docs.aws.amazon.com/eks/latest/userguide/network_reqs.html\">Cluster VPC Considerations</a> and <a href=\"http://docs.aws.amazon.com/eks/latest/userguide/sec-group-reqs.html\">Cluster Security Group Considerations</a> in the <i>Amazon EKS User Guide</i>.</p>"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
114
vendor/github.com/aws/aws-sdk-go/models/apis/eks/2017-11-01/examples-1.json
generated
vendored
Normal file
114
vendor/github.com/aws/aws-sdk-go/models/apis/eks/2017-11-01/examples-1.json
generated
vendored
Normal file
|
@ -0,0 +1,114 @@
|
|||
{
|
||||
"version": "1.0",
|
||||
"examples": {
|
||||
"CreateCluster": [
|
||||
{
|
||||
"input": {
|
||||
"version": "1.10",
|
||||
"name": "prod",
|
||||
"clientRequestToken": "1d2129a1-3d38-460a-9756-e5b91fddb951",
|
||||
"resourcesVpcConfig": {
|
||||
"securityGroupIds": [
|
||||
"sg-6979fe18"
|
||||
],
|
||||
"subnetIds": [
|
||||
"subnet-6782e71e",
|
||||
"subnet-e7e761ac"
|
||||
]
|
||||
},
|
||||
"roleArn": "arn:aws:iam::012345678910:role/eks-service-role-AWSServiceRoleForAmazonEKS-J7ONKE3BQ4PI"
|
||||
},
|
||||
"output": {
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "The following example creates an Amazon EKS cluster called prod.",
|
||||
"id": "to-create-a-new-cluster-1527868185648",
|
||||
"title": "To create a new cluster"
|
||||
}
|
||||
],
|
||||
"DeleteCluster": [
|
||||
{
|
||||
"input": {
|
||||
"name": "devel"
|
||||
},
|
||||
"output": {
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example command deletes a cluster named `devel` in your default region.",
|
||||
"id": "to-delete-a-cluster-1527868641252",
|
||||
"title": "To delete a cluster"
|
||||
}
|
||||
],
|
||||
"DescribeCluster": [
|
||||
{
|
||||
"input": {
|
||||
"name": "devel"
|
||||
},
|
||||
"output": {
|
||||
"cluster": {
|
||||
"version": "1.10",
|
||||
"name": "devel",
|
||||
"arn": "arn:aws:eks:us-west-2:012345678910:cluster/devel",
|
||||
"certificateAuthority": {
|
||||
"data": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUN5RENDQWJDZ0F3SUJBZ0lCQURBTkJna3Foa2lHOXcwQkFRc0ZBREFWTVJNd0VRWURWUVFERXdwcmRXSmwKY201bGRHVnpNQjRYRFRFNE1EVXpNVEl6TVRFek1Wb1hEVEk0TURVeU9ESXpNVEV6TVZvd0ZURVRNQkVHQTFVRQpBeE1LYTNWaVpYSnVaWFJsY3pDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTTZWCjVUaG4rdFcySm9Xa2hQMzRlVUZMNitaRXJOZGIvWVdrTmtDdWNGS2RaaXl2TjlMVmdvUmV2MjlFVFZlN1ZGbSsKUTJ3ZURyRXJiQyt0dVlibkFuN1ZLYmE3ay9hb1BHekZMdmVnb0t6b0M1N2NUdGVwZzRIazRlK2tIWHNaME10MApyb3NzcjhFM1ROeExETnNJTThGL1cwdjhsTGNCbWRPcjQyV2VuTjFHZXJnaDNSZ2wzR3JIazBnNTU0SjFWenJZCm9hTi8zODFUczlOTFF2QTBXb0xIcjBFRlZpTFdSZEoyZ3lXaC9ybDVyOFNDOHZaQXg1YW1BU0hVd01aTFpWRC8KTDBpOW4wRVM0MkpVdzQyQmxHOEdpd3NhTkJWV3lUTHZKclNhRXlDSHFtVVZaUTFDZkFXUjl0L3JleVVOVXM3TApWV1FqM3BFbk9RMitMSWJrc0RzQ0F3RUFBYU1qTUNFd0RnWURWUjBQQVFIL0JBUURBZ0trTUE4R0ExVWRFd0VCCi93UUZNQU1CQWY4d0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFNZ3RsQ1dIQ2U2YzVHMXl2YlFTS0Q4K2hUalkKSm1NSG56L2EvRGt0WG9YUjFVQzIrZUgzT1BZWmVjRVZZZHVaSlZCckNNQ2VWR0ZkeWdBYlNLc1FxWDg0S2RXbAp1MU5QaERDSmEyRHliN2pVMUV6VThTQjFGZUZ5ZFE3a0hNS1E1blpBRVFQOTY4S01hSGUrSm0yQ2x1UFJWbEJVCjF4WlhTS1gzTVZ0K1Q0SU1EV2d6c3JRSjVuQkRjdEtLcUZtM3pKdVVubHo5ZEpVckdscEltMjVJWXJDckxYUFgKWkUwRUtRNWEzMHhkVWNrTHRGQkQrOEtBdFdqSS9yZUZPNzM1YnBMdVoyOTBaNm42QlF3elRrS0p4cnhVc3QvOAppNGsxcnlsaUdWMm5SSjBUYjNORkczNHgrYWdzYTRoSTFPbU90TFM0TmgvRXJxT3lIUXNDc2hEQUtKUT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo="
|
||||
},
|
||||
"createdAt": 1527807879.988,
|
||||
"endpoint": "https://A0DCCD80A04F01705DD065655C30CC3D.yl4.us-west-2.eks.amazonaws.com",
|
||||
"resourcesVpcConfig": {
|
||||
"securityGroupIds": [
|
||||
"sg-6979fe18"
|
||||
],
|
||||
"subnetIds": [
|
||||
"subnet-6782e71e",
|
||||
"subnet-e7e761ac"
|
||||
],
|
||||
"vpcId": "vpc-950809ec"
|
||||
},
|
||||
"roleArn": "arn:aws:iam::012345678910:role/eks-service-role-AWSServiceRoleForAmazonEKS-J7ONKE3BQ4PI",
|
||||
"status": "ACTIVE"
|
||||
}
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example command provides a description of the specified cluster in your default region.",
|
||||
"id": "to-describe-a-cluster-1527868708512",
|
||||
"title": "To describe a cluster"
|
||||
}
|
||||
],
|
||||
"ListClusters": [
|
||||
{
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
"clusters": [
|
||||
"devel",
|
||||
"prod"
|
||||
]
|
||||
},
|
||||
"comments": {
|
||||
"input": {
|
||||
},
|
||||
"output": {
|
||||
}
|
||||
},
|
||||
"description": "This example command lists all of your available clusters in your default region.",
|
||||
"id": "to-list-your-available-clusters-1527868801040",
|
||||
"title": "To list your available clusters"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
4
vendor/github.com/aws/aws-sdk-go/models/apis/eks/2017-11-01/paginators-1.json
generated
vendored
Normal file
4
vendor/github.com/aws/aws-sdk-go/models/apis/eks/2017-11-01/paginators-1.json
generated
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"pagination": {
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue