@aws-sdk/client-eks 3.194.0 → 3.196.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/EKSClient.js +11 -8
- package/dist-cjs/commands/AssociateEncryptionConfigCommand.js +10 -0
- package/dist-cjs/commands/AssociateIdentityProviderConfigCommand.js +10 -0
- package/dist-cjs/commands/CreateAddonCommand.js +10 -0
- package/dist-cjs/commands/CreateClusterCommand.js +10 -0
- package/dist-cjs/commands/CreateFargateProfileCommand.js +10 -0
- package/dist-cjs/commands/CreateNodegroupCommand.js +10 -0
- package/dist-cjs/commands/DeleteAddonCommand.js +10 -0
- package/dist-cjs/commands/DeleteClusterCommand.js +10 -0
- package/dist-cjs/commands/DeleteFargateProfileCommand.js +10 -0
- package/dist-cjs/commands/DeleteNodegroupCommand.js +10 -0
- package/dist-cjs/commands/DeregisterClusterCommand.js +10 -0
- package/dist-cjs/commands/DescribeAddonCommand.js +10 -0
- package/dist-cjs/commands/DescribeAddonVersionsCommand.js +10 -0
- package/dist-cjs/commands/DescribeClusterCommand.js +10 -0
- package/dist-cjs/commands/DescribeFargateProfileCommand.js +10 -0
- package/dist-cjs/commands/DescribeIdentityProviderConfigCommand.js +10 -0
- package/dist-cjs/commands/DescribeNodegroupCommand.js +10 -0
- package/dist-cjs/commands/DescribeUpdateCommand.js +10 -0
- package/dist-cjs/commands/DisassociateIdentityProviderConfigCommand.js +10 -0
- package/dist-cjs/commands/ListAddonsCommand.js +10 -0
- package/dist-cjs/commands/ListClustersCommand.js +10 -0
- package/dist-cjs/commands/ListFargateProfilesCommand.js +10 -0
- package/dist-cjs/commands/ListIdentityProviderConfigsCommand.js +10 -0
- package/dist-cjs/commands/ListNodegroupsCommand.js +10 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +10 -0
- package/dist-cjs/commands/ListUpdatesCommand.js +10 -0
- package/dist-cjs/commands/RegisterClusterCommand.js +10 -0
- package/dist-cjs/commands/TagResourceCommand.js +10 -0
- package/dist-cjs/commands/UntagResourceCommand.js +10 -0
- package/dist-cjs/commands/UpdateAddonCommand.js +10 -0
- package/dist-cjs/commands/UpdateClusterConfigCommand.js +10 -0
- package/dist-cjs/commands/UpdateClusterVersionCommand.js +10 -0
- package/dist-cjs/commands/UpdateNodegroupConfigCommand.js +10 -0
- package/dist-cjs/commands/UpdateNodegroupVersionCommand.js +10 -0
- package/dist-cjs/endpoint/EndpointParameters.js +13 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +368 -0
- package/dist-cjs/runtimeConfig.shared.js +3 -3
- package/dist-es/EKSClient.js +12 -9
- package/dist-es/commands/AssociateEncryptionConfigCommand.js +10 -0
- package/dist-es/commands/AssociateIdentityProviderConfigCommand.js +10 -0
- package/dist-es/commands/CreateAddonCommand.js +10 -0
- package/dist-es/commands/CreateClusterCommand.js +10 -0
- package/dist-es/commands/CreateFargateProfileCommand.js +10 -0
- package/dist-es/commands/CreateNodegroupCommand.js +10 -0
- package/dist-es/commands/DeleteAddonCommand.js +10 -0
- package/dist-es/commands/DeleteClusterCommand.js +10 -0
- package/dist-es/commands/DeleteFargateProfileCommand.js +10 -0
- package/dist-es/commands/DeleteNodegroupCommand.js +10 -0
- package/dist-es/commands/DeregisterClusterCommand.js +10 -0
- package/dist-es/commands/DescribeAddonCommand.js +10 -0
- package/dist-es/commands/DescribeAddonVersionsCommand.js +10 -0
- package/dist-es/commands/DescribeClusterCommand.js +10 -0
- package/dist-es/commands/DescribeFargateProfileCommand.js +10 -0
- package/dist-es/commands/DescribeIdentityProviderConfigCommand.js +10 -0
- package/dist-es/commands/DescribeNodegroupCommand.js +10 -0
- package/dist-es/commands/DescribeUpdateCommand.js +10 -0
- package/dist-es/commands/DisassociateIdentityProviderConfigCommand.js +10 -0
- package/dist-es/commands/ListAddonsCommand.js +10 -0
- package/dist-es/commands/ListClustersCommand.js +10 -0
- package/dist-es/commands/ListFargateProfilesCommand.js +10 -0
- package/dist-es/commands/ListIdentityProviderConfigsCommand.js +10 -0
- package/dist-es/commands/ListNodegroupsCommand.js +10 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +10 -0
- package/dist-es/commands/ListUpdatesCommand.js +10 -0
- package/dist-es/commands/RegisterClusterCommand.js +10 -0
- package/dist-es/commands/TagResourceCommand.js +10 -0
- package/dist-es/commands/UntagResourceCommand.js +10 -0
- package/dist-es/commands/UpdateAddonCommand.js +10 -0
- package/dist-es/commands/UpdateClusterConfigCommand.js +10 -0
- package/dist-es/commands/UpdateClusterVersionCommand.js +10 -0
- package/dist-es/commands/UpdateNodegroupConfigCommand.js +10 -0
- package/dist-es/commands/UpdateNodegroupVersionCommand.js +10 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +365 -0
- package/dist-es/runtimeConfig.shared.js +2 -2
- package/dist-types/EKSClient.d.ts +6 -9
- package/dist-types/commands/AssociateEncryptionConfigCommand.d.ts +2 -0
- package/dist-types/commands/AssociateIdentityProviderConfigCommand.d.ts +2 -0
- package/dist-types/commands/CreateAddonCommand.d.ts +2 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +2 -0
- package/dist-types/commands/CreateFargateProfileCommand.d.ts +2 -0
- package/dist-types/commands/CreateNodegroupCommand.d.ts +2 -0
- package/dist-types/commands/DeleteAddonCommand.d.ts +2 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +2 -0
- package/dist-types/commands/DeleteFargateProfileCommand.d.ts +2 -0
- package/dist-types/commands/DeleteNodegroupCommand.d.ts +2 -0
- package/dist-types/commands/DeregisterClusterCommand.d.ts +2 -0
- package/dist-types/commands/DescribeAddonCommand.d.ts +2 -0
- package/dist-types/commands/DescribeAddonVersionsCommand.d.ts +2 -0
- package/dist-types/commands/DescribeClusterCommand.d.ts +2 -0
- package/dist-types/commands/DescribeFargateProfileCommand.d.ts +2 -0
- package/dist-types/commands/DescribeIdentityProviderConfigCommand.d.ts +2 -0
- package/dist-types/commands/DescribeNodegroupCommand.d.ts +2 -0
- package/dist-types/commands/DescribeUpdateCommand.d.ts +2 -0
- package/dist-types/commands/DisassociateIdentityProviderConfigCommand.d.ts +2 -0
- package/dist-types/commands/ListAddonsCommand.d.ts +2 -0
- package/dist-types/commands/ListClustersCommand.d.ts +2 -0
- package/dist-types/commands/ListFargateProfilesCommand.d.ts +2 -0
- package/dist-types/commands/ListIdentityProviderConfigsCommand.d.ts +2 -0
- package/dist-types/commands/ListNodegroupsCommand.d.ts +2 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/commands/ListUpdatesCommand.d.ts +2 -0
- package/dist-types/commands/RegisterClusterCommand.d.ts +2 -0
- package/dist-types/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateAddonCommand.d.ts +2 -0
- package/dist-types/commands/UpdateClusterConfigCommand.d.ts +2 -0
- package/dist-types/commands/UpdateClusterVersionCommand.d.ts +2 -0
- package/dist-types/commands/UpdateNodegroupConfigCommand.d.ts +2 -0
- package/dist-types/commands/UpdateNodegroupVersionCommand.d.ts +2 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +4 -2
- package/dist-types/runtimeConfig.d.ts +4 -2
- package/dist-types/runtimeConfig.native.d.ts +4 -2
- package/dist-types/runtimeConfig.shared.d.ts +3 -1
- package/dist-types/ts3.4/EKSClient.d.ts +15 -8
- package/dist-types/ts3.4/commands/AssociateEncryptionConfigCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/AssociateIdentityProviderConfigCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateAddonCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateFargateProfileCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateNodegroupCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteAddonCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteFargateProfileCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteNodegroupCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeregisterClusterCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeAddonCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeAddonVersionsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeFargateProfileCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeIdentityProviderConfigCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeNodegroupCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeUpdateCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DisassociateIdentityProviderConfigCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListAddonsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListFargateProfilesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListIdentityProviderConfigsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListNodegroupsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListUpdatesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/RegisterClusterCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateAddonCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateClusterConfigCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateClusterVersionCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateNodegroupConfigCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateNodegroupVersionCommand.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +26 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +14 -4
- package/dist-types/ts3.4/runtimeConfig.d.ts +14 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +14 -3
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +6 -1
- package/package.json +5 -3
- package/dist-cjs/endpoints.js +0 -185
- package/dist-es/endpoints.js +0 -181
- package/dist-types/endpoints.d.ts +0 -2
- package/dist-types/ts3.4/endpoints.d.ts +0 -2
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
|
|
@@ -25,6 +26,7 @@ export interface DescribeIdentityProviderConfigCommandOutput extends DescribeIde
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class DescribeIdentityProviderConfigCommand extends $Command<DescribeIdentityProviderConfigCommandInput, DescribeIdentityProviderConfigCommandOutput, EKSClientResolvedConfig> {
|
|
27
28
|
readonly input: DescribeIdentityProviderConfigCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DescribeIdentityProviderConfigCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
|
|
@@ -25,6 +26,7 @@ export interface DescribeNodegroupCommandOutput extends DescribeNodegroupRespons
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class DescribeNodegroupCommand extends $Command<DescribeNodegroupCommandInput, DescribeNodegroupCommandOutput, EKSClientResolvedConfig> {
|
|
27
28
|
readonly input: DescribeNodegroupCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DescribeNodegroupCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
|
|
@@ -29,6 +30,7 @@ export interface DescribeUpdateCommandOutput extends DescribeUpdateResponse, __M
|
|
|
29
30
|
*/
|
|
30
31
|
export declare class DescribeUpdateCommand extends $Command<DescribeUpdateCommandInput, DescribeUpdateCommandOutput, EKSClientResolvedConfig> {
|
|
31
32
|
readonly input: DescribeUpdateCommandInput;
|
|
33
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
32
34
|
constructor(input: DescribeUpdateCommandInput);
|
|
33
35
|
/**
|
|
34
36
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
|
|
@@ -28,6 +29,7 @@ export interface DisassociateIdentityProviderConfigCommandOutput extends Disasso
|
|
|
28
29
|
*/
|
|
29
30
|
export declare class DisassociateIdentityProviderConfigCommand extends $Command<DisassociateIdentityProviderConfigCommandInput, DisassociateIdentityProviderConfigCommandOutput, EKSClientResolvedConfig> {
|
|
30
31
|
readonly input: DisassociateIdentityProviderConfigCommandInput;
|
|
32
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
33
|
constructor(input: DisassociateIdentityProviderConfigCommandInput);
|
|
32
34
|
/**
|
|
33
35
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
|
|
@@ -25,6 +26,7 @@ export interface ListAddonsCommandOutput extends ListAddonsResponse, __MetadataB
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class ListAddonsCommand extends $Command<ListAddonsCommandInput, ListAddonsCommandOutput, EKSClientResolvedConfig> {
|
|
27
28
|
readonly input: ListAddonsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListAddonsCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
|
|
@@ -26,6 +27,7 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad
|
|
|
26
27
|
*/
|
|
27
28
|
export declare class ListClustersCommand extends $Command<ListClustersCommandInput, ListClustersCommandOutput, EKSClientResolvedConfig> {
|
|
28
29
|
readonly input: ListClustersCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
31
|
constructor(input: ListClustersCommandInput);
|
|
30
32
|
/**
|
|
31
33
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
|
|
@@ -26,6 +27,7 @@ export interface ListFargateProfilesCommandOutput extends ListFargateProfilesRes
|
|
|
26
27
|
*/
|
|
27
28
|
export declare class ListFargateProfilesCommand extends $Command<ListFargateProfilesCommandInput, ListFargateProfilesCommandOutput, EKSClientResolvedConfig> {
|
|
28
29
|
readonly input: ListFargateProfilesCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
31
|
constructor(input: ListFargateProfilesCommandInput);
|
|
30
32
|
/**
|
|
31
33
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
|
|
@@ -25,6 +26,7 @@ export interface ListIdentityProviderConfigsCommandOutput extends ListIdentityPr
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class ListIdentityProviderConfigsCommand extends $Command<ListIdentityProviderConfigsCommandInput, ListIdentityProviderConfigsCommandOutput, EKSClientResolvedConfig> {
|
|
27
28
|
readonly input: ListIdentityProviderConfigsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListIdentityProviderConfigsCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
|
|
@@ -27,6 +28,7 @@ export interface ListNodegroupsCommandOutput extends ListNodegroupsResponse, __M
|
|
|
27
28
|
*/
|
|
28
29
|
export declare class ListNodegroupsCommand extends $Command<ListNodegroupsCommandInput, ListNodegroupsCommandOutput, EKSClientResolvedConfig> {
|
|
29
30
|
readonly input: ListNodegroupsCommandInput;
|
|
31
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
32
|
constructor(input: ListNodegroupsCommandInput);
|
|
31
33
|
/**
|
|
32
34
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
|
|
@@ -25,6 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, EKSClientResolvedConfig> {
|
|
27
28
|
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListTagsForResourceCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
|
|
@@ -26,6 +27,7 @@ export interface ListUpdatesCommandOutput extends ListUpdatesResponse, __Metadat
|
|
|
26
27
|
*/
|
|
27
28
|
export declare class ListUpdatesCommand extends $Command<ListUpdatesCommandInput, ListUpdatesCommandOutput, EKSClientResolvedConfig> {
|
|
28
29
|
readonly input: ListUpdatesCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
31
|
constructor(input: ListUpdatesCommandInput);
|
|
30
32
|
/**
|
|
31
33
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
|
|
@@ -38,6 +39,7 @@ export interface RegisterClusterCommandOutput extends RegisterClusterResponse, _
|
|
|
38
39
|
*/
|
|
39
40
|
export declare class RegisterClusterCommand extends $Command<RegisterClusterCommandInput, RegisterClusterCommandOutput, EKSClientResolvedConfig> {
|
|
40
41
|
readonly input: RegisterClusterCommandInput;
|
|
42
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
41
43
|
constructor(input: RegisterClusterCommandInput);
|
|
42
44
|
/**
|
|
43
45
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
|
|
@@ -30,6 +31,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
30
31
|
*/
|
|
31
32
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, EKSClientResolvedConfig> {
|
|
32
33
|
readonly input: TagResourceCommandInput;
|
|
34
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
33
35
|
constructor(input: TagResourceCommandInput);
|
|
34
36
|
/**
|
|
35
37
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
|
|
@@ -25,6 +26,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, EKSClientResolvedConfig> {
|
|
27
28
|
readonly input: UntagResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UntagResourceCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
|
|
@@ -25,6 +26,7 @@ export interface UpdateAddonCommandOutput extends UpdateAddonResponse, __Metadat
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class UpdateAddonCommand extends $Command<UpdateAddonCommandInput, UpdateAddonCommandOutput, EKSClientResolvedConfig> {
|
|
27
28
|
readonly input: UpdateAddonCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UpdateAddonCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
|
|
@@ -52,6 +53,7 @@ export interface UpdateClusterConfigCommandOutput extends UpdateClusterConfigRes
|
|
|
52
53
|
*/
|
|
53
54
|
export declare class UpdateClusterConfigCommand extends $Command<UpdateClusterConfigCommandInput, UpdateClusterConfigCommandOutput, EKSClientResolvedConfig> {
|
|
54
55
|
readonly input: UpdateClusterConfigCommandInput;
|
|
56
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
55
57
|
constructor(input: UpdateClusterConfigCommandInput);
|
|
56
58
|
/**
|
|
57
59
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
|
|
@@ -34,6 +35,7 @@ export interface UpdateClusterVersionCommandOutput extends UpdateClusterVersionR
|
|
|
34
35
|
*/
|
|
35
36
|
export declare class UpdateClusterVersionCommand extends $Command<UpdateClusterVersionCommandInput, UpdateClusterVersionCommandOutput, EKSClientResolvedConfig> {
|
|
36
37
|
readonly input: UpdateClusterVersionCommandInput;
|
|
38
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
37
39
|
constructor(input: UpdateClusterVersionCommandInput);
|
|
38
40
|
/**
|
|
39
41
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
|
|
@@ -28,6 +29,7 @@ export interface UpdateNodegroupConfigCommandOutput extends UpdateNodegroupConfi
|
|
|
28
29
|
*/
|
|
29
30
|
export declare class UpdateNodegroupConfigCommand extends $Command<UpdateNodegroupConfigCommandInput, UpdateNodegroupConfigCommandOutput, EKSClientResolvedConfig> {
|
|
30
31
|
readonly input: UpdateNodegroupConfigCommandInput;
|
|
32
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
33
|
constructor(input: UpdateNodegroupConfigCommandInput);
|
|
32
34
|
/**
|
|
33
35
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
|
|
@@ -43,6 +44,7 @@ export interface UpdateNodegroupVersionCommandOutput extends UpdateNodegroupVers
|
|
|
43
44
|
*/
|
|
44
45
|
export declare class UpdateNodegroupVersionCommand extends $Command<UpdateNodegroupVersionCommandInput, UpdateNodegroupVersionCommandOutput, EKSClientResolvedConfig> {
|
|
45
46
|
readonly input: UpdateNodegroupVersionCommandInput;
|
|
47
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
46
48
|
constructor(input: UpdateNodegroupVersionCommandInput);
|
|
47
49
|
/**
|
|
48
50
|
* @internal
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EndpointParameters as __EndpointParameters, Provider } from "@aws-sdk/types";
|
|
2
|
+
export interface ClientInputEndpointParameters {
|
|
3
|
+
region?: string | Provider<string>;
|
|
4
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
5
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
6
|
+
endpoint?: string | Provider<string>;
|
|
7
|
+
}
|
|
8
|
+
export declare type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
9
|
+
defaultSigningName: string;
|
|
10
|
+
};
|
|
11
|
+
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
12
|
+
defaultSigningName: string;
|
|
13
|
+
};
|
|
14
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
15
|
+
Region?: string;
|
|
16
|
+
UseDualStack?: boolean;
|
|
17
|
+
UseFIPS?: boolean;
|
|
18
|
+
Endpoint?: string;
|
|
19
|
+
}
|
|
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: EKSClientConfig) => {
|
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
31
33
|
tls?: boolean | undefined;
|
|
32
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
35
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: EKSClientConfig) => {
|
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
31
33
|
tls?: boolean | undefined;
|
|
32
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
35
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -23,10 +23,12 @@ export declare const getRuntimeConfig: (config: EKSClientConfig) => {
|
|
|
23
23
|
serviceId: string;
|
|
24
24
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
26
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
27
|
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
29
|
-
endpoint?: string | import("@aws-sdk/types").Endpoint
|
|
28
|
+
endpoint?: string | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Endpoint & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").EndpointV2 & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> & import("@aws-sdk/types").Provider<string>) | undefined;
|
|
29
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
30
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
31
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
30
32
|
tls?: boolean | undefined;
|
|
31
33
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
32
34
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -6,8 +6,10 @@ import { EKSClientConfig } from "./EKSClient";
|
|
|
6
6
|
export declare const getRuntimeConfig: (config: EKSClientConfig) => {
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
disableHostPrefix: boolean;
|
|
9
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
10
|
+
logger?: __Logger | undefined;
|
|
11
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
9
12
|
logger: __Logger;
|
|
10
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
11
13
|
serviceId: string;
|
|
12
14
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
13
15
|
};
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
|
-
EndpointsInputConfig,
|
|
3
|
-
EndpointsResolvedConfig,
|
|
4
2
|
RegionInputConfig,
|
|
5
3
|
RegionResolvedConfig,
|
|
6
4
|
} from "@aws-sdk/config-resolver";
|
|
5
|
+
import {
|
|
6
|
+
EndpointInputConfig,
|
|
7
|
+
EndpointResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-endpoint";
|
|
7
9
|
import {
|
|
8
10
|
HostHeaderInputConfig,
|
|
9
11
|
HostHeaderResolvedConfig,
|
|
@@ -37,7 +39,6 @@ import {
|
|
|
37
39
|
Logger as __Logger,
|
|
38
40
|
Provider as __Provider,
|
|
39
41
|
Provider,
|
|
40
|
-
RegionInfoProvider,
|
|
41
42
|
StreamCollector as __StreamCollector,
|
|
42
43
|
UrlParser as __UrlParser,
|
|
43
44
|
UserAgent as __UserAgent,
|
|
@@ -178,6 +179,11 @@ import {
|
|
|
178
179
|
UpdateNodegroupVersionCommandInput,
|
|
179
180
|
UpdateNodegroupVersionCommandOutput,
|
|
180
181
|
} from "./commands/UpdateNodegroupVersionCommand";
|
|
182
|
+
import {
|
|
183
|
+
ClientInputEndpointParameters,
|
|
184
|
+
ClientResolvedEndpointParameters,
|
|
185
|
+
EndpointParameters,
|
|
186
|
+
} from "./endpoint/EndpointParameters";
|
|
181
187
|
export declare type ServiceInputTypes =
|
|
182
188
|
| AssociateEncryptionConfigCommandInput
|
|
183
189
|
| AssociateIdentityProviderConfigCommandInput
|
|
@@ -269,7 +275,6 @@ export interface ClientDefaults
|
|
|
269
275
|
serviceId?: string;
|
|
270
276
|
region?: string | __Provider<string>;
|
|
271
277
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
272
|
-
regionInfoProvider?: RegionInfoProvider;
|
|
273
278
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
274
279
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
275
280
|
}
|
|
@@ -278,21 +283,23 @@ declare type EKSClientConfigType = Partial<
|
|
|
278
283
|
> &
|
|
279
284
|
ClientDefaults &
|
|
280
285
|
RegionInputConfig &
|
|
281
|
-
|
|
286
|
+
EndpointInputConfig<EndpointParameters> &
|
|
282
287
|
RetryInputConfig &
|
|
283
288
|
HostHeaderInputConfig &
|
|
284
289
|
AwsAuthInputConfig &
|
|
285
|
-
UserAgentInputConfig
|
|
290
|
+
UserAgentInputConfig &
|
|
291
|
+
ClientInputEndpointParameters;
|
|
286
292
|
export interface EKSClientConfig extends EKSClientConfigType {}
|
|
287
293
|
declare type EKSClientResolvedConfigType =
|
|
288
294
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
289
295
|
Required<ClientDefaults> &
|
|
290
296
|
RegionResolvedConfig &
|
|
291
|
-
|
|
297
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
292
298
|
RetryResolvedConfig &
|
|
293
299
|
HostHeaderResolvedConfig &
|
|
294
300
|
AwsAuthResolvedConfig &
|
|
295
|
-
UserAgentResolvedConfig
|
|
301
|
+
UserAgentResolvedConfig &
|
|
302
|
+
ClientResolvedEndpointParameters;
|
|
296
303
|
export interface EKSClientResolvedConfig extends EKSClientResolvedConfigType {}
|
|
297
304
|
export declare class EKSClient extends __Client<
|
|
298
305
|
__HttpHandlerOptions,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class AssociateEncryptionConfigCommand extends $Command<
|
|
|
25
26
|
EKSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: AssociateEncryptionConfigCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: AssociateEncryptionConfigCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class AssociateIdentityProviderConfigCommand extends $Command<
|
|
|
25
26
|
EKSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: AssociateIdentityProviderConfigCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: AssociateIdentityProviderConfigCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class CreateAddonCommand extends $Command<
|
|
|
21
22
|
EKSClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: CreateAddonCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: CreateAddonCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class CreateClusterCommand extends $Command<
|
|
|
24
25
|
EKSClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: CreateClusterCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: CreateClusterCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class CreateFargateProfileCommand extends $Command<
|
|
|
25
26
|
EKSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: CreateFargateProfileCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: CreateFargateProfileCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class CreateNodegroupCommand extends $Command<
|
|
|
24
25
|
EKSClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: CreateNodegroupCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: CreateNodegroupCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class DeleteAddonCommand extends $Command<
|
|
|
21
22
|
EKSClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: DeleteAddonCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: DeleteAddonCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class DeleteClusterCommand extends $Command<
|
|
|
24
25
|
EKSClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DeleteClusterCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DeleteClusterCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class DeleteFargateProfileCommand extends $Command<
|
|
|
25
26
|
EKSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DeleteFargateProfileCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DeleteFargateProfileCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class DeleteNodegroupCommand extends $Command<
|
|
|
24
25
|
EKSClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DeleteNodegroupCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DeleteNodegroupCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class DeregisterClusterCommand extends $Command<
|
|
|
25
26
|
EKSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DeregisterClusterCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DeregisterClusterCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class DescribeAddonCommand extends $Command<
|
|
|
24
25
|
EKSClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DescribeAddonCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DescribeAddonCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class DescribeAddonVersionsCommand extends $Command<
|
|
|
25
26
|
EKSClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DescribeAddonVersionsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DescribeAddonVersionsCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class DescribeClusterCommand extends $Command<
|
|
|
24
25
|
EKSClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DescribeClusterCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DescribeClusterCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|