@aws-sdk/client-elastic-load-balancing 3.1087.0 → 3.1088.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/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/ElasticLoadBalancing.d.ts +94 -156
- package/dist-types/ts3.4/ElasticLoadBalancingClient.d.ts +7 -23
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +6 -2
- package/dist-types/ts3.4/commands/ApplySecurityGroupsToLoadBalancerCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/AttachLoadBalancerToSubnetsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ConfigureHealthCheckCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateAppCookieStickinessPolicyCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateLBCookieStickinessPolicyCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateLoadBalancerCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateLoadBalancerListenersCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateLoadBalancerPolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteLoadBalancerCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteLoadBalancerListenersCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteLoadBalancerPolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeregisterInstancesFromLoadBalancerCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeAccountLimitsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeInstanceHealthCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeLoadBalancerAttributesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeLoadBalancerPoliciesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeLoadBalancerPolicyTypesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeLoadBalancersCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DetachLoadBalancerFromSubnetsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DisableAvailabilityZonesForLoadBalancerCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/EnableAvailabilityZonesForLoadBalancerCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ModifyLoadBalancerAttributesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/RegisterInstancesWithLoadBalancerCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/RemoveTagsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/SetLoadBalancerListenerSSLCertificateCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/SetLoadBalancerPoliciesForBackendServerCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/SetLoadBalancerPoliciesOfListenerCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/errors.d.ts +22 -75
- package/dist-types/ts3.4/models/models_0.d.ts +1 -3
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/dist-types/ts3.4/waiters/waitForAnyInstanceInService.d.ts +3 -5
- package/dist-types/ts3.4/waiters/waitForInstanceDeregistered.d.ts +4 -8
- package/dist-types/ts3.4/waiters/waitForInstanceInService.d.ts +3 -5
- package/package.json +38 -38
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DescribeTagsInput, DescribeTagsOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DescribeTagsCommandInput extends DescribeTagsInput {}
|
|
5
|
-
export interface DescribeTagsCommandOutput
|
|
6
|
-
extends DescribeTagsOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DescribeTagsCommandOutput extends DescribeTagsOutput, __MetadataBearer {}
|
|
8
6
|
declare const DescribeTagsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DescribeTagsCommandInput
|
|
8
|
+
input: DescribeTagsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DescribeTagsCommandInput,
|
|
13
11
|
DescribeTagsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DescribeTagsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DescribeTagsCommandInput
|
|
17
|
+
input: DescribeTagsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DescribeTagsCommandInput,
|
|
22
20
|
DescribeTagsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DetachLoadBalancerFromSubnetsOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DetachLoadBalancerFromSubnetsCommandInput
|
|
8
|
-
extends DetachLoadBalancerFromSubnetsInput {}
|
|
7
|
+
export interface DetachLoadBalancerFromSubnetsCommandInput extends DetachLoadBalancerFromSubnetsInput {}
|
|
9
8
|
export interface DetachLoadBalancerFromSubnetsCommandOutput
|
|
10
|
-
extends DetachLoadBalancerFromSubnetsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DetachLoadBalancerFromSubnetsOutput, __MetadataBearer {}
|
|
12
10
|
declare const DetachLoadBalancerFromSubnetsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DetachLoadBalancerFromSubnetsCommandInput
|
|
12
|
+
input: DetachLoadBalancerFromSubnetsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DetachLoadBalancerFromSubnetsCommandInput,
|
|
17
15
|
DetachLoadBalancerFromSubnetsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DetachLoadBalancerFromSubnetsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DetachLoadBalancerFromSubnetsCommandInput
|
|
21
|
+
input: DetachLoadBalancerFromSubnetsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DetachLoadBalancerFromSubnetsCommandInput,
|
|
26
24
|
DetachLoadBalancerFromSubnetsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
RemoveAvailabilityZonesInput,
|
|
4
|
-
RemoveAvailabilityZonesOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { RemoveAvailabilityZonesInput, RemoveAvailabilityZonesOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DisableAvailabilityZonesForLoadBalancerCommandInput
|
|
8
|
-
extends RemoveAvailabilityZonesInput {}
|
|
4
|
+
export interface DisableAvailabilityZonesForLoadBalancerCommandInput extends RemoveAvailabilityZonesInput {}
|
|
9
5
|
export interface DisableAvailabilityZonesForLoadBalancerCommandOutput
|
|
10
|
-
extends RemoveAvailabilityZonesOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends RemoveAvailabilityZonesOutput, __MetadataBearer {}
|
|
12
7
|
declare const DisableAvailabilityZonesForLoadBalancerCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DisableAvailabilityZonesForLoadBalancerCommandInput
|
|
9
|
+
input: DisableAvailabilityZonesForLoadBalancerCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DisableAvailabilityZonesForLoadBalancerCommandInput,
|
|
17
12
|
DisableAvailabilityZonesForLoadBalancerCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DisableAvailabilityZonesForLoadBalancerCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DisableAvailabilityZonesForLoadBalancerCommandInput
|
|
18
|
+
input: DisableAvailabilityZonesForLoadBalancerCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DisableAvailabilityZonesForLoadBalancerCommandInput,
|
|
26
21
|
DisableAvailabilityZonesForLoadBalancerCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
AddAvailabilityZonesInput,
|
|
4
|
-
AddAvailabilityZonesOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { AddAvailabilityZonesInput, AddAvailabilityZonesOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface EnableAvailabilityZonesForLoadBalancerCommandInput
|
|
8
|
-
extends AddAvailabilityZonesInput {}
|
|
4
|
+
export interface EnableAvailabilityZonesForLoadBalancerCommandInput extends AddAvailabilityZonesInput {}
|
|
9
5
|
export interface EnableAvailabilityZonesForLoadBalancerCommandOutput
|
|
10
|
-
extends AddAvailabilityZonesOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends AddAvailabilityZonesOutput, __MetadataBearer {}
|
|
12
7
|
declare const EnableAvailabilityZonesForLoadBalancerCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: EnableAvailabilityZonesForLoadBalancerCommandInput
|
|
9
|
+
input: EnableAvailabilityZonesForLoadBalancerCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
EnableAvailabilityZonesForLoadBalancerCommandInput,
|
|
17
12
|
EnableAvailabilityZonesForLoadBalancerCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const EnableAvailabilityZonesForLoadBalancerCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: EnableAvailabilityZonesForLoadBalancerCommandInput
|
|
18
|
+
input: EnableAvailabilityZonesForLoadBalancerCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
EnableAvailabilityZonesForLoadBalancerCommandInput,
|
|
26
21
|
EnableAvailabilityZonesForLoadBalancerCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ModifyLoadBalancerAttributesOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ModifyLoadBalancerAttributesCommandInput
|
|
8
|
-
extends ModifyLoadBalancerAttributesInput {}
|
|
7
|
+
export interface ModifyLoadBalancerAttributesCommandInput extends ModifyLoadBalancerAttributesInput {}
|
|
9
8
|
export interface ModifyLoadBalancerAttributesCommandOutput
|
|
10
|
-
extends ModifyLoadBalancerAttributesOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ModifyLoadBalancerAttributesOutput, __MetadataBearer {}
|
|
12
10
|
declare const ModifyLoadBalancerAttributesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ModifyLoadBalancerAttributesCommandInput
|
|
12
|
+
input: ModifyLoadBalancerAttributesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ModifyLoadBalancerAttributesCommandInput,
|
|
17
15
|
ModifyLoadBalancerAttributesCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ModifyLoadBalancerAttributesCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ModifyLoadBalancerAttributesCommandInput
|
|
21
|
+
input: ModifyLoadBalancerAttributesCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ModifyLoadBalancerAttributesCommandInput,
|
|
26
24
|
ModifyLoadBalancerAttributesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
RegisterEndPointsInput,
|
|
4
|
-
RegisterEndPointsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { RegisterEndPointsInput, RegisterEndPointsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface RegisterInstancesWithLoadBalancerCommandInput
|
|
8
|
-
extends RegisterEndPointsInput {}
|
|
4
|
+
export interface RegisterInstancesWithLoadBalancerCommandInput extends RegisterEndPointsInput {}
|
|
9
5
|
export interface RegisterInstancesWithLoadBalancerCommandOutput
|
|
10
|
-
extends RegisterEndPointsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends RegisterEndPointsOutput, __MetadataBearer {}
|
|
12
7
|
declare const RegisterInstancesWithLoadBalancerCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: RegisterInstancesWithLoadBalancerCommandInput
|
|
9
|
+
input: RegisterInstancesWithLoadBalancerCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
RegisterInstancesWithLoadBalancerCommandInput,
|
|
17
12
|
RegisterInstancesWithLoadBalancerCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const RegisterInstancesWithLoadBalancerCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: RegisterInstancesWithLoadBalancerCommandInput
|
|
18
|
+
input: RegisterInstancesWithLoadBalancerCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
RegisterInstancesWithLoadBalancerCommandInput,
|
|
26
21
|
RegisterInstancesWithLoadBalancerCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { RemoveTagsInput, RemoveTagsOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface RemoveTagsCommandInput extends RemoveTagsInput {}
|
|
5
|
-
export interface RemoveTagsCommandOutput
|
|
6
|
-
extends RemoveTagsOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface RemoveTagsCommandOutput extends RemoveTagsOutput, __MetadataBearer {}
|
|
8
6
|
declare const RemoveTagsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: RemoveTagsCommandInput
|
|
8
|
+
input: RemoveTagsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
RemoveTagsCommandInput,
|
|
13
11
|
RemoveTagsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const RemoveTagsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: RemoveTagsCommandInput
|
|
17
|
+
input: RemoveTagsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
RemoveTagsCommandInput,
|
|
22
20
|
RemoveTagsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
SetLoadBalancerListenerSSLCertificateOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface SetLoadBalancerListenerSSLCertificateCommandInput
|
|
8
|
-
extends SetLoadBalancerListenerSSLCertificateInput {}
|
|
7
|
+
export interface SetLoadBalancerListenerSSLCertificateCommandInput extends SetLoadBalancerListenerSSLCertificateInput {}
|
|
9
8
|
export interface SetLoadBalancerListenerSSLCertificateCommandOutput
|
|
10
|
-
extends SetLoadBalancerListenerSSLCertificateOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends SetLoadBalancerListenerSSLCertificateOutput, __MetadataBearer {}
|
|
12
10
|
declare const SetLoadBalancerListenerSSLCertificateCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: SetLoadBalancerListenerSSLCertificateCommandInput
|
|
12
|
+
input: SetLoadBalancerListenerSSLCertificateCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
SetLoadBalancerListenerSSLCertificateCommandInput,
|
|
17
15
|
SetLoadBalancerListenerSSLCertificateCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const SetLoadBalancerListenerSSLCertificateCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: SetLoadBalancerListenerSSLCertificateCommandInput
|
|
21
|
+
input: SetLoadBalancerListenerSSLCertificateCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
SetLoadBalancerListenerSSLCertificateCommandInput,
|
|
26
24
|
SetLoadBalancerListenerSSLCertificateCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
SetLoadBalancerPoliciesForBackendServerOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface SetLoadBalancerPoliciesForBackendServerCommandInput
|
|
8
|
-
extends SetLoadBalancerPoliciesForBackendServerInput {}
|
|
7
|
+
export interface SetLoadBalancerPoliciesForBackendServerCommandInput extends SetLoadBalancerPoliciesForBackendServerInput {}
|
|
9
8
|
export interface SetLoadBalancerPoliciesForBackendServerCommandOutput
|
|
10
|
-
extends SetLoadBalancerPoliciesForBackendServerOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends SetLoadBalancerPoliciesForBackendServerOutput, __MetadataBearer {}
|
|
12
10
|
declare const SetLoadBalancerPoliciesForBackendServerCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: SetLoadBalancerPoliciesForBackendServerCommandInput
|
|
12
|
+
input: SetLoadBalancerPoliciesForBackendServerCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
SetLoadBalancerPoliciesForBackendServerCommandInput,
|
|
17
15
|
SetLoadBalancerPoliciesForBackendServerCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const SetLoadBalancerPoliciesForBackendServerCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: SetLoadBalancerPoliciesForBackendServerCommandInput
|
|
21
|
+
input: SetLoadBalancerPoliciesForBackendServerCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
SetLoadBalancerPoliciesForBackendServerCommandInput,
|
|
26
24
|
SetLoadBalancerPoliciesForBackendServerCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
SetLoadBalancerPoliciesOfListenerOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface SetLoadBalancerPoliciesOfListenerCommandInput
|
|
8
|
-
extends SetLoadBalancerPoliciesOfListenerInput {}
|
|
7
|
+
export interface SetLoadBalancerPoliciesOfListenerCommandInput extends SetLoadBalancerPoliciesOfListenerInput {}
|
|
9
8
|
export interface SetLoadBalancerPoliciesOfListenerCommandOutput
|
|
10
|
-
extends SetLoadBalancerPoliciesOfListenerOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends SetLoadBalancerPoliciesOfListenerOutput, __MetadataBearer {}
|
|
12
10
|
declare const SetLoadBalancerPoliciesOfListenerCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: SetLoadBalancerPoliciesOfListenerCommandInput
|
|
12
|
+
input: SetLoadBalancerPoliciesOfListenerCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
SetLoadBalancerPoliciesOfListenerCommandInput,
|
|
17
15
|
SetLoadBalancerPoliciesOfListenerCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const SetLoadBalancerPoliciesOfListenerCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: SetLoadBalancerPoliciesOfListenerCommandInput
|
|
21
|
+
input: SetLoadBalancerPoliciesOfListenerCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
SetLoadBalancerPoliciesOfListenerCommandInput,
|
|
26
24
|
SetLoadBalancerPoliciesOfListenerCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface ElasticLoadBalancingExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -4,184 +4,131 @@ export declare class AccessPointNotFoundException extends __BaseException {
|
|
|
4
4
|
readonly name: "AccessPointNotFoundException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
6
|
Message?: string | undefined;
|
|
7
|
-
constructor(
|
|
8
|
-
opts: __ExceptionOptionType<AccessPointNotFoundException, __BaseException>
|
|
9
|
-
);
|
|
7
|
+
constructor(opts: __ExceptionOptionType<AccessPointNotFoundException, __BaseException>);
|
|
10
8
|
}
|
|
11
9
|
export declare class DuplicateTagKeysException extends __BaseException {
|
|
12
10
|
readonly name: "DuplicateTagKeysException";
|
|
13
11
|
readonly $fault: "client";
|
|
14
12
|
Message?: string | undefined;
|
|
15
|
-
constructor(
|
|
16
|
-
opts: __ExceptionOptionType<DuplicateTagKeysException, __BaseException>
|
|
17
|
-
);
|
|
13
|
+
constructor(opts: __ExceptionOptionType<DuplicateTagKeysException, __BaseException>);
|
|
18
14
|
}
|
|
19
15
|
export declare class TooManyTagsException extends __BaseException {
|
|
20
16
|
readonly name: "TooManyTagsException";
|
|
21
17
|
readonly $fault: "client";
|
|
22
18
|
Message?: string | undefined;
|
|
23
|
-
constructor(
|
|
24
|
-
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
25
|
-
);
|
|
19
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
26
20
|
}
|
|
27
21
|
export declare class InvalidConfigurationRequestException extends __BaseException {
|
|
28
22
|
readonly name: "InvalidConfigurationRequestException";
|
|
29
23
|
readonly $fault: "client";
|
|
30
24
|
Message?: string | undefined;
|
|
31
|
-
constructor(
|
|
32
|
-
opts: __ExceptionOptionType<
|
|
33
|
-
InvalidConfigurationRequestException,
|
|
34
|
-
__BaseException
|
|
35
|
-
>
|
|
36
|
-
);
|
|
25
|
+
constructor(opts: __ExceptionOptionType<InvalidConfigurationRequestException, __BaseException>);
|
|
37
26
|
}
|
|
38
27
|
export declare class InvalidSecurityGroupException extends __BaseException {
|
|
39
28
|
readonly name: "InvalidSecurityGroupException";
|
|
40
29
|
readonly $fault: "client";
|
|
41
30
|
Message?: string | undefined;
|
|
42
|
-
constructor(
|
|
43
|
-
opts: __ExceptionOptionType<InvalidSecurityGroupException, __BaseException>
|
|
44
|
-
);
|
|
31
|
+
constructor(opts: __ExceptionOptionType<InvalidSecurityGroupException, __BaseException>);
|
|
45
32
|
}
|
|
46
33
|
export declare class InvalidSubnetException extends __BaseException {
|
|
47
34
|
readonly name: "InvalidSubnetException";
|
|
48
35
|
readonly $fault: "client";
|
|
49
36
|
Message?: string | undefined;
|
|
50
|
-
constructor(
|
|
51
|
-
opts: __ExceptionOptionType<InvalidSubnetException, __BaseException>
|
|
52
|
-
);
|
|
37
|
+
constructor(opts: __ExceptionOptionType<InvalidSubnetException, __BaseException>);
|
|
53
38
|
}
|
|
54
39
|
export declare class SubnetNotFoundException extends __BaseException {
|
|
55
40
|
readonly name: "SubnetNotFoundException";
|
|
56
41
|
readonly $fault: "client";
|
|
57
42
|
Message?: string | undefined;
|
|
58
|
-
constructor(
|
|
59
|
-
opts: __ExceptionOptionType<SubnetNotFoundException, __BaseException>
|
|
60
|
-
);
|
|
43
|
+
constructor(opts: __ExceptionOptionType<SubnetNotFoundException, __BaseException>);
|
|
61
44
|
}
|
|
62
45
|
export declare class CertificateNotFoundException extends __BaseException {
|
|
63
46
|
readonly name: "CertificateNotFoundException";
|
|
64
47
|
readonly $fault: "client";
|
|
65
48
|
Message?: string | undefined;
|
|
66
|
-
constructor(
|
|
67
|
-
opts: __ExceptionOptionType<CertificateNotFoundException, __BaseException>
|
|
68
|
-
);
|
|
49
|
+
constructor(opts: __ExceptionOptionType<CertificateNotFoundException, __BaseException>);
|
|
69
50
|
}
|
|
70
51
|
export declare class DuplicatePolicyNameException extends __BaseException {
|
|
71
52
|
readonly name: "DuplicatePolicyNameException";
|
|
72
53
|
readonly $fault: "client";
|
|
73
54
|
Message?: string | undefined;
|
|
74
|
-
constructor(
|
|
75
|
-
opts: __ExceptionOptionType<DuplicatePolicyNameException, __BaseException>
|
|
76
|
-
);
|
|
55
|
+
constructor(opts: __ExceptionOptionType<DuplicatePolicyNameException, __BaseException>);
|
|
77
56
|
}
|
|
78
57
|
export declare class TooManyPoliciesException extends __BaseException {
|
|
79
58
|
readonly name: "TooManyPoliciesException";
|
|
80
59
|
readonly $fault: "client";
|
|
81
60
|
Message?: string | undefined;
|
|
82
|
-
constructor(
|
|
83
|
-
opts: __ExceptionOptionType<TooManyPoliciesException, __BaseException>
|
|
84
|
-
);
|
|
61
|
+
constructor(opts: __ExceptionOptionType<TooManyPoliciesException, __BaseException>);
|
|
85
62
|
}
|
|
86
63
|
export declare class DuplicateAccessPointNameException extends __BaseException {
|
|
87
64
|
readonly name: "DuplicateAccessPointNameException";
|
|
88
65
|
readonly $fault: "client";
|
|
89
66
|
Message?: string | undefined;
|
|
90
|
-
constructor(
|
|
91
|
-
opts: __ExceptionOptionType<
|
|
92
|
-
DuplicateAccessPointNameException,
|
|
93
|
-
__BaseException
|
|
94
|
-
>
|
|
95
|
-
);
|
|
67
|
+
constructor(opts: __ExceptionOptionType<DuplicateAccessPointNameException, __BaseException>);
|
|
96
68
|
}
|
|
97
69
|
export declare class InvalidSchemeException extends __BaseException {
|
|
98
70
|
readonly name: "InvalidSchemeException";
|
|
99
71
|
readonly $fault: "client";
|
|
100
72
|
Message?: string | undefined;
|
|
101
|
-
constructor(
|
|
102
|
-
opts: __ExceptionOptionType<InvalidSchemeException, __BaseException>
|
|
103
|
-
);
|
|
73
|
+
constructor(opts: __ExceptionOptionType<InvalidSchemeException, __BaseException>);
|
|
104
74
|
}
|
|
105
75
|
export declare class OperationNotPermittedException extends __BaseException {
|
|
106
76
|
readonly name: "OperationNotPermittedException";
|
|
107
77
|
readonly $fault: "client";
|
|
108
78
|
Message?: string | undefined;
|
|
109
|
-
constructor(
|
|
110
|
-
opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>
|
|
111
|
-
);
|
|
79
|
+
constructor(opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>);
|
|
112
80
|
}
|
|
113
81
|
export declare class TooManyAccessPointsException extends __BaseException {
|
|
114
82
|
readonly name: "TooManyAccessPointsException";
|
|
115
83
|
readonly $fault: "client";
|
|
116
84
|
Message?: string | undefined;
|
|
117
|
-
constructor(
|
|
118
|
-
opts: __ExceptionOptionType<TooManyAccessPointsException, __BaseException>
|
|
119
|
-
);
|
|
85
|
+
constructor(opts: __ExceptionOptionType<TooManyAccessPointsException, __BaseException>);
|
|
120
86
|
}
|
|
121
87
|
export declare class UnsupportedProtocolException extends __BaseException {
|
|
122
88
|
readonly name: "UnsupportedProtocolException";
|
|
123
89
|
readonly $fault: "client";
|
|
124
90
|
Message?: string | undefined;
|
|
125
|
-
constructor(
|
|
126
|
-
opts: __ExceptionOptionType<UnsupportedProtocolException, __BaseException>
|
|
127
|
-
);
|
|
91
|
+
constructor(opts: __ExceptionOptionType<UnsupportedProtocolException, __BaseException>);
|
|
128
92
|
}
|
|
129
93
|
export declare class DuplicateListenerException extends __BaseException {
|
|
130
94
|
readonly name: "DuplicateListenerException";
|
|
131
95
|
readonly $fault: "client";
|
|
132
96
|
Message?: string | undefined;
|
|
133
|
-
constructor(
|
|
134
|
-
opts: __ExceptionOptionType<DuplicateListenerException, __BaseException>
|
|
135
|
-
);
|
|
97
|
+
constructor(opts: __ExceptionOptionType<DuplicateListenerException, __BaseException>);
|
|
136
98
|
}
|
|
137
99
|
export declare class PolicyTypeNotFoundException extends __BaseException {
|
|
138
100
|
readonly name: "PolicyTypeNotFoundException";
|
|
139
101
|
readonly $fault: "client";
|
|
140
102
|
Message?: string | undefined;
|
|
141
|
-
constructor(
|
|
142
|
-
opts: __ExceptionOptionType<PolicyTypeNotFoundException, __BaseException>
|
|
143
|
-
);
|
|
103
|
+
constructor(opts: __ExceptionOptionType<PolicyTypeNotFoundException, __BaseException>);
|
|
144
104
|
}
|
|
145
105
|
export declare class DependencyThrottleException extends __BaseException {
|
|
146
106
|
readonly name: "DependencyThrottleException";
|
|
147
107
|
readonly $fault: "client";
|
|
148
108
|
Message?: string | undefined;
|
|
149
|
-
constructor(
|
|
150
|
-
opts: __ExceptionOptionType<DependencyThrottleException, __BaseException>
|
|
151
|
-
);
|
|
109
|
+
constructor(opts: __ExceptionOptionType<DependencyThrottleException, __BaseException>);
|
|
152
110
|
}
|
|
153
111
|
export declare class InvalidEndPointException extends __BaseException {
|
|
154
112
|
readonly name: "InvalidEndPointException";
|
|
155
113
|
readonly $fault: "client";
|
|
156
114
|
Message?: string | undefined;
|
|
157
|
-
constructor(
|
|
158
|
-
opts: __ExceptionOptionType<InvalidEndPointException, __BaseException>
|
|
159
|
-
);
|
|
115
|
+
constructor(opts: __ExceptionOptionType<InvalidEndPointException, __BaseException>);
|
|
160
116
|
}
|
|
161
117
|
export declare class LoadBalancerAttributeNotFoundException extends __BaseException {
|
|
162
118
|
readonly name: "LoadBalancerAttributeNotFoundException";
|
|
163
119
|
readonly $fault: "client";
|
|
164
120
|
Message?: string | undefined;
|
|
165
|
-
constructor(
|
|
166
|
-
opts: __ExceptionOptionType<
|
|
167
|
-
LoadBalancerAttributeNotFoundException,
|
|
168
|
-
__BaseException
|
|
169
|
-
>
|
|
170
|
-
);
|
|
121
|
+
constructor(opts: __ExceptionOptionType<LoadBalancerAttributeNotFoundException, __BaseException>);
|
|
171
122
|
}
|
|
172
123
|
export declare class PolicyNotFoundException extends __BaseException {
|
|
173
124
|
readonly name: "PolicyNotFoundException";
|
|
174
125
|
readonly $fault: "client";
|
|
175
126
|
Message?: string | undefined;
|
|
176
|
-
constructor(
|
|
177
|
-
opts: __ExceptionOptionType<PolicyNotFoundException, __BaseException>
|
|
178
|
-
);
|
|
127
|
+
constructor(opts: __ExceptionOptionType<PolicyNotFoundException, __BaseException>);
|
|
179
128
|
}
|
|
180
129
|
export declare class ListenerNotFoundException extends __BaseException {
|
|
181
130
|
readonly name: "ListenerNotFoundException";
|
|
182
131
|
readonly $fault: "client";
|
|
183
132
|
Message?: string | undefined;
|
|
184
|
-
constructor(
|
|
185
|
-
opts: __ExceptionOptionType<ListenerNotFoundException, __BaseException>
|
|
186
|
-
);
|
|
133
|
+
constructor(opts: __ExceptionOptionType<ListenerNotFoundException, __BaseException>);
|
|
187
134
|
}
|
|
@@ -252,9 +252,7 @@ export interface PolicyAttributeTypeDescription {
|
|
|
252
252
|
export interface PolicyTypeDescription {
|
|
253
253
|
PolicyTypeName?: string | undefined;
|
|
254
254
|
Description?: string | undefined;
|
|
255
|
-
PolicyAttributeTypeDescriptions?:
|
|
256
|
-
| PolicyAttributeTypeDescription[]
|
|
257
|
-
| undefined;
|
|
255
|
+
PolicyAttributeTypeDescriptions?: PolicyAttributeTypeDescription[] | undefined;
|
|
258
256
|
}
|
|
259
257
|
export interface DescribeLoadBalancerPolicyTypesOutput {
|
|
260
258
|
PolicyTypeDescriptions?: PolicyTypeDescription[] | undefined;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { ElasticLoadBalancingClient } from "../ElasticLoadBalancingClient";
|
|
3
|
-
export interface ElasticLoadBalancingPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface ElasticLoadBalancingPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: ElasticLoadBalancingClient;
|
|
6
5
|
}
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
2
|
import { ElasticLoadBalancingClientConfig } from "./ElasticLoadBalancingClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: ElasticLoadBalancingClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: ElasticLoadBalancingClientConfig) => {
|
|
6
4
|
runtime: string;
|
|
7
5
|
defaultsMode: import("@smithy/types").Provider<
|
|
8
6
|
import("@smithy/core/client").ResolvedDefaultsMode
|
|
@@ -10,24 +8,16 @@ export declare const getRuntimeConfig: (
|
|
|
10
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
9
|
credentialDefaultProvider:
|
|
12
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
-
| ((
|
|
14
|
-
_: unknown
|
|
15
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
16
12
|
defaultUserAgentProvider: (
|
|
17
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
18
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
19
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
21
|
-
requestHandler:
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
23
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
24
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
25
19
|
streamCollector: (
|
|
26
|
-
stream:
|
|
27
|
-
| import("stream").Readable
|
|
28
|
-
| import("stream/web").ReadableStream
|
|
29
|
-
| ReadableStream
|
|
30
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
31
21
|
) => Promise<Uint8Array>;
|
|
32
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
33
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -55,13 +45,8 @@ export declare const getRuntimeConfig: (
|
|
|
55
45
|
logger: import("@smithy/types").Logger;
|
|
56
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
57
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
58
|
-
userAgentAppId?:
|
|
59
|
-
|
|
60
|
-
| undefined
|
|
61
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
62
|
-
retryStrategy?:
|
|
63
|
-
| import("@smithy/types").RetryStrategy
|
|
64
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
65
50
|
endpoint?:
|
|
66
51
|
| ((
|
|
67
52
|
| string
|
|
@@ -83,7 +68,7 @@ export declare const getRuntimeConfig: (
|
|
|
83
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
84
69
|
context?: {
|
|
85
70
|
logger?: import("@smithy/types").Logger;
|
|
86
|
-
}
|
|
71
|
+
},
|
|
87
72
|
) => import("@smithy/types").EndpointV2;
|
|
88
73
|
tls?: boolean;
|
|
89
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -96,13 +81,13 @@ export declare const getRuntimeConfig: (
|
|
|
96
81
|
signer?:
|
|
97
82
|
| import("@smithy/types").RequestSigner
|
|
98
83
|
| ((
|
|
99
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
100
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
101
86
|
signingEscapePath?: boolean;
|
|
102
87
|
systemClockOffset?: number;
|
|
103
88
|
signingRegion?: string;
|
|
104
89
|
signerConstructor?: new (
|
|
105
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
106
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
107
92
|
) => import("@smithy/types").RequestSigner;
|
|
108
93
|
};
|