@aws-sdk/client-rtbfabric 3.1045.0 → 3.1046.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/README.md +63 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +4 -4
- package/dist-cjs/endpoint/bdd.js +2 -2
- package/dist-cjs/endpoint/endpointResolver.js +4 -4
- package/dist-cjs/index.js +539 -177
- package/dist-cjs/models/RTBFabricServiceException.js +3 -3
- package/dist-cjs/runtimeConfig.browser.js +12 -14
- package/dist-cjs/runtimeConfig.js +18 -22
- package/dist-cjs/runtimeConfig.shared.js +9 -10
- package/dist-cjs/schemas/schemas_0.js +200 -10
- package/dist-es/RTBFabric.js +31 -1
- package/dist-es/RTBFabricClient.js +5 -5
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/dist-es/commands/AcceptLinkCommand.js +2 -2
- package/dist-es/commands/AssociateCertificateCommand.js +16 -0
- package/dist-es/commands/CreateInboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/CreateLinkCommand.js +2 -2
- package/dist-es/commands/CreateLinkRoutingRuleCommand.js +16 -0
- package/dist-es/commands/CreateOutboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/CreateRequesterGatewayCommand.js +2 -2
- package/dist-es/commands/CreateResponderGatewayCommand.js +2 -2
- package/dist-es/commands/DeleteInboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/DeleteLinkCommand.js +2 -2
- package/dist-es/commands/DeleteLinkRoutingRuleCommand.js +16 -0
- package/dist-es/commands/DeleteOutboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/DeleteRequesterGatewayCommand.js +2 -2
- package/dist-es/commands/DeleteResponderGatewayCommand.js +2 -2
- package/dist-es/commands/DisassociateCertificateCommand.js +16 -0
- package/dist-es/commands/GetCertificateAssociationCommand.js +16 -0
- package/dist-es/commands/GetInboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/GetLinkCommand.js +2 -2
- package/dist-es/commands/GetLinkRoutingRuleCommand.js +16 -0
- package/dist-es/commands/GetOutboundExternalLinkCommand.js +2 -2
- package/dist-es/commands/GetRequesterGatewayCommand.js +2 -2
- package/dist-es/commands/GetResponderGatewayCommand.js +2 -2
- package/dist-es/commands/ListCertificateAssociationsCommand.js +16 -0
- package/dist-es/commands/ListLinkRoutingRulesCommand.js +16 -0
- package/dist-es/commands/ListLinksCommand.js +2 -2
- package/dist-es/commands/ListRequesterGatewaysCommand.js +2 -2
- package/dist-es/commands/ListResponderGatewaysCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/RejectLinkCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateLinkCommand.js +2 -2
- package/dist-es/commands/UpdateLinkModuleFlowCommand.js +2 -2
- package/dist-es/commands/UpdateLinkRoutingRuleCommand.js +16 -0
- package/dist-es/commands/UpdateRequesterGatewayCommand.js +2 -2
- package/dist-es/commands/UpdateResponderGatewayCommand.js +2 -2
- package/dist-es/commands/index.js +9 -0
- package/dist-es/endpoint/bdd.js +1 -1
- package/dist-es/endpoint/endpointResolver.js +1 -1
- package/dist-es/models/RTBFabricServiceException.js +1 -1
- package/dist-es/models/enums.js +15 -0
- package/dist-es/pagination/ListCertificateAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListLinkRoutingRulesPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/runtimeConfig.browser.js +4 -6
- package/dist-es/runtimeConfig.js +4 -8
- package/dist-es/runtimeConfig.shared.js +3 -4
- package/dist-es/runtimeExtensions.js +2 -2
- package/dist-es/schemas/schemas_0.js +197 -7
- package/dist-es/waiters/index.js +4 -0
- package/dist-es/waiters/waitForCertificateAssociated.js +61 -0
- package/dist-es/waiters/waitForCertificateDisassociated.js +52 -0
- package/dist-es/waiters/waitForInboundExternalLinkActive.js +1 -1
- package/dist-es/waiters/waitForInboundExternalLinkDeleted.js +1 -1
- package/dist-es/waiters/waitForLinkAccepted.js +1 -1
- package/dist-es/waiters/waitForLinkActive.js +1 -1
- package/dist-es/waiters/waitForLinkDeleted.js +1 -1
- package/dist-es/waiters/waitForLinkRoutingRuleActive.js +49 -0
- package/dist-es/waiters/waitForLinkRoutingRuleDeleted.js +43 -0
- package/dist-es/waiters/waitForOutboundExternalLinkActive.js +1 -1
- package/dist-es/waiters/waitForOutboundExternalLinkDeleted.js +1 -1
- package/dist-es/waiters/waitForRequesterGatewayActive.js +1 -1
- package/dist-es/waiters/waitForRequesterGatewayDeleted.js +1 -1
- package/dist-es/waiters/waitForResponderGatewayActive.js +1 -1
- package/dist-es/waiters/waitForResponderGatewayDeleted.js +1 -1
- package/dist-types/RTBFabric.d.ts +102 -1
- package/dist-types/RTBFabricClient.d.ts +16 -7
- package/dist-types/commands/AcceptLinkCommand.d.ts +6 -4
- package/dist-types/commands/AssociateCertificateCommand.d.ts +120 -0
- package/dist-types/commands/CreateInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/commands/CreateLinkCommand.d.ts +6 -4
- package/dist-types/commands/CreateLinkRoutingRuleCommand.d.ts +140 -0
- package/dist-types/commands/CreateOutboundExternalLinkCommand.d.ts +9 -4
- package/dist-types/commands/CreateRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/commands/CreateResponderGatewayCommand.d.ts +6 -4
- package/dist-types/commands/DeleteInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/commands/DeleteLinkCommand.d.ts +6 -4
- package/dist-types/commands/DeleteLinkRoutingRuleCommand.d.ts +115 -0
- package/dist-types/commands/DeleteOutboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/commands/DeleteRequesterGatewayCommand.d.ts +9 -4
- package/dist-types/commands/DeleteResponderGatewayCommand.d.ts +9 -4
- package/dist-types/commands/DisassociateCertificateCommand.d.ts +118 -0
- package/dist-types/commands/GetCertificateAssociationCommand.d.ts +116 -0
- package/dist-types/commands/GetInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/commands/GetLinkCommand.d.ts +6 -4
- package/dist-types/commands/GetLinkRoutingRuleCommand.d.ts +140 -0
- package/dist-types/commands/GetOutboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/commands/GetRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/commands/GetResponderGatewayCommand.d.ts +6 -4
- package/dist-types/commands/ListCertificateAssociationsCommand.d.ts +125 -0
- package/dist-types/commands/ListLinkRoutingRulesCommand.d.ts +143 -0
- package/dist-types/commands/ListLinksCommand.d.ts +6 -4
- package/dist-types/commands/ListRequesterGatewaysCommand.d.ts +6 -4
- package/dist-types/commands/ListResponderGatewaysCommand.d.ts +6 -4
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -4
- package/dist-types/commands/RejectLinkCommand.d.ts +6 -4
- package/dist-types/commands/TagResourceCommand.d.ts +6 -4
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -4
- package/dist-types/commands/UpdateLinkCommand.d.ts +6 -4
- package/dist-types/commands/UpdateLinkModuleFlowCommand.d.ts +6 -4
- package/dist-types/commands/UpdateLinkRoutingRuleCommand.d.ts +134 -0
- package/dist-types/commands/UpdateRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/commands/UpdateResponderGatewayCommand.d.ts +6 -4
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/endpoint/bdd.d.ts +1 -1
- package/dist-types/extensionConfiguration.d.ts +1 -1
- package/dist-types/models/RTBFabricServiceException.d.ts +1 -1
- package/dist-types/models/enums.d.ts +31 -0
- package/dist-types/models/errors.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +522 -1
- package/dist-types/pagination/ListCertificateAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListLinkRoutingRulesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/schemas/schemas_0.d.ts +31 -0
- package/dist-types/ts3.4/RTBFabric.d.ts +210 -1
- package/dist-types/ts3.4/RTBFabricClient.d.ts +62 -14
- package/dist-types/ts3.4/commands/AcceptLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/AssociateCertificateCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/CreateLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/CreateLinkRoutingRuleCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateOutboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/CreateRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/CreateResponderGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DeleteInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DeleteLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DeleteLinkRoutingRuleCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteOutboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DeleteRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DeleteResponderGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DisassociateCertificateCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetCertificateAssociationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetInboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/GetLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/GetLinkRoutingRuleCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetOutboundExternalLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/GetRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/GetResponderGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/ListCertificateAssociationsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListLinkRoutingRulesCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListLinksCommand.d.ts +6 -8
- package/dist-types/ts3.4/commands/ListRequesterGatewaysCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/ListResponderGatewaysCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/RejectLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/UpdateLinkCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/UpdateLinkModuleFlowCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/UpdateLinkRoutingRuleCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/UpdateRequesterGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/UpdateResponderGatewayCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/models/RTBFabricServiceException.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +18 -0
- package/dist-types/ts3.4/models/errors.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +127 -0
- package/dist-types/ts3.4/pagination/ListCertificateAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListLinkRoutingRulesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -3
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +31 -0
- package/dist-types/ts3.4/waiters/index.d.ts +4 -0
- package/dist-types/ts3.4/waiters/waitForCertificateAssociated.d.ts +19 -0
- package/dist-types/ts3.4/waiters/waitForCertificateDisassociated.d.ts +24 -0
- package/dist-types/ts3.4/waiters/waitForInboundExternalLinkActive.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForInboundExternalLinkDeleted.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForLinkAccepted.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForLinkActive.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForLinkDeleted.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForLinkRoutingRuleActive.d.ts +17 -0
- package/dist-types/ts3.4/waiters/waitForLinkRoutingRuleDeleted.d.ts +20 -0
- package/dist-types/ts3.4/waiters/waitForOutboundExternalLinkActive.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForOutboundExternalLinkDeleted.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForRequesterGatewayActive.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForRequesterGatewayDeleted.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForResponderGatewayActive.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForResponderGatewayDeleted.d.ts +1 -1
- package/dist-types/waiters/index.d.ts +4 -0
- package/dist-types/waiters/waitForCertificateAssociated.d.ts +15 -0
- package/dist-types/waiters/waitForCertificateDisassociated.d.ts +16 -0
- package/dist-types/waiters/waitForInboundExternalLinkActive.d.ts +1 -1
- package/dist-types/waiters/waitForInboundExternalLinkDeleted.d.ts +1 -1
- package/dist-types/waiters/waitForLinkAccepted.d.ts +1 -1
- package/dist-types/waiters/waitForLinkActive.d.ts +1 -1
- package/dist-types/waiters/waitForLinkDeleted.d.ts +1 -1
- package/dist-types/waiters/waitForLinkRoutingRuleActive.d.ts +15 -0
- package/dist-types/waiters/waitForLinkRoutingRuleDeleted.d.ts +16 -0
- package/dist-types/waiters/waitForOutboundExternalLinkActive.d.ts +1 -1
- package/dist-types/waiters/waitForOutboundExternalLinkDeleted.d.ts +1 -1
- package/dist-types/waiters/waitForRequesterGatewayActive.d.ts +1 -1
- package/dist-types/waiters/waitForRequesterGatewayDeleted.d.ts +1 -1
- package/dist-types/waiters/waitForResponderGatewayActive.d.ts +1 -1
- package/dist-types/waiters/waitForResponderGatewayDeleted.d.ts +1 -1
- package/package.json +13 -35
package/dist-cjs/index.js
CHANGED
|
@@ -4,19 +4,17 @@ var middlewareHostHeader = require('@aws-sdk/middleware-host-header');
|
|
|
4
4
|
var middlewareLogger = require('@aws-sdk/middleware-logger');
|
|
5
5
|
var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detection');
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
|
-
var configResolver = require('@smithy/config-resolver');
|
|
8
7
|
var core = require('@smithy/core');
|
|
8
|
+
var client = require('@smithy/core/client');
|
|
9
|
+
var config = require('@smithy/core/config');
|
|
10
|
+
var endpoints = require('@smithy/core/endpoints');
|
|
11
|
+
var protocols = require('@smithy/core/protocols');
|
|
12
|
+
var retry = require('@smithy/core/retry');
|
|
9
13
|
var schema = require('@smithy/core/schema');
|
|
10
|
-
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
11
|
-
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
12
|
-
var middlewareRetry = require('@smithy/middleware-retry');
|
|
13
|
-
var smithyClient = require('@smithy/smithy-client');
|
|
14
14
|
var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
|
-
var protocolHttp = require('@smithy/protocol-http');
|
|
18
17
|
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
-
var utilWaiter = require('@smithy/util-waiter');
|
|
20
18
|
var errors = require('./models/errors');
|
|
21
19
|
var RTBFabricServiceException = require('./models/RTBFabricServiceException');
|
|
22
20
|
|
|
@@ -74,12 +72,12 @@ const resolveHttpAuthRuntimeConfig = (config) => {
|
|
|
74
72
|
};
|
|
75
73
|
|
|
76
74
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
77
|
-
const extensionConfiguration = Object.assign(regionConfigResolver.getAwsRegionExtensionConfiguration(runtimeConfig),
|
|
75
|
+
const extensionConfiguration = Object.assign(regionConfigResolver.getAwsRegionExtensionConfiguration(runtimeConfig), client.getDefaultExtensionConfiguration(runtimeConfig), protocols.getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
78
76
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
79
|
-
return Object.assign(runtimeConfig, regionConfigResolver.resolveAwsRegionExtensionConfiguration(extensionConfiguration),
|
|
77
|
+
return Object.assign(runtimeConfig, regionConfigResolver.resolveAwsRegionExtensionConfiguration(extensionConfiguration), client.resolveDefaultRuntimeConfig(extensionConfiguration), protocols.resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
80
78
|
};
|
|
81
79
|
|
|
82
|
-
class RTBFabricClient extends
|
|
80
|
+
class RTBFabricClient extends client.Client {
|
|
83
81
|
config;
|
|
84
82
|
constructor(...[configuration]) {
|
|
85
83
|
const _config_0 = runtimeConfig.getRuntimeConfig(configuration || {});
|
|
@@ -87,17 +85,17 @@ class RTBFabricClient extends smithyClient.Client {
|
|
|
87
85
|
this.initConfig = _config_0;
|
|
88
86
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
89
87
|
const _config_2 = middlewareUserAgent.resolveUserAgentConfig(_config_1);
|
|
90
|
-
const _config_3 =
|
|
91
|
-
const _config_4 =
|
|
88
|
+
const _config_3 = retry.resolveRetryConfig(_config_2);
|
|
89
|
+
const _config_4 = config.resolveRegionConfig(_config_3);
|
|
92
90
|
const _config_5 = middlewareHostHeader.resolveHostHeaderConfig(_config_4);
|
|
93
|
-
const _config_6 =
|
|
91
|
+
const _config_6 = endpoints.resolveEndpointConfig(_config_5);
|
|
94
92
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
95
93
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
96
94
|
this.config = _config_8;
|
|
97
95
|
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
98
96
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
99
|
-
this.middlewareStack.use(
|
|
100
|
-
this.middlewareStack.use(
|
|
97
|
+
this.middlewareStack.use(retry.getRetryPlugin(this.config));
|
|
98
|
+
this.middlewareStack.use(protocols.getContentLengthPlugin(this.config));
|
|
101
99
|
this.middlewareStack.use(middlewareHostHeader.getHostHeaderPlugin(this.config));
|
|
102
100
|
this.middlewareStack.use(middlewareLogger.getLoggerPlugin(this.config));
|
|
103
101
|
this.middlewareStack.use(middlewareRecursionDetection.getRecursionDetectionPlugin(this.config));
|
|
@@ -114,11 +112,11 @@ class RTBFabricClient extends smithyClient.Client {
|
|
|
114
112
|
}
|
|
115
113
|
}
|
|
116
114
|
|
|
117
|
-
class AcceptLinkCommand extends
|
|
115
|
+
class AcceptLinkCommand extends client.Command
|
|
118
116
|
.classBuilder()
|
|
119
117
|
.ep(commonParams)
|
|
120
118
|
.m(function (Command, cs, config, o) {
|
|
121
|
-
return [
|
|
119
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
122
120
|
})
|
|
123
121
|
.s("RTBFabric", "AcceptLink", {})
|
|
124
122
|
.n("RTBFabricClient", "AcceptLinkCommand")
|
|
@@ -126,11 +124,23 @@ class AcceptLinkCommand extends smithyClient.Command
|
|
|
126
124
|
.build() {
|
|
127
125
|
}
|
|
128
126
|
|
|
129
|
-
class
|
|
127
|
+
class AssociateCertificateCommand extends client.Command
|
|
130
128
|
.classBuilder()
|
|
131
129
|
.ep(commonParams)
|
|
132
130
|
.m(function (Command, cs, config, o) {
|
|
133
|
-
return [
|
|
131
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
132
|
+
})
|
|
133
|
+
.s("RTBFabric", "AssociateCertificate", {})
|
|
134
|
+
.n("RTBFabricClient", "AssociateCertificateCommand")
|
|
135
|
+
.sc(schemas_0.AssociateCertificate$)
|
|
136
|
+
.build() {
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class CreateInboundExternalLinkCommand extends client.Command
|
|
140
|
+
.classBuilder()
|
|
141
|
+
.ep(commonParams)
|
|
142
|
+
.m(function (Command, cs, config, o) {
|
|
143
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
134
144
|
})
|
|
135
145
|
.s("RTBFabric", "CreateInboundExternalLink", {})
|
|
136
146
|
.n("RTBFabricClient", "CreateInboundExternalLinkCommand")
|
|
@@ -138,11 +148,11 @@ class CreateInboundExternalLinkCommand extends smithyClient.Command
|
|
|
138
148
|
.build() {
|
|
139
149
|
}
|
|
140
150
|
|
|
141
|
-
class CreateLinkCommand extends
|
|
151
|
+
class CreateLinkCommand extends client.Command
|
|
142
152
|
.classBuilder()
|
|
143
153
|
.ep(commonParams)
|
|
144
154
|
.m(function (Command, cs, config, o) {
|
|
145
|
-
return [
|
|
155
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
146
156
|
})
|
|
147
157
|
.s("RTBFabric", "CreateLink", {})
|
|
148
158
|
.n("RTBFabricClient", "CreateLinkCommand")
|
|
@@ -150,11 +160,23 @@ class CreateLinkCommand extends smithyClient.Command
|
|
|
150
160
|
.build() {
|
|
151
161
|
}
|
|
152
162
|
|
|
153
|
-
class
|
|
163
|
+
class CreateLinkRoutingRuleCommand extends client.Command
|
|
164
|
+
.classBuilder()
|
|
165
|
+
.ep(commonParams)
|
|
166
|
+
.m(function (Command, cs, config, o) {
|
|
167
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
168
|
+
})
|
|
169
|
+
.s("RTBFabric", "CreateLinkRoutingRule", {})
|
|
170
|
+
.n("RTBFabricClient", "CreateLinkRoutingRuleCommand")
|
|
171
|
+
.sc(schemas_0.CreateLinkRoutingRule$)
|
|
172
|
+
.build() {
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
class CreateOutboundExternalLinkCommand extends client.Command
|
|
154
176
|
.classBuilder()
|
|
155
177
|
.ep(commonParams)
|
|
156
178
|
.m(function (Command, cs, config, o) {
|
|
157
|
-
return [
|
|
179
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
158
180
|
})
|
|
159
181
|
.s("RTBFabric", "CreateOutboundExternalLink", {})
|
|
160
182
|
.n("RTBFabricClient", "CreateOutboundExternalLinkCommand")
|
|
@@ -162,11 +184,11 @@ class CreateOutboundExternalLinkCommand extends smithyClient.Command
|
|
|
162
184
|
.build() {
|
|
163
185
|
}
|
|
164
186
|
|
|
165
|
-
class CreateRequesterGatewayCommand extends
|
|
187
|
+
class CreateRequesterGatewayCommand extends client.Command
|
|
166
188
|
.classBuilder()
|
|
167
189
|
.ep(commonParams)
|
|
168
190
|
.m(function (Command, cs, config, o) {
|
|
169
|
-
return [
|
|
191
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
170
192
|
})
|
|
171
193
|
.s("RTBFabric", "CreateRequesterGateway", {})
|
|
172
194
|
.n("RTBFabricClient", "CreateRequesterGatewayCommand")
|
|
@@ -174,11 +196,11 @@ class CreateRequesterGatewayCommand extends smithyClient.Command
|
|
|
174
196
|
.build() {
|
|
175
197
|
}
|
|
176
198
|
|
|
177
|
-
class CreateResponderGatewayCommand extends
|
|
199
|
+
class CreateResponderGatewayCommand extends client.Command
|
|
178
200
|
.classBuilder()
|
|
179
201
|
.ep(commonParams)
|
|
180
202
|
.m(function (Command, cs, config, o) {
|
|
181
|
-
return [
|
|
203
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
182
204
|
})
|
|
183
205
|
.s("RTBFabric", "CreateResponderGateway", {})
|
|
184
206
|
.n("RTBFabricClient", "CreateResponderGatewayCommand")
|
|
@@ -186,11 +208,11 @@ class CreateResponderGatewayCommand extends smithyClient.Command
|
|
|
186
208
|
.build() {
|
|
187
209
|
}
|
|
188
210
|
|
|
189
|
-
class DeleteInboundExternalLinkCommand extends
|
|
211
|
+
class DeleteInboundExternalLinkCommand extends client.Command
|
|
190
212
|
.classBuilder()
|
|
191
213
|
.ep(commonParams)
|
|
192
214
|
.m(function (Command, cs, config, o) {
|
|
193
|
-
return [
|
|
215
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
194
216
|
})
|
|
195
217
|
.s("RTBFabric", "DeleteInboundExternalLink", {})
|
|
196
218
|
.n("RTBFabricClient", "DeleteInboundExternalLinkCommand")
|
|
@@ -198,11 +220,11 @@ class DeleteInboundExternalLinkCommand extends smithyClient.Command
|
|
|
198
220
|
.build() {
|
|
199
221
|
}
|
|
200
222
|
|
|
201
|
-
class DeleteLinkCommand extends
|
|
223
|
+
class DeleteLinkCommand extends client.Command
|
|
202
224
|
.classBuilder()
|
|
203
225
|
.ep(commonParams)
|
|
204
226
|
.m(function (Command, cs, config, o) {
|
|
205
|
-
return [
|
|
227
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
206
228
|
})
|
|
207
229
|
.s("RTBFabric", "DeleteLink", {})
|
|
208
230
|
.n("RTBFabricClient", "DeleteLinkCommand")
|
|
@@ -210,11 +232,23 @@ class DeleteLinkCommand extends smithyClient.Command
|
|
|
210
232
|
.build() {
|
|
211
233
|
}
|
|
212
234
|
|
|
213
|
-
class
|
|
235
|
+
class DeleteLinkRoutingRuleCommand extends client.Command
|
|
214
236
|
.classBuilder()
|
|
215
237
|
.ep(commonParams)
|
|
216
238
|
.m(function (Command, cs, config, o) {
|
|
217
|
-
return [
|
|
239
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
240
|
+
})
|
|
241
|
+
.s("RTBFabric", "DeleteLinkRoutingRule", {})
|
|
242
|
+
.n("RTBFabricClient", "DeleteLinkRoutingRuleCommand")
|
|
243
|
+
.sc(schemas_0.DeleteLinkRoutingRule$)
|
|
244
|
+
.build() {
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
class DeleteOutboundExternalLinkCommand extends client.Command
|
|
248
|
+
.classBuilder()
|
|
249
|
+
.ep(commonParams)
|
|
250
|
+
.m(function (Command, cs, config, o) {
|
|
251
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
218
252
|
})
|
|
219
253
|
.s("RTBFabric", "DeleteOutboundExternalLink", {})
|
|
220
254
|
.n("RTBFabricClient", "DeleteOutboundExternalLinkCommand")
|
|
@@ -222,11 +256,11 @@ class DeleteOutboundExternalLinkCommand extends smithyClient.Command
|
|
|
222
256
|
.build() {
|
|
223
257
|
}
|
|
224
258
|
|
|
225
|
-
class DeleteRequesterGatewayCommand extends
|
|
259
|
+
class DeleteRequesterGatewayCommand extends client.Command
|
|
226
260
|
.classBuilder()
|
|
227
261
|
.ep(commonParams)
|
|
228
262
|
.m(function (Command, cs, config, o) {
|
|
229
|
-
return [
|
|
263
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
230
264
|
})
|
|
231
265
|
.s("RTBFabric", "DeleteRequesterGateway", {})
|
|
232
266
|
.n("RTBFabricClient", "DeleteRequesterGatewayCommand")
|
|
@@ -234,11 +268,11 @@ class DeleteRequesterGatewayCommand extends smithyClient.Command
|
|
|
234
268
|
.build() {
|
|
235
269
|
}
|
|
236
270
|
|
|
237
|
-
class DeleteResponderGatewayCommand extends
|
|
271
|
+
class DeleteResponderGatewayCommand extends client.Command
|
|
238
272
|
.classBuilder()
|
|
239
273
|
.ep(commonParams)
|
|
240
274
|
.m(function (Command, cs, config, o) {
|
|
241
|
-
return [
|
|
275
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
242
276
|
})
|
|
243
277
|
.s("RTBFabric", "DeleteResponderGateway", {})
|
|
244
278
|
.n("RTBFabricClient", "DeleteResponderGatewayCommand")
|
|
@@ -246,11 +280,35 @@ class DeleteResponderGatewayCommand extends smithyClient.Command
|
|
|
246
280
|
.build() {
|
|
247
281
|
}
|
|
248
282
|
|
|
249
|
-
class
|
|
283
|
+
class DisassociateCertificateCommand extends client.Command
|
|
250
284
|
.classBuilder()
|
|
251
285
|
.ep(commonParams)
|
|
252
286
|
.m(function (Command, cs, config, o) {
|
|
253
|
-
return [
|
|
287
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
288
|
+
})
|
|
289
|
+
.s("RTBFabric", "DisassociateCertificate", {})
|
|
290
|
+
.n("RTBFabricClient", "DisassociateCertificateCommand")
|
|
291
|
+
.sc(schemas_0.DisassociateCertificate$)
|
|
292
|
+
.build() {
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
class GetCertificateAssociationCommand extends client.Command
|
|
296
|
+
.classBuilder()
|
|
297
|
+
.ep(commonParams)
|
|
298
|
+
.m(function (Command, cs, config, o) {
|
|
299
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
300
|
+
})
|
|
301
|
+
.s("RTBFabric", "GetCertificateAssociation", {})
|
|
302
|
+
.n("RTBFabricClient", "GetCertificateAssociationCommand")
|
|
303
|
+
.sc(schemas_0.GetCertificateAssociation$)
|
|
304
|
+
.build() {
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
class GetInboundExternalLinkCommand extends client.Command
|
|
308
|
+
.classBuilder()
|
|
309
|
+
.ep(commonParams)
|
|
310
|
+
.m(function (Command, cs, config, o) {
|
|
311
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
254
312
|
})
|
|
255
313
|
.s("RTBFabric", "GetInboundExternalLink", {})
|
|
256
314
|
.n("RTBFabricClient", "GetInboundExternalLinkCommand")
|
|
@@ -258,11 +316,11 @@ class GetInboundExternalLinkCommand extends smithyClient.Command
|
|
|
258
316
|
.build() {
|
|
259
317
|
}
|
|
260
318
|
|
|
261
|
-
class GetLinkCommand extends
|
|
319
|
+
class GetLinkCommand extends client.Command
|
|
262
320
|
.classBuilder()
|
|
263
321
|
.ep(commonParams)
|
|
264
322
|
.m(function (Command, cs, config, o) {
|
|
265
|
-
return [
|
|
323
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
266
324
|
})
|
|
267
325
|
.s("RTBFabric", "GetLink", {})
|
|
268
326
|
.n("RTBFabricClient", "GetLinkCommand")
|
|
@@ -270,11 +328,23 @@ class GetLinkCommand extends smithyClient.Command
|
|
|
270
328
|
.build() {
|
|
271
329
|
}
|
|
272
330
|
|
|
273
|
-
class
|
|
331
|
+
class GetLinkRoutingRuleCommand extends client.Command
|
|
332
|
+
.classBuilder()
|
|
333
|
+
.ep(commonParams)
|
|
334
|
+
.m(function (Command, cs, config, o) {
|
|
335
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
336
|
+
})
|
|
337
|
+
.s("RTBFabric", "GetLinkRoutingRule", {})
|
|
338
|
+
.n("RTBFabricClient", "GetLinkRoutingRuleCommand")
|
|
339
|
+
.sc(schemas_0.GetLinkRoutingRule$)
|
|
340
|
+
.build() {
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
class GetOutboundExternalLinkCommand extends client.Command
|
|
274
344
|
.classBuilder()
|
|
275
345
|
.ep(commonParams)
|
|
276
346
|
.m(function (Command, cs, config, o) {
|
|
277
|
-
return [
|
|
347
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
278
348
|
})
|
|
279
349
|
.s("RTBFabric", "GetOutboundExternalLink", {})
|
|
280
350
|
.n("RTBFabricClient", "GetOutboundExternalLinkCommand")
|
|
@@ -282,11 +352,11 @@ class GetOutboundExternalLinkCommand extends smithyClient.Command
|
|
|
282
352
|
.build() {
|
|
283
353
|
}
|
|
284
354
|
|
|
285
|
-
class GetRequesterGatewayCommand extends
|
|
355
|
+
class GetRequesterGatewayCommand extends client.Command
|
|
286
356
|
.classBuilder()
|
|
287
357
|
.ep(commonParams)
|
|
288
358
|
.m(function (Command, cs, config, o) {
|
|
289
|
-
return [
|
|
359
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
290
360
|
})
|
|
291
361
|
.s("RTBFabric", "GetRequesterGateway", {})
|
|
292
362
|
.n("RTBFabricClient", "GetRequesterGatewayCommand")
|
|
@@ -294,11 +364,11 @@ class GetRequesterGatewayCommand extends smithyClient.Command
|
|
|
294
364
|
.build() {
|
|
295
365
|
}
|
|
296
366
|
|
|
297
|
-
class GetResponderGatewayCommand extends
|
|
367
|
+
class GetResponderGatewayCommand extends client.Command
|
|
298
368
|
.classBuilder()
|
|
299
369
|
.ep(commonParams)
|
|
300
370
|
.m(function (Command, cs, config, o) {
|
|
301
|
-
return [
|
|
371
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
302
372
|
})
|
|
303
373
|
.s("RTBFabric", "GetResponderGateway", {})
|
|
304
374
|
.n("RTBFabricClient", "GetResponderGatewayCommand")
|
|
@@ -306,11 +376,35 @@ class GetResponderGatewayCommand extends smithyClient.Command
|
|
|
306
376
|
.build() {
|
|
307
377
|
}
|
|
308
378
|
|
|
309
|
-
class
|
|
379
|
+
class ListCertificateAssociationsCommand extends client.Command
|
|
380
|
+
.classBuilder()
|
|
381
|
+
.ep(commonParams)
|
|
382
|
+
.m(function (Command, cs, config, o) {
|
|
383
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
384
|
+
})
|
|
385
|
+
.s("RTBFabric", "ListCertificateAssociations", {})
|
|
386
|
+
.n("RTBFabricClient", "ListCertificateAssociationsCommand")
|
|
387
|
+
.sc(schemas_0.ListCertificateAssociations$)
|
|
388
|
+
.build() {
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
class ListLinkRoutingRulesCommand extends client.Command
|
|
392
|
+
.classBuilder()
|
|
393
|
+
.ep(commonParams)
|
|
394
|
+
.m(function (Command, cs, config, o) {
|
|
395
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
396
|
+
})
|
|
397
|
+
.s("RTBFabric", "ListLinkRoutingRules", {})
|
|
398
|
+
.n("RTBFabricClient", "ListLinkRoutingRulesCommand")
|
|
399
|
+
.sc(schemas_0.ListLinkRoutingRules$)
|
|
400
|
+
.build() {
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
class ListLinksCommand extends client.Command
|
|
310
404
|
.classBuilder()
|
|
311
405
|
.ep(commonParams)
|
|
312
406
|
.m(function (Command, cs, config, o) {
|
|
313
|
-
return [
|
|
407
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
314
408
|
})
|
|
315
409
|
.s("RTBFabric", "ListLinks", {})
|
|
316
410
|
.n("RTBFabricClient", "ListLinksCommand")
|
|
@@ -318,11 +412,11 @@ class ListLinksCommand extends smithyClient.Command
|
|
|
318
412
|
.build() {
|
|
319
413
|
}
|
|
320
414
|
|
|
321
|
-
class ListRequesterGatewaysCommand extends
|
|
415
|
+
class ListRequesterGatewaysCommand extends client.Command
|
|
322
416
|
.classBuilder()
|
|
323
417
|
.ep(commonParams)
|
|
324
418
|
.m(function (Command, cs, config, o) {
|
|
325
|
-
return [
|
|
419
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
326
420
|
})
|
|
327
421
|
.s("RTBFabric", "ListRequesterGateways", {})
|
|
328
422
|
.n("RTBFabricClient", "ListRequesterGatewaysCommand")
|
|
@@ -330,11 +424,11 @@ class ListRequesterGatewaysCommand extends smithyClient.Command
|
|
|
330
424
|
.build() {
|
|
331
425
|
}
|
|
332
426
|
|
|
333
|
-
class ListResponderGatewaysCommand extends
|
|
427
|
+
class ListResponderGatewaysCommand extends client.Command
|
|
334
428
|
.classBuilder()
|
|
335
429
|
.ep(commonParams)
|
|
336
430
|
.m(function (Command, cs, config, o) {
|
|
337
|
-
return [
|
|
431
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
338
432
|
})
|
|
339
433
|
.s("RTBFabric", "ListResponderGateways", {})
|
|
340
434
|
.n("RTBFabricClient", "ListResponderGatewaysCommand")
|
|
@@ -342,11 +436,11 @@ class ListResponderGatewaysCommand extends smithyClient.Command
|
|
|
342
436
|
.build() {
|
|
343
437
|
}
|
|
344
438
|
|
|
345
|
-
class ListTagsForResourceCommand extends
|
|
439
|
+
class ListTagsForResourceCommand extends client.Command
|
|
346
440
|
.classBuilder()
|
|
347
441
|
.ep(commonParams)
|
|
348
442
|
.m(function (Command, cs, config, o) {
|
|
349
|
-
return [
|
|
443
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
350
444
|
})
|
|
351
445
|
.s("RTBFabric", "ListTagsForResource", {})
|
|
352
446
|
.n("RTBFabricClient", "ListTagsForResourceCommand")
|
|
@@ -354,11 +448,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
354
448
|
.build() {
|
|
355
449
|
}
|
|
356
450
|
|
|
357
|
-
class RejectLinkCommand extends
|
|
451
|
+
class RejectLinkCommand extends client.Command
|
|
358
452
|
.classBuilder()
|
|
359
453
|
.ep(commonParams)
|
|
360
454
|
.m(function (Command, cs, config, o) {
|
|
361
|
-
return [
|
|
455
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
362
456
|
})
|
|
363
457
|
.s("RTBFabric", "RejectLink", {})
|
|
364
458
|
.n("RTBFabricClient", "RejectLinkCommand")
|
|
@@ -366,11 +460,11 @@ class RejectLinkCommand extends smithyClient.Command
|
|
|
366
460
|
.build() {
|
|
367
461
|
}
|
|
368
462
|
|
|
369
|
-
class TagResourceCommand extends
|
|
463
|
+
class TagResourceCommand extends client.Command
|
|
370
464
|
.classBuilder()
|
|
371
465
|
.ep(commonParams)
|
|
372
466
|
.m(function (Command, cs, config, o) {
|
|
373
|
-
return [
|
|
467
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
374
468
|
})
|
|
375
469
|
.s("RTBFabric", "TagResource", {})
|
|
376
470
|
.n("RTBFabricClient", "TagResourceCommand")
|
|
@@ -378,11 +472,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
378
472
|
.build() {
|
|
379
473
|
}
|
|
380
474
|
|
|
381
|
-
class UntagResourceCommand extends
|
|
475
|
+
class UntagResourceCommand extends client.Command
|
|
382
476
|
.classBuilder()
|
|
383
477
|
.ep(commonParams)
|
|
384
478
|
.m(function (Command, cs, config, o) {
|
|
385
|
-
return [
|
|
479
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
386
480
|
})
|
|
387
481
|
.s("RTBFabric", "UntagResource", {})
|
|
388
482
|
.n("RTBFabricClient", "UntagResourceCommand")
|
|
@@ -390,11 +484,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
390
484
|
.build() {
|
|
391
485
|
}
|
|
392
486
|
|
|
393
|
-
class UpdateLinkCommand extends
|
|
487
|
+
class UpdateLinkCommand extends client.Command
|
|
394
488
|
.classBuilder()
|
|
395
489
|
.ep(commonParams)
|
|
396
490
|
.m(function (Command, cs, config, o) {
|
|
397
|
-
return [
|
|
491
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
398
492
|
})
|
|
399
493
|
.s("RTBFabric", "UpdateLink", {})
|
|
400
494
|
.n("RTBFabricClient", "UpdateLinkCommand")
|
|
@@ -402,11 +496,11 @@ class UpdateLinkCommand extends smithyClient.Command
|
|
|
402
496
|
.build() {
|
|
403
497
|
}
|
|
404
498
|
|
|
405
|
-
class UpdateLinkModuleFlowCommand extends
|
|
499
|
+
class UpdateLinkModuleFlowCommand extends client.Command
|
|
406
500
|
.classBuilder()
|
|
407
501
|
.ep(commonParams)
|
|
408
502
|
.m(function (Command, cs, config, o) {
|
|
409
|
-
return [
|
|
503
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
410
504
|
})
|
|
411
505
|
.s("RTBFabric", "UpdateLinkModuleFlow", {})
|
|
412
506
|
.n("RTBFabricClient", "UpdateLinkModuleFlowCommand")
|
|
@@ -414,11 +508,23 @@ class UpdateLinkModuleFlowCommand extends smithyClient.Command
|
|
|
414
508
|
.build() {
|
|
415
509
|
}
|
|
416
510
|
|
|
417
|
-
class
|
|
511
|
+
class UpdateLinkRoutingRuleCommand extends client.Command
|
|
512
|
+
.classBuilder()
|
|
513
|
+
.ep(commonParams)
|
|
514
|
+
.m(function (Command, cs, config, o) {
|
|
515
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
516
|
+
})
|
|
517
|
+
.s("RTBFabric", "UpdateLinkRoutingRule", {})
|
|
518
|
+
.n("RTBFabricClient", "UpdateLinkRoutingRuleCommand")
|
|
519
|
+
.sc(schemas_0.UpdateLinkRoutingRule$)
|
|
520
|
+
.build() {
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
class UpdateRequesterGatewayCommand extends client.Command
|
|
418
524
|
.classBuilder()
|
|
419
525
|
.ep(commonParams)
|
|
420
526
|
.m(function (Command, cs, config, o) {
|
|
421
|
-
return [
|
|
527
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
422
528
|
})
|
|
423
529
|
.s("RTBFabric", "UpdateRequesterGateway", {})
|
|
424
530
|
.n("RTBFabricClient", "UpdateRequesterGatewayCommand")
|
|
@@ -426,11 +532,11 @@ class UpdateRequesterGatewayCommand extends smithyClient.Command
|
|
|
426
532
|
.build() {
|
|
427
533
|
}
|
|
428
534
|
|
|
429
|
-
class UpdateResponderGatewayCommand extends
|
|
535
|
+
class UpdateResponderGatewayCommand extends client.Command
|
|
430
536
|
.classBuilder()
|
|
431
537
|
.ep(commonParams)
|
|
432
538
|
.m(function (Command, cs, config, o) {
|
|
433
|
-
return [
|
|
539
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
434
540
|
})
|
|
435
541
|
.s("RTBFabric", "UpdateResponderGateway", {})
|
|
436
542
|
.n("RTBFabricClient", "UpdateResponderGatewayCommand")
|
|
@@ -438,23 +544,138 @@ class UpdateResponderGatewayCommand extends smithyClient.Command
|
|
|
438
544
|
.build() {
|
|
439
545
|
}
|
|
440
546
|
|
|
547
|
+
const paginateListCertificateAssociations = core.createPaginator(RTBFabricClient, ListCertificateAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
548
|
+
|
|
549
|
+
const paginateListLinkRoutingRules = core.createPaginator(RTBFabricClient, ListLinkRoutingRulesCommand, "nextToken", "nextToken", "maxResults");
|
|
550
|
+
|
|
441
551
|
const paginateListLinks = core.createPaginator(RTBFabricClient, ListLinksCommand, "nextToken", "nextToken", "maxResults");
|
|
442
552
|
|
|
443
553
|
const paginateListRequesterGateways = core.createPaginator(RTBFabricClient, ListRequesterGatewaysCommand, "nextToken", "nextToken", "maxResults");
|
|
444
554
|
|
|
445
555
|
const paginateListResponderGateways = core.createPaginator(RTBFabricClient, ListResponderGatewaysCommand, "nextToken", "nextToken", "maxResults");
|
|
446
556
|
|
|
447
|
-
const checkState$
|
|
557
|
+
const checkState$e = async (client$1, input) => {
|
|
558
|
+
let reason;
|
|
559
|
+
try {
|
|
560
|
+
let result = await client$1.send(new GetCertificateAssociationCommand(input));
|
|
561
|
+
reason = result;
|
|
562
|
+
try {
|
|
563
|
+
const returnComparator = () => {
|
|
564
|
+
return result.status;
|
|
565
|
+
};
|
|
566
|
+
if (returnComparator() === "ASSOCIATED") {
|
|
567
|
+
return { state: client.WaiterState.SUCCESS, reason };
|
|
568
|
+
}
|
|
569
|
+
}
|
|
570
|
+
catch (e) { }
|
|
571
|
+
try {
|
|
572
|
+
const returnComparator = () => {
|
|
573
|
+
return result.status;
|
|
574
|
+
};
|
|
575
|
+
if (returnComparator() === "FAILED") {
|
|
576
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
catch (e) { }
|
|
580
|
+
try {
|
|
581
|
+
const returnComparator = () => {
|
|
582
|
+
return result.status;
|
|
583
|
+
};
|
|
584
|
+
if (returnComparator() === "DISASSOCIATED") {
|
|
585
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
catch (e) { }
|
|
589
|
+
try {
|
|
590
|
+
const returnComparator = () => {
|
|
591
|
+
return result.status;
|
|
592
|
+
};
|
|
593
|
+
if (returnComparator() === "PENDING_DISASSOCIATION") {
|
|
594
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
595
|
+
}
|
|
596
|
+
}
|
|
597
|
+
catch (e) { }
|
|
598
|
+
}
|
|
599
|
+
catch (exception) {
|
|
600
|
+
reason = exception;
|
|
601
|
+
if (exception.name === "ResourceNotFoundException") {
|
|
602
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
return { state: client.WaiterState.RETRY, reason };
|
|
606
|
+
};
|
|
607
|
+
const waitForCertificateAssociated = async (params, input) => {
|
|
608
|
+
const serviceDefaults = { minDelay: 15, maxDelay: 120 };
|
|
609
|
+
return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$e);
|
|
610
|
+
};
|
|
611
|
+
const waitUntilCertificateAssociated = async (params, input) => {
|
|
612
|
+
const serviceDefaults = { minDelay: 15, maxDelay: 120 };
|
|
613
|
+
const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$e);
|
|
614
|
+
return client.checkExceptions(result);
|
|
615
|
+
};
|
|
616
|
+
|
|
617
|
+
const checkState$d = async (client$1, input) => {
|
|
448
618
|
let reason;
|
|
449
619
|
try {
|
|
450
|
-
let result = await client.send(new
|
|
620
|
+
let result = await client$1.send(new GetCertificateAssociationCommand(input));
|
|
621
|
+
reason = result;
|
|
622
|
+
try {
|
|
623
|
+
const returnComparator = () => {
|
|
624
|
+
return result.status;
|
|
625
|
+
};
|
|
626
|
+
if (returnComparator() === "DISASSOCIATED") {
|
|
627
|
+
return { state: client.WaiterState.SUCCESS, reason };
|
|
628
|
+
}
|
|
629
|
+
}
|
|
630
|
+
catch (e) { }
|
|
631
|
+
try {
|
|
632
|
+
const returnComparator = () => {
|
|
633
|
+
return result.status;
|
|
634
|
+
};
|
|
635
|
+
if (returnComparator() === "FAILED") {
|
|
636
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
catch (e) { }
|
|
640
|
+
try {
|
|
641
|
+
const returnComparator = () => {
|
|
642
|
+
return result.status;
|
|
643
|
+
};
|
|
644
|
+
if (returnComparator() === "PENDING_ASSOCIATION") {
|
|
645
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
646
|
+
}
|
|
647
|
+
}
|
|
648
|
+
catch (e) { }
|
|
649
|
+
}
|
|
650
|
+
catch (exception) {
|
|
651
|
+
reason = exception;
|
|
652
|
+
if (exception.name === "ResourceNotFoundException") {
|
|
653
|
+
return { state: client.WaiterState.SUCCESS, reason };
|
|
654
|
+
}
|
|
655
|
+
}
|
|
656
|
+
return { state: client.WaiterState.RETRY, reason };
|
|
657
|
+
};
|
|
658
|
+
const waitForCertificateDisassociated = async (params, input) => {
|
|
659
|
+
const serviceDefaults = { minDelay: 15, maxDelay: 120 };
|
|
660
|
+
return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$d);
|
|
661
|
+
};
|
|
662
|
+
const waitUntilCertificateDisassociated = async (params, input) => {
|
|
663
|
+
const serviceDefaults = { minDelay: 15, maxDelay: 120 };
|
|
664
|
+
const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$d);
|
|
665
|
+
return client.checkExceptions(result);
|
|
666
|
+
};
|
|
667
|
+
|
|
668
|
+
const checkState$c = async (client$1, input) => {
|
|
669
|
+
let reason;
|
|
670
|
+
try {
|
|
671
|
+
let result = await client$1.send(new GetInboundExternalLinkCommand(input));
|
|
451
672
|
reason = result;
|
|
452
673
|
try {
|
|
453
674
|
const returnComparator = () => {
|
|
454
675
|
return result.status;
|
|
455
676
|
};
|
|
456
677
|
if (returnComparator() === "ACTIVE") {
|
|
457
|
-
return { state:
|
|
678
|
+
return { state: client.WaiterState.SUCCESS, reason };
|
|
458
679
|
}
|
|
459
680
|
}
|
|
460
681
|
catch (e) { }
|
|
@@ -463,7 +684,7 @@ const checkState$a = async (client, input) => {
|
|
|
463
684
|
return result.status;
|
|
464
685
|
};
|
|
465
686
|
if (returnComparator() === "REJECTED") {
|
|
466
|
-
return { state:
|
|
687
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
467
688
|
}
|
|
468
689
|
}
|
|
469
690
|
catch (e) { }
|
|
@@ -472,7 +693,7 @@ const checkState$a = async (client, input) => {
|
|
|
472
693
|
return result.status;
|
|
473
694
|
};
|
|
474
695
|
if (returnComparator() === "FAILED") {
|
|
475
|
-
return { state:
|
|
696
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
476
697
|
}
|
|
477
698
|
}
|
|
478
699
|
catch (e) { }
|
|
@@ -481,7 +702,7 @@ const checkState$a = async (client, input) => {
|
|
|
481
702
|
return result.status;
|
|
482
703
|
};
|
|
483
704
|
if (returnComparator() === "DELETED") {
|
|
484
|
-
return { state:
|
|
705
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
485
706
|
}
|
|
486
707
|
}
|
|
487
708
|
catch (e) { }
|
|
@@ -490,7 +711,7 @@ const checkState$a = async (client, input) => {
|
|
|
490
711
|
return result.status;
|
|
491
712
|
};
|
|
492
713
|
if (returnComparator() === "ISOLATED") {
|
|
493
|
-
return { state:
|
|
714
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
494
715
|
}
|
|
495
716
|
}
|
|
496
717
|
catch (e) { }
|
|
@@ -498,29 +719,29 @@ const checkState$a = async (client, input) => {
|
|
|
498
719
|
catch (exception) {
|
|
499
720
|
reason = exception;
|
|
500
721
|
}
|
|
501
|
-
return { state:
|
|
722
|
+
return { state: client.WaiterState.RETRY, reason };
|
|
502
723
|
};
|
|
503
724
|
const waitForInboundExternalLinkActive = async (params, input) => {
|
|
504
725
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
505
|
-
return
|
|
726
|
+
return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$c);
|
|
506
727
|
};
|
|
507
728
|
const waitUntilInboundExternalLinkActive = async (params, input) => {
|
|
508
729
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
509
|
-
const result = await
|
|
510
|
-
return
|
|
730
|
+
const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$c);
|
|
731
|
+
return client.checkExceptions(result);
|
|
511
732
|
};
|
|
512
733
|
|
|
513
|
-
const checkState$
|
|
734
|
+
const checkState$b = async (client$1, input) => {
|
|
514
735
|
let reason;
|
|
515
736
|
try {
|
|
516
|
-
let result = await client.send(new GetInboundExternalLinkCommand(input));
|
|
737
|
+
let result = await client$1.send(new GetInboundExternalLinkCommand(input));
|
|
517
738
|
reason = result;
|
|
518
739
|
try {
|
|
519
740
|
const returnComparator = () => {
|
|
520
741
|
return result.status;
|
|
521
742
|
};
|
|
522
743
|
if (returnComparator() === "DELETED") {
|
|
523
|
-
return { state:
|
|
744
|
+
return { state: client.WaiterState.SUCCESS, reason };
|
|
524
745
|
}
|
|
525
746
|
}
|
|
526
747
|
catch (e) { }
|
|
@@ -529,7 +750,7 @@ const checkState$9 = async (client, input) => {
|
|
|
529
750
|
return result.status;
|
|
530
751
|
};
|
|
531
752
|
if (returnComparator() === "FAILED") {
|
|
532
|
-
return { state:
|
|
753
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
533
754
|
}
|
|
534
755
|
}
|
|
535
756
|
catch (e) { }
|
|
@@ -538,7 +759,7 @@ const checkState$9 = async (client, input) => {
|
|
|
538
759
|
return result.status;
|
|
539
760
|
};
|
|
540
761
|
if (returnComparator() === "REJECTED") {
|
|
541
|
-
return { state:
|
|
762
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
542
763
|
}
|
|
543
764
|
}
|
|
544
765
|
catch (e) { }
|
|
@@ -546,29 +767,29 @@ const checkState$9 = async (client, input) => {
|
|
|
546
767
|
catch (exception) {
|
|
547
768
|
reason = exception;
|
|
548
769
|
}
|
|
549
|
-
return { state:
|
|
770
|
+
return { state: client.WaiterState.RETRY, reason };
|
|
550
771
|
};
|
|
551
772
|
const waitForInboundExternalLinkDeleted = async (params, input) => {
|
|
552
773
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
553
|
-
return
|
|
774
|
+
return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$b);
|
|
554
775
|
};
|
|
555
776
|
const waitUntilInboundExternalLinkDeleted = async (params, input) => {
|
|
556
777
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
557
|
-
const result = await
|
|
558
|
-
return
|
|
778
|
+
const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$b);
|
|
779
|
+
return client.checkExceptions(result);
|
|
559
780
|
};
|
|
560
781
|
|
|
561
|
-
const checkState$
|
|
782
|
+
const checkState$a = async (client$1, input) => {
|
|
562
783
|
let reason;
|
|
563
784
|
try {
|
|
564
|
-
let result = await client.send(new GetLinkCommand(input));
|
|
785
|
+
let result = await client$1.send(new GetLinkCommand(input));
|
|
565
786
|
reason = result;
|
|
566
787
|
try {
|
|
567
788
|
const returnComparator = () => {
|
|
568
789
|
return result.status;
|
|
569
790
|
};
|
|
570
791
|
if (returnComparator() === "ACCEPTED") {
|
|
571
|
-
return { state:
|
|
792
|
+
return { state: client.WaiterState.SUCCESS, reason };
|
|
572
793
|
}
|
|
573
794
|
}
|
|
574
795
|
catch (e) { }
|
|
@@ -577,7 +798,7 @@ const checkState$8 = async (client, input) => {
|
|
|
577
798
|
return result.status;
|
|
578
799
|
};
|
|
579
800
|
if (returnComparator() === "REJECTED") {
|
|
580
|
-
return { state:
|
|
801
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
581
802
|
}
|
|
582
803
|
}
|
|
583
804
|
catch (e) { }
|
|
@@ -586,7 +807,7 @@ const checkState$8 = async (client, input) => {
|
|
|
586
807
|
return result.status;
|
|
587
808
|
};
|
|
588
809
|
if (returnComparator() === "FAILED") {
|
|
589
|
-
return { state:
|
|
810
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
590
811
|
}
|
|
591
812
|
}
|
|
592
813
|
catch (e) { }
|
|
@@ -595,7 +816,7 @@ const checkState$8 = async (client, input) => {
|
|
|
595
816
|
return result.status;
|
|
596
817
|
};
|
|
597
818
|
if (returnComparator() === "DELETED") {
|
|
598
|
-
return { state:
|
|
819
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
599
820
|
}
|
|
600
821
|
}
|
|
601
822
|
catch (e) { }
|
|
@@ -603,29 +824,29 @@ const checkState$8 = async (client, input) => {
|
|
|
603
824
|
catch (exception) {
|
|
604
825
|
reason = exception;
|
|
605
826
|
}
|
|
606
|
-
return { state:
|
|
827
|
+
return { state: client.WaiterState.RETRY, reason };
|
|
607
828
|
};
|
|
608
829
|
const waitForLinkAccepted = async (params, input) => {
|
|
609
830
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
610
|
-
return
|
|
831
|
+
return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$a);
|
|
611
832
|
};
|
|
612
833
|
const waitUntilLinkAccepted = async (params, input) => {
|
|
613
834
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
614
|
-
const result = await
|
|
615
|
-
return
|
|
835
|
+
const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$a);
|
|
836
|
+
return client.checkExceptions(result);
|
|
616
837
|
};
|
|
617
838
|
|
|
618
|
-
const checkState$
|
|
839
|
+
const checkState$9 = async (client$1, input) => {
|
|
619
840
|
let reason;
|
|
620
841
|
try {
|
|
621
|
-
let result = await client.send(new GetLinkCommand(input));
|
|
842
|
+
let result = await client$1.send(new GetLinkCommand(input));
|
|
622
843
|
reason = result;
|
|
623
844
|
try {
|
|
624
845
|
const returnComparator = () => {
|
|
625
846
|
return result.status;
|
|
626
847
|
};
|
|
627
848
|
if (returnComparator() === "ACTIVE") {
|
|
628
|
-
return { state:
|
|
849
|
+
return { state: client.WaiterState.SUCCESS, reason };
|
|
629
850
|
}
|
|
630
851
|
}
|
|
631
852
|
catch (e) { }
|
|
@@ -634,7 +855,7 @@ const checkState$7 = async (client, input) => {
|
|
|
634
855
|
return result.status;
|
|
635
856
|
};
|
|
636
857
|
if (returnComparator() === "REJECTED") {
|
|
637
|
-
return { state:
|
|
858
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
638
859
|
}
|
|
639
860
|
}
|
|
640
861
|
catch (e) { }
|
|
@@ -643,7 +864,7 @@ const checkState$7 = async (client, input) => {
|
|
|
643
864
|
return result.status;
|
|
644
865
|
};
|
|
645
866
|
if (returnComparator() === "FAILED") {
|
|
646
|
-
return { state:
|
|
867
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
647
868
|
}
|
|
648
869
|
}
|
|
649
870
|
catch (e) { }
|
|
@@ -652,7 +873,7 @@ const checkState$7 = async (client, input) => {
|
|
|
652
873
|
return result.status;
|
|
653
874
|
};
|
|
654
875
|
if (returnComparator() === "DELETED") {
|
|
655
|
-
return { state:
|
|
876
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
656
877
|
}
|
|
657
878
|
}
|
|
658
879
|
catch (e) { }
|
|
@@ -660,29 +881,29 @@ const checkState$7 = async (client, input) => {
|
|
|
660
881
|
catch (exception) {
|
|
661
882
|
reason = exception;
|
|
662
883
|
}
|
|
663
|
-
return { state:
|
|
884
|
+
return { state: client.WaiterState.RETRY, reason };
|
|
664
885
|
};
|
|
665
886
|
const waitForLinkActive = async (params, input) => {
|
|
666
887
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
667
|
-
return
|
|
888
|
+
return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$9);
|
|
668
889
|
};
|
|
669
890
|
const waitUntilLinkActive = async (params, input) => {
|
|
670
891
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
671
|
-
const result = await
|
|
672
|
-
return
|
|
892
|
+
const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$9);
|
|
893
|
+
return client.checkExceptions(result);
|
|
673
894
|
};
|
|
674
895
|
|
|
675
|
-
const checkState$
|
|
896
|
+
const checkState$8 = async (client$1, input) => {
|
|
676
897
|
let reason;
|
|
677
898
|
try {
|
|
678
|
-
let result = await client.send(new GetLinkCommand(input));
|
|
899
|
+
let result = await client$1.send(new GetLinkCommand(input));
|
|
679
900
|
reason = result;
|
|
680
901
|
try {
|
|
681
902
|
const returnComparator = () => {
|
|
682
903
|
return result.status;
|
|
683
904
|
};
|
|
684
905
|
if (returnComparator() === "DELETED") {
|
|
685
|
-
return { state:
|
|
906
|
+
return { state: client.WaiterState.SUCCESS, reason };
|
|
686
907
|
}
|
|
687
908
|
}
|
|
688
909
|
catch (e) { }
|
|
@@ -691,7 +912,7 @@ const checkState$6 = async (client, input) => {
|
|
|
691
912
|
return result.status;
|
|
692
913
|
};
|
|
693
914
|
if (returnComparator() === "FAILED") {
|
|
694
|
-
return { state:
|
|
915
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
695
916
|
}
|
|
696
917
|
}
|
|
697
918
|
catch (e) { }
|
|
@@ -700,7 +921,7 @@ const checkState$6 = async (client, input) => {
|
|
|
700
921
|
return result.status;
|
|
701
922
|
};
|
|
702
923
|
if (returnComparator() === "REJECTED") {
|
|
703
|
-
return { state:
|
|
924
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
704
925
|
}
|
|
705
926
|
}
|
|
706
927
|
catch (e) { }
|
|
@@ -708,29 +929,119 @@ const checkState$6 = async (client, input) => {
|
|
|
708
929
|
catch (exception) {
|
|
709
930
|
reason = exception;
|
|
710
931
|
}
|
|
711
|
-
return { state:
|
|
932
|
+
return { state: client.WaiterState.RETRY, reason };
|
|
712
933
|
};
|
|
713
934
|
const waitForLinkDeleted = async (params, input) => {
|
|
714
935
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
715
|
-
return
|
|
936
|
+
return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$8);
|
|
716
937
|
};
|
|
717
938
|
const waitUntilLinkDeleted = async (params, input) => {
|
|
718
939
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
719
|
-
const result = await
|
|
720
|
-
return
|
|
940
|
+
const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$8);
|
|
941
|
+
return client.checkExceptions(result);
|
|
942
|
+
};
|
|
943
|
+
|
|
944
|
+
const checkState$7 = async (client$1, input) => {
|
|
945
|
+
let reason;
|
|
946
|
+
try {
|
|
947
|
+
let result = await client$1.send(new GetLinkRoutingRuleCommand(input));
|
|
948
|
+
reason = result;
|
|
949
|
+
try {
|
|
950
|
+
const returnComparator = () => {
|
|
951
|
+
return result.status;
|
|
952
|
+
};
|
|
953
|
+
if (returnComparator() === "ACTIVE") {
|
|
954
|
+
return { state: client.WaiterState.SUCCESS, reason };
|
|
955
|
+
}
|
|
956
|
+
}
|
|
957
|
+
catch (e) { }
|
|
958
|
+
try {
|
|
959
|
+
const returnComparator = () => {
|
|
960
|
+
return result.status;
|
|
961
|
+
};
|
|
962
|
+
if (returnComparator() === "FAILED") {
|
|
963
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
964
|
+
}
|
|
965
|
+
}
|
|
966
|
+
catch (e) { }
|
|
967
|
+
try {
|
|
968
|
+
const returnComparator = () => {
|
|
969
|
+
return result.status;
|
|
970
|
+
};
|
|
971
|
+
if (returnComparator() === "DELETED") {
|
|
972
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
973
|
+
}
|
|
974
|
+
}
|
|
975
|
+
catch (e) { }
|
|
976
|
+
}
|
|
977
|
+
catch (exception) {
|
|
978
|
+
reason = exception;
|
|
979
|
+
}
|
|
980
|
+
return { state: client.WaiterState.RETRY, reason };
|
|
981
|
+
};
|
|
982
|
+
const waitForLinkRoutingRuleActive = async (params, input) => {
|
|
983
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 120 };
|
|
984
|
+
return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$7);
|
|
985
|
+
};
|
|
986
|
+
const waitUntilLinkRoutingRuleActive = async (params, input) => {
|
|
987
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 120 };
|
|
988
|
+
const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$7);
|
|
989
|
+
return client.checkExceptions(result);
|
|
721
990
|
};
|
|
722
991
|
|
|
723
|
-
const checkState$
|
|
992
|
+
const checkState$6 = async (client$1, input) => {
|
|
724
993
|
let reason;
|
|
725
994
|
try {
|
|
726
|
-
let result = await client.send(new
|
|
995
|
+
let result = await client$1.send(new GetLinkRoutingRuleCommand(input));
|
|
996
|
+
reason = result;
|
|
997
|
+
try {
|
|
998
|
+
const returnComparator = () => {
|
|
999
|
+
return result.status;
|
|
1000
|
+
};
|
|
1001
|
+
if (returnComparator() === "DELETED") {
|
|
1002
|
+
return { state: client.WaiterState.SUCCESS, reason };
|
|
1003
|
+
}
|
|
1004
|
+
}
|
|
1005
|
+
catch (e) { }
|
|
1006
|
+
try {
|
|
1007
|
+
const returnComparator = () => {
|
|
1008
|
+
return result.status;
|
|
1009
|
+
};
|
|
1010
|
+
if (returnComparator() === "FAILED") {
|
|
1011
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
1012
|
+
}
|
|
1013
|
+
}
|
|
1014
|
+
catch (e) { }
|
|
1015
|
+
}
|
|
1016
|
+
catch (exception) {
|
|
1017
|
+
reason = exception;
|
|
1018
|
+
if (exception.name === "ResourceNotFoundException") {
|
|
1019
|
+
return { state: client.WaiterState.SUCCESS, reason };
|
|
1020
|
+
}
|
|
1021
|
+
}
|
|
1022
|
+
return { state: client.WaiterState.RETRY, reason };
|
|
1023
|
+
};
|
|
1024
|
+
const waitForLinkRoutingRuleDeleted = async (params, input) => {
|
|
1025
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 120 };
|
|
1026
|
+
return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$6);
|
|
1027
|
+
};
|
|
1028
|
+
const waitUntilLinkRoutingRuleDeleted = async (params, input) => {
|
|
1029
|
+
const serviceDefaults = { minDelay: 5, maxDelay: 120 };
|
|
1030
|
+
const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$6);
|
|
1031
|
+
return client.checkExceptions(result);
|
|
1032
|
+
};
|
|
1033
|
+
|
|
1034
|
+
const checkState$5 = async (client$1, input) => {
|
|
1035
|
+
let reason;
|
|
1036
|
+
try {
|
|
1037
|
+
let result = await client$1.send(new GetOutboundExternalLinkCommand(input));
|
|
727
1038
|
reason = result;
|
|
728
1039
|
try {
|
|
729
1040
|
const returnComparator = () => {
|
|
730
1041
|
return result.status;
|
|
731
1042
|
};
|
|
732
1043
|
if (returnComparator() === "ACTIVE") {
|
|
733
|
-
return { state:
|
|
1044
|
+
return { state: client.WaiterState.SUCCESS, reason };
|
|
734
1045
|
}
|
|
735
1046
|
}
|
|
736
1047
|
catch (e) { }
|
|
@@ -739,7 +1050,7 @@ const checkState$5 = async (client, input) => {
|
|
|
739
1050
|
return result.status;
|
|
740
1051
|
};
|
|
741
1052
|
if (returnComparator() === "REJECTED") {
|
|
742
|
-
return { state:
|
|
1053
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
743
1054
|
}
|
|
744
1055
|
}
|
|
745
1056
|
catch (e) { }
|
|
@@ -748,7 +1059,7 @@ const checkState$5 = async (client, input) => {
|
|
|
748
1059
|
return result.status;
|
|
749
1060
|
};
|
|
750
1061
|
if (returnComparator() === "FAILED") {
|
|
751
|
-
return { state:
|
|
1062
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
752
1063
|
}
|
|
753
1064
|
}
|
|
754
1065
|
catch (e) { }
|
|
@@ -757,7 +1068,7 @@ const checkState$5 = async (client, input) => {
|
|
|
757
1068
|
return result.status;
|
|
758
1069
|
};
|
|
759
1070
|
if (returnComparator() === "DELETED") {
|
|
760
|
-
return { state:
|
|
1071
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
761
1072
|
}
|
|
762
1073
|
}
|
|
763
1074
|
catch (e) { }
|
|
@@ -766,7 +1077,7 @@ const checkState$5 = async (client, input) => {
|
|
|
766
1077
|
return result.status;
|
|
767
1078
|
};
|
|
768
1079
|
if (returnComparator() === "ISOLATED") {
|
|
769
|
-
return { state:
|
|
1080
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
770
1081
|
}
|
|
771
1082
|
}
|
|
772
1083
|
catch (e) { }
|
|
@@ -774,29 +1085,29 @@ const checkState$5 = async (client, input) => {
|
|
|
774
1085
|
catch (exception) {
|
|
775
1086
|
reason = exception;
|
|
776
1087
|
}
|
|
777
|
-
return { state:
|
|
1088
|
+
return { state: client.WaiterState.RETRY, reason };
|
|
778
1089
|
};
|
|
779
1090
|
const waitForOutboundExternalLinkActive = async (params, input) => {
|
|
780
1091
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
781
|
-
return
|
|
1092
|
+
return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);
|
|
782
1093
|
};
|
|
783
1094
|
const waitUntilOutboundExternalLinkActive = async (params, input) => {
|
|
784
1095
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
785
|
-
const result = await
|
|
786
|
-
return
|
|
1096
|
+
const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);
|
|
1097
|
+
return client.checkExceptions(result);
|
|
787
1098
|
};
|
|
788
1099
|
|
|
789
|
-
const checkState$4 = async (client, input) => {
|
|
1100
|
+
const checkState$4 = async (client$1, input) => {
|
|
790
1101
|
let reason;
|
|
791
1102
|
try {
|
|
792
|
-
let result = await client.send(new GetOutboundExternalLinkCommand(input));
|
|
1103
|
+
let result = await client$1.send(new GetOutboundExternalLinkCommand(input));
|
|
793
1104
|
reason = result;
|
|
794
1105
|
try {
|
|
795
1106
|
const returnComparator = () => {
|
|
796
1107
|
return result.status;
|
|
797
1108
|
};
|
|
798
1109
|
if (returnComparator() === "DELETED") {
|
|
799
|
-
return { state:
|
|
1110
|
+
return { state: client.WaiterState.SUCCESS, reason };
|
|
800
1111
|
}
|
|
801
1112
|
}
|
|
802
1113
|
catch (e) { }
|
|
@@ -805,7 +1116,7 @@ const checkState$4 = async (client, input) => {
|
|
|
805
1116
|
return result.status;
|
|
806
1117
|
};
|
|
807
1118
|
if (returnComparator() === "FAILED") {
|
|
808
|
-
return { state:
|
|
1119
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
809
1120
|
}
|
|
810
1121
|
}
|
|
811
1122
|
catch (e) { }
|
|
@@ -814,7 +1125,7 @@ const checkState$4 = async (client, input) => {
|
|
|
814
1125
|
return result.status;
|
|
815
1126
|
};
|
|
816
1127
|
if (returnComparator() === "REJECTED") {
|
|
817
|
-
return { state:
|
|
1128
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
818
1129
|
}
|
|
819
1130
|
}
|
|
820
1131
|
catch (e) { }
|
|
@@ -822,29 +1133,29 @@ const checkState$4 = async (client, input) => {
|
|
|
822
1133
|
catch (exception) {
|
|
823
1134
|
reason = exception;
|
|
824
1135
|
}
|
|
825
|
-
return { state:
|
|
1136
|
+
return { state: client.WaiterState.RETRY, reason };
|
|
826
1137
|
};
|
|
827
1138
|
const waitForOutboundExternalLinkDeleted = async (params, input) => {
|
|
828
1139
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
829
|
-
return
|
|
1140
|
+
return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
|
|
830
1141
|
};
|
|
831
1142
|
const waitUntilOutboundExternalLinkDeleted = async (params, input) => {
|
|
832
1143
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
833
|
-
const result = await
|
|
834
|
-
return
|
|
1144
|
+
const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
|
|
1145
|
+
return client.checkExceptions(result);
|
|
835
1146
|
};
|
|
836
1147
|
|
|
837
|
-
const checkState$3 = async (client, input) => {
|
|
1148
|
+
const checkState$3 = async (client$1, input) => {
|
|
838
1149
|
let reason;
|
|
839
1150
|
try {
|
|
840
|
-
let result = await client.send(new GetRequesterGatewayCommand(input));
|
|
1151
|
+
let result = await client$1.send(new GetRequesterGatewayCommand(input));
|
|
841
1152
|
reason = result;
|
|
842
1153
|
try {
|
|
843
1154
|
const returnComparator = () => {
|
|
844
1155
|
return result.status;
|
|
845
1156
|
};
|
|
846
1157
|
if (returnComparator() === "ACTIVE") {
|
|
847
|
-
return { state:
|
|
1158
|
+
return { state: client.WaiterState.SUCCESS, reason };
|
|
848
1159
|
}
|
|
849
1160
|
}
|
|
850
1161
|
catch (e) { }
|
|
@@ -853,7 +1164,7 @@ const checkState$3 = async (client, input) => {
|
|
|
853
1164
|
return result.status;
|
|
854
1165
|
};
|
|
855
1166
|
if (returnComparator() === "DELETED") {
|
|
856
|
-
return { state:
|
|
1167
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
857
1168
|
}
|
|
858
1169
|
}
|
|
859
1170
|
catch (e) { }
|
|
@@ -862,7 +1173,7 @@ const checkState$3 = async (client, input) => {
|
|
|
862
1173
|
return result.status;
|
|
863
1174
|
};
|
|
864
1175
|
if (returnComparator() === "ERROR") {
|
|
865
|
-
return { state:
|
|
1176
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
866
1177
|
}
|
|
867
1178
|
}
|
|
868
1179
|
catch (e) { }
|
|
@@ -870,29 +1181,29 @@ const checkState$3 = async (client, input) => {
|
|
|
870
1181
|
catch (exception) {
|
|
871
1182
|
reason = exception;
|
|
872
1183
|
}
|
|
873
|
-
return { state:
|
|
1184
|
+
return { state: client.WaiterState.RETRY, reason };
|
|
874
1185
|
};
|
|
875
1186
|
const waitForRequesterGatewayActive = async (params, input) => {
|
|
876
1187
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
877
|
-
return
|
|
1188
|
+
return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
|
|
878
1189
|
};
|
|
879
1190
|
const waitUntilRequesterGatewayActive = async (params, input) => {
|
|
880
1191
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
881
|
-
const result = await
|
|
882
|
-
return
|
|
1192
|
+
const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
|
|
1193
|
+
return client.checkExceptions(result);
|
|
883
1194
|
};
|
|
884
1195
|
|
|
885
|
-
const checkState$2 = async (client, input) => {
|
|
1196
|
+
const checkState$2 = async (client$1, input) => {
|
|
886
1197
|
let reason;
|
|
887
1198
|
try {
|
|
888
|
-
let result = await client.send(new GetRequesterGatewayCommand(input));
|
|
1199
|
+
let result = await client$1.send(new GetRequesterGatewayCommand(input));
|
|
889
1200
|
reason = result;
|
|
890
1201
|
try {
|
|
891
1202
|
const returnComparator = () => {
|
|
892
1203
|
return result.status;
|
|
893
1204
|
};
|
|
894
1205
|
if (returnComparator() === "DELETED") {
|
|
895
|
-
return { state:
|
|
1206
|
+
return { state: client.WaiterState.SUCCESS, reason };
|
|
896
1207
|
}
|
|
897
1208
|
}
|
|
898
1209
|
catch (e) { }
|
|
@@ -901,7 +1212,7 @@ const checkState$2 = async (client, input) => {
|
|
|
901
1212
|
return result.status;
|
|
902
1213
|
};
|
|
903
1214
|
if (returnComparator() === "ERROR") {
|
|
904
|
-
return { state:
|
|
1215
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
905
1216
|
}
|
|
906
1217
|
}
|
|
907
1218
|
catch (e) { }
|
|
@@ -909,32 +1220,32 @@ const checkState$2 = async (client, input) => {
|
|
|
909
1220
|
catch (exception) {
|
|
910
1221
|
reason = exception;
|
|
911
1222
|
if (exception.name === "ResourceNotFoundException") {
|
|
912
|
-
return { state:
|
|
1223
|
+
return { state: client.WaiterState.SUCCESS, reason };
|
|
913
1224
|
}
|
|
914
1225
|
}
|
|
915
|
-
return { state:
|
|
1226
|
+
return { state: client.WaiterState.RETRY, reason };
|
|
916
1227
|
};
|
|
917
1228
|
const waitForRequesterGatewayDeleted = async (params, input) => {
|
|
918
1229
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
919
|
-
return
|
|
1230
|
+
return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
|
|
920
1231
|
};
|
|
921
1232
|
const waitUntilRequesterGatewayDeleted = async (params, input) => {
|
|
922
1233
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
923
|
-
const result = await
|
|
924
|
-
return
|
|
1234
|
+
const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
|
|
1235
|
+
return client.checkExceptions(result);
|
|
925
1236
|
};
|
|
926
1237
|
|
|
927
|
-
const checkState$1 = async (client, input) => {
|
|
1238
|
+
const checkState$1 = async (client$1, input) => {
|
|
928
1239
|
let reason;
|
|
929
1240
|
try {
|
|
930
|
-
let result = await client.send(new GetResponderGatewayCommand(input));
|
|
1241
|
+
let result = await client$1.send(new GetResponderGatewayCommand(input));
|
|
931
1242
|
reason = result;
|
|
932
1243
|
try {
|
|
933
1244
|
const returnComparator = () => {
|
|
934
1245
|
return result.status;
|
|
935
1246
|
};
|
|
936
1247
|
if (returnComparator() === "ACTIVE") {
|
|
937
|
-
return { state:
|
|
1248
|
+
return { state: client.WaiterState.SUCCESS, reason };
|
|
938
1249
|
}
|
|
939
1250
|
}
|
|
940
1251
|
catch (e) { }
|
|
@@ -943,7 +1254,7 @@ const checkState$1 = async (client, input) => {
|
|
|
943
1254
|
return result.status;
|
|
944
1255
|
};
|
|
945
1256
|
if (returnComparator() === "DELETED") {
|
|
946
|
-
return { state:
|
|
1257
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
947
1258
|
}
|
|
948
1259
|
}
|
|
949
1260
|
catch (e) { }
|
|
@@ -952,7 +1263,7 @@ const checkState$1 = async (client, input) => {
|
|
|
952
1263
|
return result.status;
|
|
953
1264
|
};
|
|
954
1265
|
if (returnComparator() === "ERROR") {
|
|
955
|
-
return { state:
|
|
1266
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
956
1267
|
}
|
|
957
1268
|
}
|
|
958
1269
|
catch (e) { }
|
|
@@ -960,29 +1271,29 @@ const checkState$1 = async (client, input) => {
|
|
|
960
1271
|
catch (exception) {
|
|
961
1272
|
reason = exception;
|
|
962
1273
|
}
|
|
963
|
-
return { state:
|
|
1274
|
+
return { state: client.WaiterState.RETRY, reason };
|
|
964
1275
|
};
|
|
965
1276
|
const waitForResponderGatewayActive = async (params, input) => {
|
|
966
1277
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
967
|
-
return
|
|
1278
|
+
return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
|
|
968
1279
|
};
|
|
969
1280
|
const waitUntilResponderGatewayActive = async (params, input) => {
|
|
970
1281
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
971
|
-
const result = await
|
|
972
|
-
return
|
|
1282
|
+
const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
|
|
1283
|
+
return client.checkExceptions(result);
|
|
973
1284
|
};
|
|
974
1285
|
|
|
975
|
-
const checkState = async (client, input) => {
|
|
1286
|
+
const checkState = async (client$1, input) => {
|
|
976
1287
|
let reason;
|
|
977
1288
|
try {
|
|
978
|
-
let result = await client.send(new GetResponderGatewayCommand(input));
|
|
1289
|
+
let result = await client$1.send(new GetResponderGatewayCommand(input));
|
|
979
1290
|
reason = result;
|
|
980
1291
|
try {
|
|
981
1292
|
const returnComparator = () => {
|
|
982
1293
|
return result.status;
|
|
983
1294
|
};
|
|
984
1295
|
if (returnComparator() === "DELETED") {
|
|
985
|
-
return { state:
|
|
1296
|
+
return { state: client.WaiterState.SUCCESS, reason };
|
|
986
1297
|
}
|
|
987
1298
|
}
|
|
988
1299
|
catch (e) { }
|
|
@@ -991,7 +1302,7 @@ const checkState = async (client, input) => {
|
|
|
991
1302
|
return result.status;
|
|
992
1303
|
};
|
|
993
1304
|
if (returnComparator() === "ERROR") {
|
|
994
|
-
return { state:
|
|
1305
|
+
return { state: client.WaiterState.FAILURE, reason };
|
|
995
1306
|
}
|
|
996
1307
|
}
|
|
997
1308
|
catch (e) { }
|
|
@@ -999,38 +1310,46 @@ const checkState = async (client, input) => {
|
|
|
999
1310
|
catch (exception) {
|
|
1000
1311
|
reason = exception;
|
|
1001
1312
|
if (exception.name === "ResourceNotFoundException") {
|
|
1002
|
-
return { state:
|
|
1313
|
+
return { state: client.WaiterState.SUCCESS, reason };
|
|
1003
1314
|
}
|
|
1004
1315
|
}
|
|
1005
|
-
return { state:
|
|
1316
|
+
return { state: client.WaiterState.RETRY, reason };
|
|
1006
1317
|
};
|
|
1007
1318
|
const waitForResponderGatewayDeleted = async (params, input) => {
|
|
1008
1319
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
1009
|
-
return
|
|
1320
|
+
return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
1010
1321
|
};
|
|
1011
1322
|
const waitUntilResponderGatewayDeleted = async (params, input) => {
|
|
1012
1323
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
1013
|
-
const result = await
|
|
1014
|
-
return
|
|
1324
|
+
const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
1325
|
+
return client.checkExceptions(result);
|
|
1015
1326
|
};
|
|
1016
1327
|
|
|
1017
1328
|
const commands = {
|
|
1018
1329
|
AcceptLinkCommand,
|
|
1330
|
+
AssociateCertificateCommand,
|
|
1019
1331
|
CreateInboundExternalLinkCommand,
|
|
1020
1332
|
CreateLinkCommand,
|
|
1333
|
+
CreateLinkRoutingRuleCommand,
|
|
1021
1334
|
CreateOutboundExternalLinkCommand,
|
|
1022
1335
|
CreateRequesterGatewayCommand,
|
|
1023
1336
|
CreateResponderGatewayCommand,
|
|
1024
1337
|
DeleteInboundExternalLinkCommand,
|
|
1025
1338
|
DeleteLinkCommand,
|
|
1339
|
+
DeleteLinkRoutingRuleCommand,
|
|
1026
1340
|
DeleteOutboundExternalLinkCommand,
|
|
1027
1341
|
DeleteRequesterGatewayCommand,
|
|
1028
1342
|
DeleteResponderGatewayCommand,
|
|
1343
|
+
DisassociateCertificateCommand,
|
|
1344
|
+
GetCertificateAssociationCommand,
|
|
1029
1345
|
GetInboundExternalLinkCommand,
|
|
1030
1346
|
GetLinkCommand,
|
|
1347
|
+
GetLinkRoutingRuleCommand,
|
|
1031
1348
|
GetOutboundExternalLinkCommand,
|
|
1032
1349
|
GetRequesterGatewayCommand,
|
|
1033
1350
|
GetResponderGatewayCommand,
|
|
1351
|
+
ListCertificateAssociationsCommand,
|
|
1352
|
+
ListLinkRoutingRulesCommand,
|
|
1034
1353
|
ListLinksCommand,
|
|
1035
1354
|
ListRequesterGatewaysCommand,
|
|
1036
1355
|
ListResponderGatewaysCommand,
|
|
@@ -1040,20 +1359,27 @@ const commands = {
|
|
|
1040
1359
|
UntagResourceCommand,
|
|
1041
1360
|
UpdateLinkCommand,
|
|
1042
1361
|
UpdateLinkModuleFlowCommand,
|
|
1362
|
+
UpdateLinkRoutingRuleCommand,
|
|
1043
1363
|
UpdateRequesterGatewayCommand,
|
|
1044
1364
|
UpdateResponderGatewayCommand,
|
|
1045
1365
|
};
|
|
1046
1366
|
const paginators = {
|
|
1367
|
+
paginateListCertificateAssociations,
|
|
1368
|
+
paginateListLinkRoutingRules,
|
|
1047
1369
|
paginateListLinks,
|
|
1048
1370
|
paginateListRequesterGateways,
|
|
1049
1371
|
paginateListResponderGateways,
|
|
1050
1372
|
};
|
|
1051
1373
|
const waiters = {
|
|
1374
|
+
waitUntilCertificateAssociated,
|
|
1375
|
+
waitUntilCertificateDisassociated,
|
|
1052
1376
|
waitUntilInboundExternalLinkActive,
|
|
1053
1377
|
waitUntilInboundExternalLinkDeleted,
|
|
1054
1378
|
waitUntilLinkAccepted,
|
|
1055
1379
|
waitUntilLinkActive,
|
|
1056
1380
|
waitUntilLinkDeleted,
|
|
1381
|
+
waitUntilLinkRoutingRuleActive,
|
|
1382
|
+
waitUntilLinkRoutingRuleDeleted,
|
|
1057
1383
|
waitUntilOutboundExternalLinkActive,
|
|
1058
1384
|
waitUntilOutboundExternalLinkDeleted,
|
|
1059
1385
|
waitUntilRequesterGatewayActive,
|
|
@@ -1063,7 +1389,7 @@ const waiters = {
|
|
|
1063
1389
|
};
|
|
1064
1390
|
class RTBFabric extends RTBFabricClient {
|
|
1065
1391
|
}
|
|
1066
|
-
|
|
1392
|
+
client.createAggregatedClient(commands, RTBFabric, { paginators, waiters });
|
|
1067
1393
|
|
|
1068
1394
|
const ResponderErrorMaskingAction = {
|
|
1069
1395
|
NO_BID: "NO_BID",
|
|
@@ -1103,10 +1429,25 @@ const LinkStatus = {
|
|
|
1103
1429
|
REJECTED: "REJECTED",
|
|
1104
1430
|
REQUESTED: "REQUESTED",
|
|
1105
1431
|
};
|
|
1432
|
+
const CertificateAssociationStatus = {
|
|
1433
|
+
ASSOCIATED: "ASSOCIATED",
|
|
1434
|
+
DISASSOCIATED: "DISASSOCIATED",
|
|
1435
|
+
FAILED: "FAILED",
|
|
1436
|
+
PENDING_ASSOCIATION: "PENDING_ASSOCIATION",
|
|
1437
|
+
PENDING_DISASSOCIATION: "PENDING_DISASSOCIATION",
|
|
1438
|
+
};
|
|
1106
1439
|
const Protocol = {
|
|
1107
1440
|
HTTP: "HTTP",
|
|
1108
1441
|
HTTPS: "HTTPS",
|
|
1109
1442
|
};
|
|
1443
|
+
const RuleStatus = {
|
|
1444
|
+
ACTIVE: "ACTIVE",
|
|
1445
|
+
CREATION_IN_PROGRESS: "CREATION_IN_PROGRESS",
|
|
1446
|
+
DELETED: "DELETED",
|
|
1447
|
+
DELETION_IN_PROGRESS: "DELETION_IN_PROGRESS",
|
|
1448
|
+
FAILED: "FAILED",
|
|
1449
|
+
UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
|
|
1450
|
+
};
|
|
1110
1451
|
const RequesterGatewayStatus = {
|
|
1111
1452
|
ACTIVE: "ACTIVE",
|
|
1112
1453
|
DELETED: "DELETED",
|
|
@@ -1134,30 +1475,39 @@ const ResponderGatewayStatus = {
|
|
|
1134
1475
|
PENDING_UPDATE: "PENDING_UPDATE",
|
|
1135
1476
|
};
|
|
1136
1477
|
|
|
1137
|
-
exports.$Command =
|
|
1138
|
-
exports.__Client =
|
|
1478
|
+
exports.$Command = client.Command;
|
|
1479
|
+
exports.__Client = client.Client;
|
|
1139
1480
|
exports.RTBFabricServiceException = RTBFabricServiceException.RTBFabricServiceException;
|
|
1140
1481
|
exports.AcceptLinkCommand = AcceptLinkCommand;
|
|
1482
|
+
exports.AssociateCertificateCommand = AssociateCertificateCommand;
|
|
1483
|
+
exports.CertificateAssociationStatus = CertificateAssociationStatus;
|
|
1141
1484
|
exports.ConnectivityType = ConnectivityType;
|
|
1142
1485
|
exports.CreateInboundExternalLinkCommand = CreateInboundExternalLinkCommand;
|
|
1143
1486
|
exports.CreateLinkCommand = CreateLinkCommand;
|
|
1487
|
+
exports.CreateLinkRoutingRuleCommand = CreateLinkRoutingRuleCommand;
|
|
1144
1488
|
exports.CreateOutboundExternalLinkCommand = CreateOutboundExternalLinkCommand;
|
|
1145
1489
|
exports.CreateRequesterGatewayCommand = CreateRequesterGatewayCommand;
|
|
1146
1490
|
exports.CreateResponderGatewayCommand = CreateResponderGatewayCommand;
|
|
1147
1491
|
exports.DeleteInboundExternalLinkCommand = DeleteInboundExternalLinkCommand;
|
|
1148
1492
|
exports.DeleteLinkCommand = DeleteLinkCommand;
|
|
1493
|
+
exports.DeleteLinkRoutingRuleCommand = DeleteLinkRoutingRuleCommand;
|
|
1149
1494
|
exports.DeleteOutboundExternalLinkCommand = DeleteOutboundExternalLinkCommand;
|
|
1150
1495
|
exports.DeleteRequesterGatewayCommand = DeleteRequesterGatewayCommand;
|
|
1151
1496
|
exports.DeleteResponderGatewayCommand = DeleteResponderGatewayCommand;
|
|
1497
|
+
exports.DisassociateCertificateCommand = DisassociateCertificateCommand;
|
|
1152
1498
|
exports.FilterType = FilterType;
|
|
1153
1499
|
exports.GatewayType = GatewayType;
|
|
1500
|
+
exports.GetCertificateAssociationCommand = GetCertificateAssociationCommand;
|
|
1154
1501
|
exports.GetInboundExternalLinkCommand = GetInboundExternalLinkCommand;
|
|
1155
1502
|
exports.GetLinkCommand = GetLinkCommand;
|
|
1503
|
+
exports.GetLinkRoutingRuleCommand = GetLinkRoutingRuleCommand;
|
|
1156
1504
|
exports.GetOutboundExternalLinkCommand = GetOutboundExternalLinkCommand;
|
|
1157
1505
|
exports.GetRequesterGatewayCommand = GetRequesterGatewayCommand;
|
|
1158
1506
|
exports.GetResponderGatewayCommand = GetResponderGatewayCommand;
|
|
1159
1507
|
exports.LinkDirection = LinkDirection;
|
|
1160
1508
|
exports.LinkStatus = LinkStatus;
|
|
1509
|
+
exports.ListCertificateAssociationsCommand = ListCertificateAssociationsCommand;
|
|
1510
|
+
exports.ListLinkRoutingRulesCommand = ListLinkRoutingRulesCommand;
|
|
1161
1511
|
exports.ListLinksCommand = ListLinksCommand;
|
|
1162
1512
|
exports.ListRequesterGatewaysCommand = ListRequesterGatewaysCommand;
|
|
1163
1513
|
exports.ListResponderGatewaysCommand = ListResponderGatewaysCommand;
|
|
@@ -1170,31 +1520,43 @@ exports.RequesterGatewayStatus = RequesterGatewayStatus;
|
|
|
1170
1520
|
exports.ResponderErrorMaskingAction = ResponderErrorMaskingAction;
|
|
1171
1521
|
exports.ResponderErrorMaskingLoggingType = ResponderErrorMaskingLoggingType;
|
|
1172
1522
|
exports.ResponderGatewayStatus = ResponderGatewayStatus;
|
|
1523
|
+
exports.RuleStatus = RuleStatus;
|
|
1173
1524
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1174
1525
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1175
1526
|
exports.UpdateLinkCommand = UpdateLinkCommand;
|
|
1176
1527
|
exports.UpdateLinkModuleFlowCommand = UpdateLinkModuleFlowCommand;
|
|
1528
|
+
exports.UpdateLinkRoutingRuleCommand = UpdateLinkRoutingRuleCommand;
|
|
1177
1529
|
exports.UpdateRequesterGatewayCommand = UpdateRequesterGatewayCommand;
|
|
1178
1530
|
exports.UpdateResponderGatewayCommand = UpdateResponderGatewayCommand;
|
|
1531
|
+
exports.paginateListCertificateAssociations = paginateListCertificateAssociations;
|
|
1532
|
+
exports.paginateListLinkRoutingRules = paginateListLinkRoutingRules;
|
|
1179
1533
|
exports.paginateListLinks = paginateListLinks;
|
|
1180
1534
|
exports.paginateListRequesterGateways = paginateListRequesterGateways;
|
|
1181
1535
|
exports.paginateListResponderGateways = paginateListResponderGateways;
|
|
1536
|
+
exports.waitForCertificateAssociated = waitForCertificateAssociated;
|
|
1537
|
+
exports.waitForCertificateDisassociated = waitForCertificateDisassociated;
|
|
1182
1538
|
exports.waitForInboundExternalLinkActive = waitForInboundExternalLinkActive;
|
|
1183
1539
|
exports.waitForInboundExternalLinkDeleted = waitForInboundExternalLinkDeleted;
|
|
1184
1540
|
exports.waitForLinkAccepted = waitForLinkAccepted;
|
|
1185
1541
|
exports.waitForLinkActive = waitForLinkActive;
|
|
1186
1542
|
exports.waitForLinkDeleted = waitForLinkDeleted;
|
|
1543
|
+
exports.waitForLinkRoutingRuleActive = waitForLinkRoutingRuleActive;
|
|
1544
|
+
exports.waitForLinkRoutingRuleDeleted = waitForLinkRoutingRuleDeleted;
|
|
1187
1545
|
exports.waitForOutboundExternalLinkActive = waitForOutboundExternalLinkActive;
|
|
1188
1546
|
exports.waitForOutboundExternalLinkDeleted = waitForOutboundExternalLinkDeleted;
|
|
1189
1547
|
exports.waitForRequesterGatewayActive = waitForRequesterGatewayActive;
|
|
1190
1548
|
exports.waitForRequesterGatewayDeleted = waitForRequesterGatewayDeleted;
|
|
1191
1549
|
exports.waitForResponderGatewayActive = waitForResponderGatewayActive;
|
|
1192
1550
|
exports.waitForResponderGatewayDeleted = waitForResponderGatewayDeleted;
|
|
1551
|
+
exports.waitUntilCertificateAssociated = waitUntilCertificateAssociated;
|
|
1552
|
+
exports.waitUntilCertificateDisassociated = waitUntilCertificateDisassociated;
|
|
1193
1553
|
exports.waitUntilInboundExternalLinkActive = waitUntilInboundExternalLinkActive;
|
|
1194
1554
|
exports.waitUntilInboundExternalLinkDeleted = waitUntilInboundExternalLinkDeleted;
|
|
1195
1555
|
exports.waitUntilLinkAccepted = waitUntilLinkAccepted;
|
|
1196
1556
|
exports.waitUntilLinkActive = waitUntilLinkActive;
|
|
1197
1557
|
exports.waitUntilLinkDeleted = waitUntilLinkDeleted;
|
|
1558
|
+
exports.waitUntilLinkRoutingRuleActive = waitUntilLinkRoutingRuleActive;
|
|
1559
|
+
exports.waitUntilLinkRoutingRuleDeleted = waitUntilLinkRoutingRuleDeleted;
|
|
1198
1560
|
exports.waitUntilOutboundExternalLinkActive = waitUntilOutboundExternalLinkActive;
|
|
1199
1561
|
exports.waitUntilOutboundExternalLinkDeleted = waitUntilOutboundExternalLinkDeleted;
|
|
1200
1562
|
exports.waitUntilRequesterGatewayActive = waitUntilRequesterGatewayActive;
|