5.0.0 • Published 7 years ago
@datafire/amazonaws_eks v5.0.0
@datafire/amazonaws_eks
Client library for Amazon Elastic Container Service for Kubernetes
Installation and Usage
npm install --save @datafire/amazonaws_eks
let amazonaws_eks = require('@datafire/amazonaws_eks').create({
accessKeyId: "",
secretAccessKey: "",
region: ""
});
amazonaws_eks.ListClusters({}).then(data => {
console.log(data);
});
Description
Actions
ListClusters
amazonaws_eks.ListClusters({}, context)
Input
- input
object
Output
- output ListClustersResponse
CreateCluster
amazonaws_eks.CreateCluster({
"name": "",
"roleArn": "",
"resourcesVpcConfig": {
"subnetIds": []
}
}, context)
Input
- input
object
- clientRequestToken String
- name required ClusterName
- resourcesVpcConfig required VpcConfigRequest
- roleArn required String
- version String
Output
- output CreateClusterResponse
DeleteCluster
amazonaws_eks.DeleteCluster({
"name": ""
}, context)
Input
- input
object
- name required
string
- name required
Output
- output DeleteClusterResponse
DescribeCluster
amazonaws_eks.DescribeCluster({
"name": ""
}, context)
Input
- input
object
- name required
string
- name required
Output
- output DescribeClusterResponse
Definitions
Certificate
- Certificate
object
: An object representing the certificate-authority-data for your cluster.- data String
ClientException
- ClientException
object
: 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.
Cluster
- Cluster
object
: An object representing an Amazon EKS cluster.- arn String
- certificateAuthority Certificate
- clientRequestToken String
- createdAt Timestamp
- endpoint String
- name String
- resourcesVpcConfig VpcConfigResponse
- roleArn String
- status ClusterStatus
- version String
ClusterName
- ClusterName
string
ClusterStatus
- ClusterStatus
string
(values: CREATING, ACTIVE, DELETING, FAILED)
CreateClusterRequest
- CreateClusterRequest
object
- clientRequestToken String
- name required ClusterName
- resourcesVpcConfig required VpcConfigRequest
- roleArn required String
- version String
CreateClusterResponse
- CreateClusterResponse
object
- cluster Cluster
DeleteClusterRequest
- DeleteClusterRequest
object
DeleteClusterResponse
- DeleteClusterResponse
object
- cluster Cluster
DescribeClusterRequest
- DescribeClusterRequest
object
DescribeClusterResponse
- DescribeClusterResponse
object
- cluster Cluster
InvalidParameterException
- InvalidParameterException
object
: The specified parameter is invalid. Review the available parameters for the API request.
ListClustersRequest
- ListClustersRequest
object
ListClustersRequestMaxResults
- ListClustersRequestMaxResults
integer
ListClustersResponse
- ListClustersResponse
object
- clusters StringList
- nextToken String
ResourceInUseException
ResourceLimitExceededException
- ResourceLimitExceededException
object
: You have encountered a service limit on the specified resource.
ResourceNotFoundException
- ResourceNotFoundException
object
: The specified resource could not be found. You can view your available clusters with ListClusters. Amazon EKS clusters are region-specific.
ServerException
- ServerException
object
: These errors are usually caused by a server-side issue.
ServiceUnavailableException
- ServiceUnavailableException
object
: The service is unavailable, back off and retry the operation.- message String
String
- String
string
StringList
- StringList
array
- items String
Timestamp
- Timestamp
string
UnsupportedAvailabilityZoneException
- UnsupportedAvailabilityZoneException
object
: 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.- clusterName String
- message String
- validZones StringList
VpcConfigRequest
- VpcConfigRequest
object
: An object representing an Amazon EKS cluster VPC configuration request.- securityGroupIds StringList
- subnetIds required StringList
VpcConfigResponse
- VpcConfigResponse
object
: An object representing an Amazon EKS cluster VPC configuration response.- securityGroupIds StringList
- subnetIds StringList
- vpcId String
5.0.0
7 years ago