@aws-sdk/client-quicksight 3.511.0 → 3.514.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/auth/httpAuthExtensionConfiguration.js +1 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/index.js +305 -247
- package/dist-cjs/runtimeConfig.shared.js +10 -0
- package/dist-es/QuickSightClient.js +17 -4
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/runtimeConfig.shared.js +10 -0
- package/dist-es/runtimeExtensions.js +3 -0
- package/dist-types/QuickSightClient.d.ts +13 -11
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/extensionConfiguration.d.ts +2 -1
- package/dist-types/runtimeConfig.browser.d.ts +6 -6
- package/dist-types/runtimeConfig.d.ts +4 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -4
- package/dist-types/runtimeConfig.shared.d.ts +2 -0
- package/dist-types/ts3.4/QuickSightClient.d.ts +11 -9
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -8
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -0
- package/package.json +7 -7
package/dist-cjs/index.js
CHANGED
|
@@ -749,13 +749,14 @@ module.exports = __toCommonJS(src_exports);
|
|
|
749
749
|
var import_middleware_host_header = require("@aws-sdk/middleware-host-header");
|
|
750
750
|
var import_middleware_logger = require("@aws-sdk/middleware-logger");
|
|
751
751
|
var import_middleware_recursion_detection = require("@aws-sdk/middleware-recursion-detection");
|
|
752
|
-
var import_middleware_signing = require("@aws-sdk/middleware-signing");
|
|
753
752
|
var import_middleware_user_agent = require("@aws-sdk/middleware-user-agent");
|
|
754
753
|
var import_config_resolver = require("@smithy/config-resolver");
|
|
754
|
+
var import_core = require("@smithy/core");
|
|
755
755
|
var import_middleware_content_length = require("@smithy/middleware-content-length");
|
|
756
756
|
var import_middleware_endpoint = require("@smithy/middleware-endpoint");
|
|
757
757
|
var import_middleware_retry = require("@smithy/middleware-retry");
|
|
758
758
|
|
|
759
|
+
var import_httpAuthSchemeProvider = require("./auth/httpAuthSchemeProvider");
|
|
759
760
|
|
|
760
761
|
// src/endpoint/EndpointParameters.ts
|
|
761
762
|
var resolveClientEndpointParameters = /* @__PURE__ */ __name((options) => {
|
|
@@ -780,19 +781,62 @@ var import_runtimeConfig = require("././runtimeConfig");
|
|
|
780
781
|
var import_region_config_resolver = require("@aws-sdk/region-config-resolver");
|
|
781
782
|
var import_protocol_http = require("@smithy/protocol-http");
|
|
782
783
|
var import_smithy_client = require("@smithy/smithy-client");
|
|
784
|
+
|
|
785
|
+
// src/auth/httpAuthExtensionConfiguration.ts
|
|
786
|
+
var getHttpAuthExtensionConfiguration = /* @__PURE__ */ __name((runtimeConfig) => {
|
|
787
|
+
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
788
|
+
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
789
|
+
let _credentials = runtimeConfig.credentials;
|
|
790
|
+
return {
|
|
791
|
+
setHttpAuthScheme(httpAuthScheme) {
|
|
792
|
+
const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);
|
|
793
|
+
if (index === -1) {
|
|
794
|
+
_httpAuthSchemes.push(httpAuthScheme);
|
|
795
|
+
} else {
|
|
796
|
+
_httpAuthSchemes.splice(index, 1, httpAuthScheme);
|
|
797
|
+
}
|
|
798
|
+
},
|
|
799
|
+
httpAuthSchemes() {
|
|
800
|
+
return _httpAuthSchemes;
|
|
801
|
+
},
|
|
802
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider) {
|
|
803
|
+
_httpAuthSchemeProvider = httpAuthSchemeProvider;
|
|
804
|
+
},
|
|
805
|
+
httpAuthSchemeProvider() {
|
|
806
|
+
return _httpAuthSchemeProvider;
|
|
807
|
+
},
|
|
808
|
+
setCredentials(credentials) {
|
|
809
|
+
_credentials = credentials;
|
|
810
|
+
},
|
|
811
|
+
credentials() {
|
|
812
|
+
return _credentials;
|
|
813
|
+
}
|
|
814
|
+
};
|
|
815
|
+
}, "getHttpAuthExtensionConfiguration");
|
|
816
|
+
var resolveHttpAuthRuntimeConfig = /* @__PURE__ */ __name((config) => {
|
|
817
|
+
return {
|
|
818
|
+
httpAuthSchemes: config.httpAuthSchemes(),
|
|
819
|
+
httpAuthSchemeProvider: config.httpAuthSchemeProvider(),
|
|
820
|
+
credentials: config.credentials()
|
|
821
|
+
};
|
|
822
|
+
}, "resolveHttpAuthRuntimeConfig");
|
|
823
|
+
|
|
824
|
+
// src/runtimeExtensions.ts
|
|
783
825
|
var asPartial = /* @__PURE__ */ __name((t) => t, "asPartial");
|
|
784
826
|
var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions) => {
|
|
785
827
|
const extensionConfiguration = {
|
|
786
828
|
...asPartial((0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig)),
|
|
787
829
|
...asPartial((0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig)),
|
|
788
|
-
...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig))
|
|
830
|
+
...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig)),
|
|
831
|
+
...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig))
|
|
789
832
|
};
|
|
790
833
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
791
834
|
return {
|
|
792
835
|
...runtimeConfig,
|
|
793
836
|
...(0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
|
|
794
837
|
...(0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
|
|
795
|
-
...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration)
|
|
838
|
+
...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
|
|
839
|
+
...resolveHttpAuthRuntimeConfig(extensionConfiguration)
|
|
796
840
|
};
|
|
797
841
|
}, "resolveRuntimeExtensions");
|
|
798
842
|
|
|
@@ -805,8 +849,8 @@ var _QuickSightClient = class _QuickSightClient extends import_smithy_client.Cli
|
|
|
805
849
|
const _config_3 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_2);
|
|
806
850
|
const _config_4 = (0, import_middleware_retry.resolveRetryConfig)(_config_3);
|
|
807
851
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
808
|
-
const _config_6 = (0,
|
|
809
|
-
const _config_7 = (0,
|
|
852
|
+
const _config_6 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_5);
|
|
853
|
+
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
810
854
|
const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
|
|
811
855
|
super(_config_8);
|
|
812
856
|
this.config = _config_8;
|
|
@@ -815,8 +859,14 @@ var _QuickSightClient = class _QuickSightClient extends import_smithy_client.Cli
|
|
|
815
859
|
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
816
860
|
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
817
861
|
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
818
|
-
this.middlewareStack.use((0, import_middleware_signing.getAwsAuthPlugin)(this.config));
|
|
819
862
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
863
|
+
this.middlewareStack.use(
|
|
864
|
+
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
865
|
+
httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
|
|
866
|
+
identityProviderConfigProvider: this.getIdentityProviderConfigProvider()
|
|
867
|
+
})
|
|
868
|
+
);
|
|
869
|
+
this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
|
|
820
870
|
}
|
|
821
871
|
/**
|
|
822
872
|
* Destroy underlying resources, like sockets. It's usually not necessary to do this.
|
|
@@ -826,6 +876,14 @@ var _QuickSightClient = class _QuickSightClient extends import_smithy_client.Cli
|
|
|
826
876
|
destroy() {
|
|
827
877
|
super.destroy();
|
|
828
878
|
}
|
|
879
|
+
getDefaultHttpAuthSchemeParametersProvider() {
|
|
880
|
+
return import_httpAuthSchemeProvider.defaultQuickSightHttpAuthSchemeParametersProvider;
|
|
881
|
+
}
|
|
882
|
+
getIdentityProviderConfigProvider() {
|
|
883
|
+
return async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
884
|
+
"aws.auth#sigv4": config.credentials
|
|
885
|
+
});
|
|
886
|
+
}
|
|
829
887
|
};
|
|
830
888
|
__name(_QuickSightClient, "QuickSightClient");
|
|
831
889
|
var QuickSightClient = _QuickSightClient;
|
|
@@ -840,8 +898,8 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
840
898
|
var import_types = require("@smithy/types");
|
|
841
899
|
|
|
842
900
|
// src/protocols/Aws_restJson1.ts
|
|
843
|
-
var
|
|
844
|
-
|
|
901
|
+
var import_core2 = require("@aws-sdk/core");
|
|
902
|
+
|
|
845
903
|
|
|
846
904
|
|
|
847
905
|
// src/models/models_0.ts
|
|
@@ -3021,7 +3079,7 @@ var GetSessionEmbedUrlResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj)
|
|
|
3021
3079
|
|
|
3022
3080
|
// src/protocols/Aws_restJson1.ts
|
|
3023
3081
|
var se_CancelIngestionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3024
|
-
const b = (0,
|
|
3082
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3025
3083
|
const headers = {};
|
|
3026
3084
|
b.bp("/accounts/{AwsAccountId}/data-sets/{DataSetId}/ingestions/{IngestionId}");
|
|
3027
3085
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3032,7 +3090,7 @@ var se_CancelIngestionCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
3032
3090
|
return b.build();
|
|
3033
3091
|
}, "se_CancelIngestionCommand");
|
|
3034
3092
|
var se_CreateAccountCustomizationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3035
|
-
const b = (0,
|
|
3093
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3036
3094
|
const headers = {
|
|
3037
3095
|
"content-type": "application/json"
|
|
3038
3096
|
};
|
|
@@ -3052,7 +3110,7 @@ var se_CreateAccountCustomizationCommand = /* @__PURE__ */ __name(async (input,
|
|
|
3052
3110
|
return b.build();
|
|
3053
3111
|
}, "se_CreateAccountCustomizationCommand");
|
|
3054
3112
|
var se_CreateAccountSubscriptionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3055
|
-
const b = (0,
|
|
3113
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3056
3114
|
const headers = {
|
|
3057
3115
|
"content-type": "application/json"
|
|
3058
3116
|
};
|
|
@@ -3081,7 +3139,7 @@ var se_CreateAccountSubscriptionCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
3081
3139
|
return b.build();
|
|
3082
3140
|
}, "se_CreateAccountSubscriptionCommand");
|
|
3083
3141
|
var se_CreateAnalysisCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3084
|
-
const b = (0,
|
|
3142
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3085
3143
|
const headers = {
|
|
3086
3144
|
"content-type": "application/json"
|
|
3087
3145
|
};
|
|
@@ -3106,7 +3164,7 @@ var se_CreateAnalysisCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
3106
3164
|
return b.build();
|
|
3107
3165
|
}, "se_CreateAnalysisCommand");
|
|
3108
3166
|
var se_CreateDashboardCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3109
|
-
const b = (0,
|
|
3167
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3110
3168
|
const headers = {
|
|
3111
3169
|
"content-type": "application/json"
|
|
3112
3170
|
};
|
|
@@ -3135,7 +3193,7 @@ var se_CreateDashboardCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
3135
3193
|
return b.build();
|
|
3136
3194
|
}, "se_CreateDashboardCommand");
|
|
3137
3195
|
var se_CreateDataSetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3138
|
-
const b = (0,
|
|
3196
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3139
3197
|
const headers = {
|
|
3140
3198
|
"content-type": "application/json"
|
|
3141
3199
|
};
|
|
@@ -3165,7 +3223,7 @@ var se_CreateDataSetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3165
3223
|
return b.build();
|
|
3166
3224
|
}, "se_CreateDataSetCommand");
|
|
3167
3225
|
var se_CreateDataSourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3168
|
-
const b = (0,
|
|
3226
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3169
3227
|
const headers = {
|
|
3170
3228
|
"content-type": "application/json"
|
|
3171
3229
|
};
|
|
@@ -3190,7 +3248,7 @@ var se_CreateDataSourceCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
3190
3248
|
return b.build();
|
|
3191
3249
|
}, "se_CreateDataSourceCommand");
|
|
3192
3250
|
var se_CreateFolderCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3193
|
-
const b = (0,
|
|
3251
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3194
3252
|
const headers = {
|
|
3195
3253
|
"content-type": "application/json"
|
|
3196
3254
|
};
|
|
@@ -3212,7 +3270,7 @@ var se_CreateFolderCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3212
3270
|
return b.build();
|
|
3213
3271
|
}, "se_CreateFolderCommand");
|
|
3214
3272
|
var se_CreateFolderMembershipCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3215
|
-
const b = (0,
|
|
3273
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3216
3274
|
const headers = {};
|
|
3217
3275
|
b.bp("/accounts/{AwsAccountId}/folders/{FolderId}/members/{MemberType}/{MemberId}");
|
|
3218
3276
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3224,7 +3282,7 @@ var se_CreateFolderMembershipCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
3224
3282
|
return b.build();
|
|
3225
3283
|
}, "se_CreateFolderMembershipCommand");
|
|
3226
3284
|
var se_CreateGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3227
|
-
const b = (0,
|
|
3285
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3228
3286
|
const headers = {
|
|
3229
3287
|
"content-type": "application/json"
|
|
3230
3288
|
};
|
|
@@ -3242,7 +3300,7 @@ var se_CreateGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3242
3300
|
return b.build();
|
|
3243
3301
|
}, "se_CreateGroupCommand");
|
|
3244
3302
|
var se_CreateGroupMembershipCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3245
|
-
const b = (0,
|
|
3303
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3246
3304
|
const headers = {};
|
|
3247
3305
|
b.bp("/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}/members/{MemberName}");
|
|
3248
3306
|
b.p("MemberName", () => input.MemberName, "{MemberName}", false);
|
|
@@ -3254,7 +3312,7 @@ var se_CreateGroupMembershipCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
3254
3312
|
return b.build();
|
|
3255
3313
|
}, "se_CreateGroupMembershipCommand");
|
|
3256
3314
|
var se_CreateIAMPolicyAssignmentCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3257
|
-
const b = (0,
|
|
3315
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3258
3316
|
const headers = {
|
|
3259
3317
|
"content-type": "application/json"
|
|
3260
3318
|
};
|
|
@@ -3274,7 +3332,7 @@ var se_CreateIAMPolicyAssignmentCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
3274
3332
|
return b.build();
|
|
3275
3333
|
}, "se_CreateIAMPolicyAssignmentCommand");
|
|
3276
3334
|
var se_CreateIngestionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3277
|
-
const b = (0,
|
|
3335
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3278
3336
|
const headers = {
|
|
3279
3337
|
"content-type": "application/json"
|
|
3280
3338
|
};
|
|
@@ -3292,7 +3350,7 @@ var se_CreateIngestionCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
3292
3350
|
return b.build();
|
|
3293
3351
|
}, "se_CreateIngestionCommand");
|
|
3294
3352
|
var se_CreateNamespaceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3295
|
-
const b = (0,
|
|
3353
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3296
3354
|
const headers = {
|
|
3297
3355
|
"content-type": "application/json"
|
|
3298
3356
|
};
|
|
@@ -3310,7 +3368,7 @@ var se_CreateNamespaceCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
3310
3368
|
return b.build();
|
|
3311
3369
|
}, "se_CreateNamespaceCommand");
|
|
3312
3370
|
var se_CreateRefreshScheduleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3313
|
-
const b = (0,
|
|
3371
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3314
3372
|
const headers = {
|
|
3315
3373
|
"content-type": "application/json"
|
|
3316
3374
|
};
|
|
@@ -3327,7 +3385,7 @@ var se_CreateRefreshScheduleCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
3327
3385
|
return b.build();
|
|
3328
3386
|
}, "se_CreateRefreshScheduleCommand");
|
|
3329
3387
|
var se_CreateRoleMembershipCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3330
|
-
const b = (0,
|
|
3388
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3331
3389
|
const headers = {};
|
|
3332
3390
|
b.bp("/accounts/{AwsAccountId}/namespaces/{Namespace}/roles/{Role}/members/{MemberName}");
|
|
3333
3391
|
b.p("MemberName", () => input.MemberName, "{MemberName}", false);
|
|
@@ -3339,7 +3397,7 @@ var se_CreateRoleMembershipCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
3339
3397
|
return b.build();
|
|
3340
3398
|
}, "se_CreateRoleMembershipCommand");
|
|
3341
3399
|
var se_CreateTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3342
|
-
const b = (0,
|
|
3400
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3343
3401
|
const headers = {
|
|
3344
3402
|
"content-type": "application/json"
|
|
3345
3403
|
};
|
|
@@ -3362,7 +3420,7 @@ var se_CreateTemplateCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
3362
3420
|
return b.build();
|
|
3363
3421
|
}, "se_CreateTemplateCommand");
|
|
3364
3422
|
var se_CreateTemplateAliasCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3365
|
-
const b = (0,
|
|
3423
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3366
3424
|
const headers = {
|
|
3367
3425
|
"content-type": "application/json"
|
|
3368
3426
|
};
|
|
@@ -3380,7 +3438,7 @@ var se_CreateTemplateAliasCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
3380
3438
|
return b.build();
|
|
3381
3439
|
}, "se_CreateTemplateAliasCommand");
|
|
3382
3440
|
var se_CreateThemeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3383
|
-
const b = (0,
|
|
3441
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3384
3442
|
const headers = {
|
|
3385
3443
|
"content-type": "application/json"
|
|
3386
3444
|
};
|
|
@@ -3402,7 +3460,7 @@ var se_CreateThemeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3402
3460
|
return b.build();
|
|
3403
3461
|
}, "se_CreateThemeCommand");
|
|
3404
3462
|
var se_CreateThemeAliasCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3405
|
-
const b = (0,
|
|
3463
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3406
3464
|
const headers = {
|
|
3407
3465
|
"content-type": "application/json"
|
|
3408
3466
|
};
|
|
@@ -3420,7 +3478,7 @@ var se_CreateThemeAliasCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
3420
3478
|
return b.build();
|
|
3421
3479
|
}, "se_CreateThemeAliasCommand");
|
|
3422
3480
|
var se_CreateTopicCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3423
|
-
const b = (0,
|
|
3481
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3424
3482
|
const headers = {
|
|
3425
3483
|
"content-type": "application/json"
|
|
3426
3484
|
};
|
|
@@ -3438,7 +3496,7 @@ var se_CreateTopicCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3438
3496
|
return b.build();
|
|
3439
3497
|
}, "se_CreateTopicCommand");
|
|
3440
3498
|
var se_CreateTopicRefreshScheduleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3441
|
-
const b = (0,
|
|
3499
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3442
3500
|
const headers = {
|
|
3443
3501
|
"content-type": "application/json"
|
|
3444
3502
|
};
|
|
@@ -3457,7 +3515,7 @@ var se_CreateTopicRefreshScheduleCommand = /* @__PURE__ */ __name(async (input,
|
|
|
3457
3515
|
return b.build();
|
|
3458
3516
|
}, "se_CreateTopicRefreshScheduleCommand");
|
|
3459
3517
|
var se_CreateVPCConnectionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3460
|
-
const b = (0,
|
|
3518
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3461
3519
|
const headers = {
|
|
3462
3520
|
"content-type": "application/json"
|
|
3463
3521
|
};
|
|
@@ -3479,7 +3537,7 @@ var se_CreateVPCConnectionCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
3479
3537
|
return b.build();
|
|
3480
3538
|
}, "se_CreateVPCConnectionCommand");
|
|
3481
3539
|
var se_DeleteAccountCustomizationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3482
|
-
const b = (0,
|
|
3540
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3483
3541
|
const headers = {};
|
|
3484
3542
|
b.bp("/accounts/{AwsAccountId}/customizations");
|
|
3485
3543
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3491,7 +3549,7 @@ var se_DeleteAccountCustomizationCommand = /* @__PURE__ */ __name(async (input,
|
|
|
3491
3549
|
return b.build();
|
|
3492
3550
|
}, "se_DeleteAccountCustomizationCommand");
|
|
3493
3551
|
var se_DeleteAccountSubscriptionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3494
|
-
const b = (0,
|
|
3552
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3495
3553
|
const headers = {};
|
|
3496
3554
|
b.bp("/account/{AwsAccountId}");
|
|
3497
3555
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3500,7 +3558,7 @@ var se_DeleteAccountSubscriptionCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
3500
3558
|
return b.build();
|
|
3501
3559
|
}, "se_DeleteAccountSubscriptionCommand");
|
|
3502
3560
|
var se_DeleteAnalysisCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3503
|
-
const b = (0,
|
|
3561
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3504
3562
|
const headers = {};
|
|
3505
3563
|
b.bp("/accounts/{AwsAccountId}/analyses/{AnalysisId}");
|
|
3506
3564
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3514,7 +3572,7 @@ var se_DeleteAnalysisCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
3514
3572
|
return b.build();
|
|
3515
3573
|
}, "se_DeleteAnalysisCommand");
|
|
3516
3574
|
var se_DeleteDashboardCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3517
|
-
const b = (0,
|
|
3575
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3518
3576
|
const headers = {};
|
|
3519
3577
|
b.bp("/accounts/{AwsAccountId}/dashboards/{DashboardId}");
|
|
3520
3578
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3527,7 +3585,7 @@ var se_DeleteDashboardCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
3527
3585
|
return b.build();
|
|
3528
3586
|
}, "se_DeleteDashboardCommand");
|
|
3529
3587
|
var se_DeleteDataSetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3530
|
-
const b = (0,
|
|
3588
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3531
3589
|
const headers = {};
|
|
3532
3590
|
b.bp("/accounts/{AwsAccountId}/data-sets/{DataSetId}");
|
|
3533
3591
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3537,7 +3595,7 @@ var se_DeleteDataSetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3537
3595
|
return b.build();
|
|
3538
3596
|
}, "se_DeleteDataSetCommand");
|
|
3539
3597
|
var se_DeleteDataSetRefreshPropertiesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3540
|
-
const b = (0,
|
|
3598
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3541
3599
|
const headers = {};
|
|
3542
3600
|
b.bp("/accounts/{AwsAccountId}/data-sets/{DataSetId}/refresh-properties");
|
|
3543
3601
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3547,7 +3605,7 @@ var se_DeleteDataSetRefreshPropertiesCommand = /* @__PURE__ */ __name(async (inp
|
|
|
3547
3605
|
return b.build();
|
|
3548
3606
|
}, "se_DeleteDataSetRefreshPropertiesCommand");
|
|
3549
3607
|
var se_DeleteDataSourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3550
|
-
const b = (0,
|
|
3608
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3551
3609
|
const headers = {};
|
|
3552
3610
|
b.bp("/accounts/{AwsAccountId}/data-sources/{DataSourceId}");
|
|
3553
3611
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3557,7 +3615,7 @@ var se_DeleteDataSourceCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
3557
3615
|
return b.build();
|
|
3558
3616
|
}, "se_DeleteDataSourceCommand");
|
|
3559
3617
|
var se_DeleteFolderCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3560
|
-
const b = (0,
|
|
3618
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3561
3619
|
const headers = {};
|
|
3562
3620
|
b.bp("/accounts/{AwsAccountId}/folders/{FolderId}");
|
|
3563
3621
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3567,7 +3625,7 @@ var se_DeleteFolderCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3567
3625
|
return b.build();
|
|
3568
3626
|
}, "se_DeleteFolderCommand");
|
|
3569
3627
|
var se_DeleteFolderMembershipCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3570
|
-
const b = (0,
|
|
3628
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3571
3629
|
const headers = {};
|
|
3572
3630
|
b.bp("/accounts/{AwsAccountId}/folders/{FolderId}/members/{MemberType}/{MemberId}");
|
|
3573
3631
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3579,7 +3637,7 @@ var se_DeleteFolderMembershipCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
3579
3637
|
return b.build();
|
|
3580
3638
|
}, "se_DeleteFolderMembershipCommand");
|
|
3581
3639
|
var se_DeleteGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3582
|
-
const b = (0,
|
|
3640
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3583
3641
|
const headers = {};
|
|
3584
3642
|
b.bp("/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}");
|
|
3585
3643
|
b.p("GroupName", () => input.GroupName, "{GroupName}", false);
|
|
@@ -3590,7 +3648,7 @@ var se_DeleteGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3590
3648
|
return b.build();
|
|
3591
3649
|
}, "se_DeleteGroupCommand");
|
|
3592
3650
|
var se_DeleteGroupMembershipCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3593
|
-
const b = (0,
|
|
3651
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3594
3652
|
const headers = {};
|
|
3595
3653
|
b.bp("/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}/members/{MemberName}");
|
|
3596
3654
|
b.p("MemberName", () => input.MemberName, "{MemberName}", false);
|
|
@@ -3602,7 +3660,7 @@ var se_DeleteGroupMembershipCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
3602
3660
|
return b.build();
|
|
3603
3661
|
}, "se_DeleteGroupMembershipCommand");
|
|
3604
3662
|
var se_DeleteIAMPolicyAssignmentCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3605
|
-
const b = (0,
|
|
3663
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3606
3664
|
const headers = {};
|
|
3607
3665
|
b.bp("/accounts/{AwsAccountId}/namespace/{Namespace}/iam-policy-assignments/{AssignmentName}");
|
|
3608
3666
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3613,7 +3671,7 @@ var se_DeleteIAMPolicyAssignmentCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
3613
3671
|
return b.build();
|
|
3614
3672
|
}, "se_DeleteIAMPolicyAssignmentCommand");
|
|
3615
3673
|
var se_DeleteIdentityPropagationConfigCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3616
|
-
const b = (0,
|
|
3674
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3617
3675
|
const headers = {};
|
|
3618
3676
|
b.bp("/accounts/{AwsAccountId}/identity-propagation-config/{Service}");
|
|
3619
3677
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3623,7 +3681,7 @@ var se_DeleteIdentityPropagationConfigCommand = /* @__PURE__ */ __name(async (in
|
|
|
3623
3681
|
return b.build();
|
|
3624
3682
|
}, "se_DeleteIdentityPropagationConfigCommand");
|
|
3625
3683
|
var se_DeleteNamespaceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3626
|
-
const b = (0,
|
|
3684
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3627
3685
|
const headers = {};
|
|
3628
3686
|
b.bp("/accounts/{AwsAccountId}/namespaces/{Namespace}");
|
|
3629
3687
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3633,7 +3691,7 @@ var se_DeleteNamespaceCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
3633
3691
|
return b.build();
|
|
3634
3692
|
}, "se_DeleteNamespaceCommand");
|
|
3635
3693
|
var se_DeleteRefreshScheduleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3636
|
-
const b = (0,
|
|
3694
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3637
3695
|
const headers = {};
|
|
3638
3696
|
b.bp("/accounts/{AwsAccountId}/data-sets/{DataSetId}/refresh-schedules/{ScheduleId}");
|
|
3639
3697
|
b.p("DataSetId", () => input.DataSetId, "{DataSetId}", false);
|
|
@@ -3644,7 +3702,7 @@ var se_DeleteRefreshScheduleCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
3644
3702
|
return b.build();
|
|
3645
3703
|
}, "se_DeleteRefreshScheduleCommand");
|
|
3646
3704
|
var se_DeleteRoleCustomPermissionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3647
|
-
const b = (0,
|
|
3705
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3648
3706
|
const headers = {};
|
|
3649
3707
|
b.bp("/accounts/{AwsAccountId}/namespaces/{Namespace}/roles/{Role}/custom-permission");
|
|
3650
3708
|
b.p("Role", () => input.Role, "{Role}", false);
|
|
@@ -3655,7 +3713,7 @@ var se_DeleteRoleCustomPermissionCommand = /* @__PURE__ */ __name(async (input,
|
|
|
3655
3713
|
return b.build();
|
|
3656
3714
|
}, "se_DeleteRoleCustomPermissionCommand");
|
|
3657
3715
|
var se_DeleteRoleMembershipCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3658
|
-
const b = (0,
|
|
3716
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3659
3717
|
const headers = {};
|
|
3660
3718
|
b.bp("/accounts/{AwsAccountId}/namespaces/{Namespace}/roles/{Role}/members/{MemberName}");
|
|
3661
3719
|
b.p("MemberName", () => input.MemberName, "{MemberName}", false);
|
|
@@ -3667,7 +3725,7 @@ var se_DeleteRoleMembershipCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
3667
3725
|
return b.build();
|
|
3668
3726
|
}, "se_DeleteRoleMembershipCommand");
|
|
3669
3727
|
var se_DeleteTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3670
|
-
const b = (0,
|
|
3728
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3671
3729
|
const headers = {};
|
|
3672
3730
|
b.bp("/accounts/{AwsAccountId}/templates/{TemplateId}");
|
|
3673
3731
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3680,7 +3738,7 @@ var se_DeleteTemplateCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
3680
3738
|
return b.build();
|
|
3681
3739
|
}, "se_DeleteTemplateCommand");
|
|
3682
3740
|
var se_DeleteTemplateAliasCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3683
|
-
const b = (0,
|
|
3741
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3684
3742
|
const headers = {};
|
|
3685
3743
|
b.bp("/accounts/{AwsAccountId}/templates/{TemplateId}/aliases/{AliasName}");
|
|
3686
3744
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3691,7 +3749,7 @@ var se_DeleteTemplateAliasCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
3691
3749
|
return b.build();
|
|
3692
3750
|
}, "se_DeleteTemplateAliasCommand");
|
|
3693
3751
|
var se_DeleteThemeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3694
|
-
const b = (0,
|
|
3752
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3695
3753
|
const headers = {};
|
|
3696
3754
|
b.bp("/accounts/{AwsAccountId}/themes/{ThemeId}");
|
|
3697
3755
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3704,7 +3762,7 @@ var se_DeleteThemeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3704
3762
|
return b.build();
|
|
3705
3763
|
}, "se_DeleteThemeCommand");
|
|
3706
3764
|
var se_DeleteThemeAliasCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3707
|
-
const b = (0,
|
|
3765
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3708
3766
|
const headers = {};
|
|
3709
3767
|
b.bp("/accounts/{AwsAccountId}/themes/{ThemeId}/aliases/{AliasName}");
|
|
3710
3768
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3715,7 +3773,7 @@ var se_DeleteThemeAliasCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
3715
3773
|
return b.build();
|
|
3716
3774
|
}, "se_DeleteThemeAliasCommand");
|
|
3717
3775
|
var se_DeleteTopicCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3718
|
-
const b = (0,
|
|
3776
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3719
3777
|
const headers = {};
|
|
3720
3778
|
b.bp("/accounts/{AwsAccountId}/topics/{TopicId}");
|
|
3721
3779
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3725,7 +3783,7 @@ var se_DeleteTopicCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3725
3783
|
return b.build();
|
|
3726
3784
|
}, "se_DeleteTopicCommand");
|
|
3727
3785
|
var se_DeleteTopicRefreshScheduleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3728
|
-
const b = (0,
|
|
3786
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3729
3787
|
const headers = {};
|
|
3730
3788
|
b.bp("/accounts/{AwsAccountId}/topics/{TopicId}/schedules/{DatasetId}");
|
|
3731
3789
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3736,7 +3794,7 @@ var se_DeleteTopicRefreshScheduleCommand = /* @__PURE__ */ __name(async (input,
|
|
|
3736
3794
|
return b.build();
|
|
3737
3795
|
}, "se_DeleteTopicRefreshScheduleCommand");
|
|
3738
3796
|
var se_DeleteUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3739
|
-
const b = (0,
|
|
3797
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3740
3798
|
const headers = {};
|
|
3741
3799
|
b.bp("/accounts/{AwsAccountId}/namespaces/{Namespace}/users/{UserName}");
|
|
3742
3800
|
b.p("UserName", () => input.UserName, "{UserName}", false);
|
|
@@ -3747,7 +3805,7 @@ var se_DeleteUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3747
3805
|
return b.build();
|
|
3748
3806
|
}, "se_DeleteUserCommand");
|
|
3749
3807
|
var se_DeleteUserByPrincipalIdCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3750
|
-
const b = (0,
|
|
3808
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3751
3809
|
const headers = {};
|
|
3752
3810
|
b.bp("/accounts/{AwsAccountId}/namespaces/{Namespace}/user-principals/{PrincipalId}");
|
|
3753
3811
|
b.p("PrincipalId", () => input.PrincipalId, "{PrincipalId}", false);
|
|
@@ -3758,7 +3816,7 @@ var se_DeleteUserByPrincipalIdCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
3758
3816
|
return b.build();
|
|
3759
3817
|
}, "se_DeleteUserByPrincipalIdCommand");
|
|
3760
3818
|
var se_DeleteVPCConnectionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3761
|
-
const b = (0,
|
|
3819
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3762
3820
|
const headers = {};
|
|
3763
3821
|
b.bp("/accounts/{AwsAccountId}/vpc-connections/{VPCConnectionId}");
|
|
3764
3822
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3768,7 +3826,7 @@ var se_DeleteVPCConnectionCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
3768
3826
|
return b.build();
|
|
3769
3827
|
}, "se_DeleteVPCConnectionCommand");
|
|
3770
3828
|
var se_DescribeAccountCustomizationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3771
|
-
const b = (0,
|
|
3829
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3772
3830
|
const headers = {};
|
|
3773
3831
|
b.bp("/accounts/{AwsAccountId}/customizations");
|
|
3774
3832
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3781,7 +3839,7 @@ var se_DescribeAccountCustomizationCommand = /* @__PURE__ */ __name(async (input
|
|
|
3781
3839
|
return b.build();
|
|
3782
3840
|
}, "se_DescribeAccountCustomizationCommand");
|
|
3783
3841
|
var se_DescribeAccountSettingsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3784
|
-
const b = (0,
|
|
3842
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3785
3843
|
const headers = {};
|
|
3786
3844
|
b.bp("/accounts/{AwsAccountId}/settings");
|
|
3787
3845
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3790,7 +3848,7 @@ var se_DescribeAccountSettingsCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
3790
3848
|
return b.build();
|
|
3791
3849
|
}, "se_DescribeAccountSettingsCommand");
|
|
3792
3850
|
var se_DescribeAccountSubscriptionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3793
|
-
const b = (0,
|
|
3851
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3794
3852
|
const headers = {};
|
|
3795
3853
|
b.bp("/account/{AwsAccountId}");
|
|
3796
3854
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3799,7 +3857,7 @@ var se_DescribeAccountSubscriptionCommand = /* @__PURE__ */ __name(async (input,
|
|
|
3799
3857
|
return b.build();
|
|
3800
3858
|
}, "se_DescribeAccountSubscriptionCommand");
|
|
3801
3859
|
var se_DescribeAnalysisCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3802
|
-
const b = (0,
|
|
3860
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3803
3861
|
const headers = {};
|
|
3804
3862
|
b.bp("/accounts/{AwsAccountId}/analyses/{AnalysisId}");
|
|
3805
3863
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3809,7 +3867,7 @@ var se_DescribeAnalysisCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
3809
3867
|
return b.build();
|
|
3810
3868
|
}, "se_DescribeAnalysisCommand");
|
|
3811
3869
|
var se_DescribeAnalysisDefinitionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3812
|
-
const b = (0,
|
|
3870
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3813
3871
|
const headers = {};
|
|
3814
3872
|
b.bp("/accounts/{AwsAccountId}/analyses/{AnalysisId}/definition");
|
|
3815
3873
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3819,7 +3877,7 @@ var se_DescribeAnalysisDefinitionCommand = /* @__PURE__ */ __name(async (input,
|
|
|
3819
3877
|
return b.build();
|
|
3820
3878
|
}, "se_DescribeAnalysisDefinitionCommand");
|
|
3821
3879
|
var se_DescribeAnalysisPermissionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3822
|
-
const b = (0,
|
|
3880
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3823
3881
|
const headers = {};
|
|
3824
3882
|
b.bp("/accounts/{AwsAccountId}/analyses/{AnalysisId}/permissions");
|
|
3825
3883
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3829,7 +3887,7 @@ var se_DescribeAnalysisPermissionsCommand = /* @__PURE__ */ __name(async (input,
|
|
|
3829
3887
|
return b.build();
|
|
3830
3888
|
}, "se_DescribeAnalysisPermissionsCommand");
|
|
3831
3889
|
var se_DescribeAssetBundleExportJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3832
|
-
const b = (0,
|
|
3890
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3833
3891
|
const headers = {};
|
|
3834
3892
|
b.bp("/accounts/{AwsAccountId}/asset-bundle-export-jobs/{AssetBundleExportJobId}");
|
|
3835
3893
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3839,7 +3897,7 @@ var se_DescribeAssetBundleExportJobCommand = /* @__PURE__ */ __name(async (input
|
|
|
3839
3897
|
return b.build();
|
|
3840
3898
|
}, "se_DescribeAssetBundleExportJobCommand");
|
|
3841
3899
|
var se_DescribeAssetBundleImportJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3842
|
-
const b = (0,
|
|
3900
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3843
3901
|
const headers = {};
|
|
3844
3902
|
b.bp("/accounts/{AwsAccountId}/asset-bundle-import-jobs/{AssetBundleImportJobId}");
|
|
3845
3903
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3849,7 +3907,7 @@ var se_DescribeAssetBundleImportJobCommand = /* @__PURE__ */ __name(async (input
|
|
|
3849
3907
|
return b.build();
|
|
3850
3908
|
}, "se_DescribeAssetBundleImportJobCommand");
|
|
3851
3909
|
var se_DescribeDashboardCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3852
|
-
const b = (0,
|
|
3910
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3853
3911
|
const headers = {};
|
|
3854
3912
|
b.bp("/accounts/{AwsAccountId}/dashboards/{DashboardId}");
|
|
3855
3913
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3863,7 +3921,7 @@ var se_DescribeDashboardCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
3863
3921
|
return b.build();
|
|
3864
3922
|
}, "se_DescribeDashboardCommand");
|
|
3865
3923
|
var se_DescribeDashboardDefinitionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3866
|
-
const b = (0,
|
|
3924
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3867
3925
|
const headers = {};
|
|
3868
3926
|
b.bp("/accounts/{AwsAccountId}/dashboards/{DashboardId}/definition");
|
|
3869
3927
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3877,7 +3935,7 @@ var se_DescribeDashboardDefinitionCommand = /* @__PURE__ */ __name(async (input,
|
|
|
3877
3935
|
return b.build();
|
|
3878
3936
|
}, "se_DescribeDashboardDefinitionCommand");
|
|
3879
3937
|
var se_DescribeDashboardPermissionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3880
|
-
const b = (0,
|
|
3938
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3881
3939
|
const headers = {};
|
|
3882
3940
|
b.bp("/accounts/{AwsAccountId}/dashboards/{DashboardId}/permissions");
|
|
3883
3941
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3887,7 +3945,7 @@ var se_DescribeDashboardPermissionsCommand = /* @__PURE__ */ __name(async (input
|
|
|
3887
3945
|
return b.build();
|
|
3888
3946
|
}, "se_DescribeDashboardPermissionsCommand");
|
|
3889
3947
|
var se_DescribeDashboardSnapshotJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3890
|
-
const b = (0,
|
|
3948
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3891
3949
|
const headers = {};
|
|
3892
3950
|
b.bp("/accounts/{AwsAccountId}/dashboards/{DashboardId}/snapshot-jobs/{SnapshotJobId}");
|
|
3893
3951
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3898,7 +3956,7 @@ var se_DescribeDashboardSnapshotJobCommand = /* @__PURE__ */ __name(async (input
|
|
|
3898
3956
|
return b.build();
|
|
3899
3957
|
}, "se_DescribeDashboardSnapshotJobCommand");
|
|
3900
3958
|
var se_DescribeDashboardSnapshotJobResultCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3901
|
-
const b = (0,
|
|
3959
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3902
3960
|
const headers = {};
|
|
3903
3961
|
b.bp("/accounts/{AwsAccountId}/dashboards/{DashboardId}/snapshot-jobs/{SnapshotJobId}/result");
|
|
3904
3962
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3909,7 +3967,7 @@ var se_DescribeDashboardSnapshotJobResultCommand = /* @__PURE__ */ __name(async
|
|
|
3909
3967
|
return b.build();
|
|
3910
3968
|
}, "se_DescribeDashboardSnapshotJobResultCommand");
|
|
3911
3969
|
var se_DescribeDataSetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3912
|
-
const b = (0,
|
|
3970
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3913
3971
|
const headers = {};
|
|
3914
3972
|
b.bp("/accounts/{AwsAccountId}/data-sets/{DataSetId}");
|
|
3915
3973
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3919,7 +3977,7 @@ var se_DescribeDataSetCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
3919
3977
|
return b.build();
|
|
3920
3978
|
}, "se_DescribeDataSetCommand");
|
|
3921
3979
|
var se_DescribeDataSetPermissionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3922
|
-
const b = (0,
|
|
3980
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3923
3981
|
const headers = {};
|
|
3924
3982
|
b.bp("/accounts/{AwsAccountId}/data-sets/{DataSetId}/permissions");
|
|
3925
3983
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3929,7 +3987,7 @@ var se_DescribeDataSetPermissionsCommand = /* @__PURE__ */ __name(async (input,
|
|
|
3929
3987
|
return b.build();
|
|
3930
3988
|
}, "se_DescribeDataSetPermissionsCommand");
|
|
3931
3989
|
var se_DescribeDataSetRefreshPropertiesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3932
|
-
const b = (0,
|
|
3990
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3933
3991
|
const headers = {};
|
|
3934
3992
|
b.bp("/accounts/{AwsAccountId}/data-sets/{DataSetId}/refresh-properties");
|
|
3935
3993
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3939,7 +3997,7 @@ var se_DescribeDataSetRefreshPropertiesCommand = /* @__PURE__ */ __name(async (i
|
|
|
3939
3997
|
return b.build();
|
|
3940
3998
|
}, "se_DescribeDataSetRefreshPropertiesCommand");
|
|
3941
3999
|
var se_DescribeDataSourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3942
|
-
const b = (0,
|
|
4000
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3943
4001
|
const headers = {};
|
|
3944
4002
|
b.bp("/accounts/{AwsAccountId}/data-sources/{DataSourceId}");
|
|
3945
4003
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3949,7 +4007,7 @@ var se_DescribeDataSourceCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
3949
4007
|
return b.build();
|
|
3950
4008
|
}, "se_DescribeDataSourceCommand");
|
|
3951
4009
|
var se_DescribeDataSourcePermissionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3952
|
-
const b = (0,
|
|
4010
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3953
4011
|
const headers = {};
|
|
3954
4012
|
b.bp("/accounts/{AwsAccountId}/data-sources/{DataSourceId}/permissions");
|
|
3955
4013
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3959,7 +4017,7 @@ var se_DescribeDataSourcePermissionsCommand = /* @__PURE__ */ __name(async (inpu
|
|
|
3959
4017
|
return b.build();
|
|
3960
4018
|
}, "se_DescribeDataSourcePermissionsCommand");
|
|
3961
4019
|
var se_DescribeFolderCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3962
|
-
const b = (0,
|
|
4020
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3963
4021
|
const headers = {};
|
|
3964
4022
|
b.bp("/accounts/{AwsAccountId}/folders/{FolderId}");
|
|
3965
4023
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3969,7 +4027,7 @@ var se_DescribeFolderCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
3969
4027
|
return b.build();
|
|
3970
4028
|
}, "se_DescribeFolderCommand");
|
|
3971
4029
|
var se_DescribeFolderPermissionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3972
|
-
const b = (0,
|
|
4030
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3973
4031
|
const headers = {};
|
|
3974
4032
|
b.bp("/accounts/{AwsAccountId}/folders/{FolderId}/permissions");
|
|
3975
4033
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3984,7 +4042,7 @@ var se_DescribeFolderPermissionsCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
3984
4042
|
return b.build();
|
|
3985
4043
|
}, "se_DescribeFolderPermissionsCommand");
|
|
3986
4044
|
var se_DescribeFolderResolvedPermissionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3987
|
-
const b = (0,
|
|
4045
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3988
4046
|
const headers = {};
|
|
3989
4047
|
b.bp("/accounts/{AwsAccountId}/folders/{FolderId}/resolved-permissions");
|
|
3990
4048
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -3999,7 +4057,7 @@ var se_DescribeFolderResolvedPermissionsCommand = /* @__PURE__ */ __name(async (
|
|
|
3999
4057
|
return b.build();
|
|
4000
4058
|
}, "se_DescribeFolderResolvedPermissionsCommand");
|
|
4001
4059
|
var se_DescribeGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4002
|
-
const b = (0,
|
|
4060
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4003
4061
|
const headers = {};
|
|
4004
4062
|
b.bp("/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}");
|
|
4005
4063
|
b.p("GroupName", () => input.GroupName, "{GroupName}", false);
|
|
@@ -4010,7 +4068,7 @@ var se_DescribeGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4010
4068
|
return b.build();
|
|
4011
4069
|
}, "se_DescribeGroupCommand");
|
|
4012
4070
|
var se_DescribeGroupMembershipCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4013
|
-
const b = (0,
|
|
4071
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4014
4072
|
const headers = {};
|
|
4015
4073
|
b.bp("/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}/members/{MemberName}");
|
|
4016
4074
|
b.p("MemberName", () => input.MemberName, "{MemberName}", false);
|
|
@@ -4022,7 +4080,7 @@ var se_DescribeGroupMembershipCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
4022
4080
|
return b.build();
|
|
4023
4081
|
}, "se_DescribeGroupMembershipCommand");
|
|
4024
4082
|
var se_DescribeIAMPolicyAssignmentCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4025
|
-
const b = (0,
|
|
4083
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4026
4084
|
const headers = {};
|
|
4027
4085
|
b.bp("/accounts/{AwsAccountId}/namespaces/{Namespace}/iam-policy-assignments/{AssignmentName}");
|
|
4028
4086
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4033,7 +4091,7 @@ var se_DescribeIAMPolicyAssignmentCommand = /* @__PURE__ */ __name(async (input,
|
|
|
4033
4091
|
return b.build();
|
|
4034
4092
|
}, "se_DescribeIAMPolicyAssignmentCommand");
|
|
4035
4093
|
var se_DescribeIngestionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4036
|
-
const b = (0,
|
|
4094
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4037
4095
|
const headers = {};
|
|
4038
4096
|
b.bp("/accounts/{AwsAccountId}/data-sets/{DataSetId}/ingestions/{IngestionId}");
|
|
4039
4097
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4044,7 +4102,7 @@ var se_DescribeIngestionCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
4044
4102
|
return b.build();
|
|
4045
4103
|
}, "se_DescribeIngestionCommand");
|
|
4046
4104
|
var se_DescribeIpRestrictionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4047
|
-
const b = (0,
|
|
4105
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4048
4106
|
const headers = {};
|
|
4049
4107
|
b.bp("/accounts/{AwsAccountId}/ip-restriction");
|
|
4050
4108
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4053,7 +4111,7 @@ var se_DescribeIpRestrictionCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
4053
4111
|
return b.build();
|
|
4054
4112
|
}, "se_DescribeIpRestrictionCommand");
|
|
4055
4113
|
var se_DescribeNamespaceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4056
|
-
const b = (0,
|
|
4114
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4057
4115
|
const headers = {};
|
|
4058
4116
|
b.bp("/accounts/{AwsAccountId}/namespaces/{Namespace}");
|
|
4059
4117
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4063,7 +4121,7 @@ var se_DescribeNamespaceCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
4063
4121
|
return b.build();
|
|
4064
4122
|
}, "se_DescribeNamespaceCommand");
|
|
4065
4123
|
var se_DescribeRefreshScheduleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4066
|
-
const b = (0,
|
|
4124
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4067
4125
|
const headers = {};
|
|
4068
4126
|
b.bp("/accounts/{AwsAccountId}/data-sets/{DataSetId}/refresh-schedules/{ScheduleId}");
|
|
4069
4127
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4074,7 +4132,7 @@ var se_DescribeRefreshScheduleCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
4074
4132
|
return b.build();
|
|
4075
4133
|
}, "se_DescribeRefreshScheduleCommand");
|
|
4076
4134
|
var se_DescribeRoleCustomPermissionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4077
|
-
const b = (0,
|
|
4135
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4078
4136
|
const headers = {};
|
|
4079
4137
|
b.bp("/accounts/{AwsAccountId}/namespaces/{Namespace}/roles/{Role}/custom-permission");
|
|
4080
4138
|
b.p("Role", () => input.Role, "{Role}", false);
|
|
@@ -4085,7 +4143,7 @@ var se_DescribeRoleCustomPermissionCommand = /* @__PURE__ */ __name(async (input
|
|
|
4085
4143
|
return b.build();
|
|
4086
4144
|
}, "se_DescribeRoleCustomPermissionCommand");
|
|
4087
4145
|
var se_DescribeTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4088
|
-
const b = (0,
|
|
4146
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4089
4147
|
const headers = {};
|
|
4090
4148
|
b.bp("/accounts/{AwsAccountId}/templates/{TemplateId}");
|
|
4091
4149
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4099,7 +4157,7 @@ var se_DescribeTemplateCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
4099
4157
|
return b.build();
|
|
4100
4158
|
}, "se_DescribeTemplateCommand");
|
|
4101
4159
|
var se_DescribeTemplateAliasCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4102
|
-
const b = (0,
|
|
4160
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4103
4161
|
const headers = {};
|
|
4104
4162
|
b.bp("/accounts/{AwsAccountId}/templates/{TemplateId}/aliases/{AliasName}");
|
|
4105
4163
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4110,7 +4168,7 @@ var se_DescribeTemplateAliasCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
4110
4168
|
return b.build();
|
|
4111
4169
|
}, "se_DescribeTemplateAliasCommand");
|
|
4112
4170
|
var se_DescribeTemplateDefinitionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4113
|
-
const b = (0,
|
|
4171
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4114
4172
|
const headers = {};
|
|
4115
4173
|
b.bp("/accounts/{AwsAccountId}/templates/{TemplateId}/definition");
|
|
4116
4174
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4124,7 +4182,7 @@ var se_DescribeTemplateDefinitionCommand = /* @__PURE__ */ __name(async (input,
|
|
|
4124
4182
|
return b.build();
|
|
4125
4183
|
}, "se_DescribeTemplateDefinitionCommand");
|
|
4126
4184
|
var se_DescribeTemplatePermissionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4127
|
-
const b = (0,
|
|
4185
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4128
4186
|
const headers = {};
|
|
4129
4187
|
b.bp("/accounts/{AwsAccountId}/templates/{TemplateId}/permissions");
|
|
4130
4188
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4134,7 +4192,7 @@ var se_DescribeTemplatePermissionsCommand = /* @__PURE__ */ __name(async (input,
|
|
|
4134
4192
|
return b.build();
|
|
4135
4193
|
}, "se_DescribeTemplatePermissionsCommand");
|
|
4136
4194
|
var se_DescribeThemeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4137
|
-
const b = (0,
|
|
4195
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4138
4196
|
const headers = {};
|
|
4139
4197
|
b.bp("/accounts/{AwsAccountId}/themes/{ThemeId}");
|
|
4140
4198
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4148,7 +4206,7 @@ var se_DescribeThemeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4148
4206
|
return b.build();
|
|
4149
4207
|
}, "se_DescribeThemeCommand");
|
|
4150
4208
|
var se_DescribeThemeAliasCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4151
|
-
const b = (0,
|
|
4209
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4152
4210
|
const headers = {};
|
|
4153
4211
|
b.bp("/accounts/{AwsAccountId}/themes/{ThemeId}/aliases/{AliasName}");
|
|
4154
4212
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4159,7 +4217,7 @@ var se_DescribeThemeAliasCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
4159
4217
|
return b.build();
|
|
4160
4218
|
}, "se_DescribeThemeAliasCommand");
|
|
4161
4219
|
var se_DescribeThemePermissionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4162
|
-
const b = (0,
|
|
4220
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4163
4221
|
const headers = {};
|
|
4164
4222
|
b.bp("/accounts/{AwsAccountId}/themes/{ThemeId}/permissions");
|
|
4165
4223
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4169,7 +4227,7 @@ var se_DescribeThemePermissionsCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
4169
4227
|
return b.build();
|
|
4170
4228
|
}, "se_DescribeThemePermissionsCommand");
|
|
4171
4229
|
var se_DescribeTopicCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4172
|
-
const b = (0,
|
|
4230
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4173
4231
|
const headers = {};
|
|
4174
4232
|
b.bp("/accounts/{AwsAccountId}/topics/{TopicId}");
|
|
4175
4233
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4179,7 +4237,7 @@ var se_DescribeTopicCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4179
4237
|
return b.build();
|
|
4180
4238
|
}, "se_DescribeTopicCommand");
|
|
4181
4239
|
var se_DescribeTopicPermissionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4182
|
-
const b = (0,
|
|
4240
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4183
4241
|
const headers = {};
|
|
4184
4242
|
b.bp("/accounts/{AwsAccountId}/topics/{TopicId}/permissions");
|
|
4185
4243
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4189,7 +4247,7 @@ var se_DescribeTopicPermissionsCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
4189
4247
|
return b.build();
|
|
4190
4248
|
}, "se_DescribeTopicPermissionsCommand");
|
|
4191
4249
|
var se_DescribeTopicRefreshCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4192
|
-
const b = (0,
|
|
4250
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4193
4251
|
const headers = {};
|
|
4194
4252
|
b.bp("/accounts/{AwsAccountId}/topics/{TopicId}/refresh/{RefreshId}");
|
|
4195
4253
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4200,7 +4258,7 @@ var se_DescribeTopicRefreshCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
4200
4258
|
return b.build();
|
|
4201
4259
|
}, "se_DescribeTopicRefreshCommand");
|
|
4202
4260
|
var se_DescribeTopicRefreshScheduleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4203
|
-
const b = (0,
|
|
4261
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4204
4262
|
const headers = {};
|
|
4205
4263
|
b.bp("/accounts/{AwsAccountId}/topics/{TopicId}/schedules/{DatasetId}");
|
|
4206
4264
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4211,7 +4269,7 @@ var se_DescribeTopicRefreshScheduleCommand = /* @__PURE__ */ __name(async (input
|
|
|
4211
4269
|
return b.build();
|
|
4212
4270
|
}, "se_DescribeTopicRefreshScheduleCommand");
|
|
4213
4271
|
var se_DescribeUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4214
|
-
const b = (0,
|
|
4272
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4215
4273
|
const headers = {};
|
|
4216
4274
|
b.bp("/accounts/{AwsAccountId}/namespaces/{Namespace}/users/{UserName}");
|
|
4217
4275
|
b.p("UserName", () => input.UserName, "{UserName}", false);
|
|
@@ -4222,7 +4280,7 @@ var se_DescribeUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4222
4280
|
return b.build();
|
|
4223
4281
|
}, "se_DescribeUserCommand");
|
|
4224
4282
|
var se_DescribeVPCConnectionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4225
|
-
const b = (0,
|
|
4283
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4226
4284
|
const headers = {};
|
|
4227
4285
|
b.bp("/accounts/{AwsAccountId}/vpc-connections/{VPCConnectionId}");
|
|
4228
4286
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4232,7 +4290,7 @@ var se_DescribeVPCConnectionCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
4232
4290
|
return b.build();
|
|
4233
4291
|
}, "se_DescribeVPCConnectionCommand");
|
|
4234
4292
|
var se_GenerateEmbedUrlForAnonymousUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4235
|
-
const b = (0,
|
|
4293
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4236
4294
|
const headers = {
|
|
4237
4295
|
"content-type": "application/json"
|
|
4238
4296
|
};
|
|
@@ -4253,7 +4311,7 @@ var se_GenerateEmbedUrlForAnonymousUserCommand = /* @__PURE__ */ __name(async (i
|
|
|
4253
4311
|
return b.build();
|
|
4254
4312
|
}, "se_GenerateEmbedUrlForAnonymousUserCommand");
|
|
4255
4313
|
var se_GenerateEmbedUrlForRegisteredUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4256
|
-
const b = (0,
|
|
4314
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4257
4315
|
const headers = {
|
|
4258
4316
|
"content-type": "application/json"
|
|
4259
4317
|
};
|
|
@@ -4272,7 +4330,7 @@ var se_GenerateEmbedUrlForRegisteredUserCommand = /* @__PURE__ */ __name(async (
|
|
|
4272
4330
|
return b.build();
|
|
4273
4331
|
}, "se_GenerateEmbedUrlForRegisteredUserCommand");
|
|
4274
4332
|
var se_GetDashboardEmbedUrlCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4275
|
-
const b = (0,
|
|
4333
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4276
4334
|
const headers = {};
|
|
4277
4335
|
b.bp("/accounts/{AwsAccountId}/dashboards/{DashboardId}/embed-url");
|
|
4278
4336
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4292,7 +4350,7 @@ var se_GetDashboardEmbedUrlCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
4292
4350
|
return b.build();
|
|
4293
4351
|
}, "se_GetDashboardEmbedUrlCommand");
|
|
4294
4352
|
var se_GetSessionEmbedUrlCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4295
|
-
const b = (0,
|
|
4353
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4296
4354
|
const headers = {};
|
|
4297
4355
|
b.bp("/accounts/{AwsAccountId}/session-embed-url");
|
|
4298
4356
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4306,7 +4364,7 @@ var se_GetSessionEmbedUrlCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
4306
4364
|
return b.build();
|
|
4307
4365
|
}, "se_GetSessionEmbedUrlCommand");
|
|
4308
4366
|
var se_ListAnalysesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4309
|
-
const b = (0,
|
|
4367
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4310
4368
|
const headers = {};
|
|
4311
4369
|
b.bp("/accounts/{AwsAccountId}/analyses");
|
|
4312
4370
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4319,7 +4377,7 @@ var se_ListAnalysesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4319
4377
|
return b.build();
|
|
4320
4378
|
}, "se_ListAnalysesCommand");
|
|
4321
4379
|
var se_ListAssetBundleExportJobsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4322
|
-
const b = (0,
|
|
4380
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4323
4381
|
const headers = {};
|
|
4324
4382
|
b.bp("/accounts/{AwsAccountId}/asset-bundle-export-jobs");
|
|
4325
4383
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4332,7 +4390,7 @@ var se_ListAssetBundleExportJobsCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
4332
4390
|
return b.build();
|
|
4333
4391
|
}, "se_ListAssetBundleExportJobsCommand");
|
|
4334
4392
|
var se_ListAssetBundleImportJobsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4335
|
-
const b = (0,
|
|
4393
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4336
4394
|
const headers = {};
|
|
4337
4395
|
b.bp("/accounts/{AwsAccountId}/asset-bundle-import-jobs");
|
|
4338
4396
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4345,7 +4403,7 @@ var se_ListAssetBundleImportJobsCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
4345
4403
|
return b.build();
|
|
4346
4404
|
}, "se_ListAssetBundleImportJobsCommand");
|
|
4347
4405
|
var se_ListDashboardsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4348
|
-
const b = (0,
|
|
4406
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4349
4407
|
const headers = {};
|
|
4350
4408
|
b.bp("/accounts/{AwsAccountId}/dashboards");
|
|
4351
4409
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4358,7 +4416,7 @@ var se_ListDashboardsCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
4358
4416
|
return b.build();
|
|
4359
4417
|
}, "se_ListDashboardsCommand");
|
|
4360
4418
|
var se_ListDashboardVersionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4361
|
-
const b = (0,
|
|
4419
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4362
4420
|
const headers = {};
|
|
4363
4421
|
b.bp("/accounts/{AwsAccountId}/dashboards/{DashboardId}/versions");
|
|
4364
4422
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4372,7 +4430,7 @@ var se_ListDashboardVersionsCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
4372
4430
|
return b.build();
|
|
4373
4431
|
}, "se_ListDashboardVersionsCommand");
|
|
4374
4432
|
var se_ListDataSetsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4375
|
-
const b = (0,
|
|
4433
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4376
4434
|
const headers = {};
|
|
4377
4435
|
b.bp("/accounts/{AwsAccountId}/data-sets");
|
|
4378
4436
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4385,7 +4443,7 @@ var se_ListDataSetsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4385
4443
|
return b.build();
|
|
4386
4444
|
}, "se_ListDataSetsCommand");
|
|
4387
4445
|
var se_ListDataSourcesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4388
|
-
const b = (0,
|
|
4446
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4389
4447
|
const headers = {};
|
|
4390
4448
|
b.bp("/accounts/{AwsAccountId}/data-sources");
|
|
4391
4449
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4398,7 +4456,7 @@ var se_ListDataSourcesCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
4398
4456
|
return b.build();
|
|
4399
4457
|
}, "se_ListDataSourcesCommand");
|
|
4400
4458
|
var se_ListFolderMembersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4401
|
-
const b = (0,
|
|
4459
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4402
4460
|
const headers = {};
|
|
4403
4461
|
b.bp("/accounts/{AwsAccountId}/folders/{FolderId}/members");
|
|
4404
4462
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4412,7 +4470,7 @@ var se_ListFolderMembersCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
4412
4470
|
return b.build();
|
|
4413
4471
|
}, "se_ListFolderMembersCommand");
|
|
4414
4472
|
var se_ListFoldersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4415
|
-
const b = (0,
|
|
4473
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4416
4474
|
const headers = {};
|
|
4417
4475
|
b.bp("/accounts/{AwsAccountId}/folders");
|
|
4418
4476
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4425,7 +4483,7 @@ var se_ListFoldersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4425
4483
|
return b.build();
|
|
4426
4484
|
}, "se_ListFoldersCommand");
|
|
4427
4485
|
var se_ListGroupMembershipsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4428
|
-
const b = (0,
|
|
4486
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4429
4487
|
const headers = {};
|
|
4430
4488
|
b.bp("/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}/members");
|
|
4431
4489
|
b.p("GroupName", () => input.GroupName, "{GroupName}", false);
|
|
@@ -4440,7 +4498,7 @@ var se_ListGroupMembershipsCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
4440
4498
|
return b.build();
|
|
4441
4499
|
}, "se_ListGroupMembershipsCommand");
|
|
4442
4500
|
var se_ListGroupsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4443
|
-
const b = (0,
|
|
4501
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4444
4502
|
const headers = {};
|
|
4445
4503
|
b.bp("/accounts/{AwsAccountId}/namespaces/{Namespace}/groups");
|
|
4446
4504
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4454,7 +4512,7 @@ var se_ListGroupsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4454
4512
|
return b.build();
|
|
4455
4513
|
}, "se_ListGroupsCommand");
|
|
4456
4514
|
var se_ListIAMPolicyAssignmentsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4457
|
-
const b = (0,
|
|
4515
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4458
4516
|
const headers = {};
|
|
4459
4517
|
b.bp("/accounts/{AwsAccountId}/namespaces/{Namespace}/v2/iam-policy-assignments");
|
|
4460
4518
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4469,7 +4527,7 @@ var se_ListIAMPolicyAssignmentsCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
4469
4527
|
return b.build();
|
|
4470
4528
|
}, "se_ListIAMPolicyAssignmentsCommand");
|
|
4471
4529
|
var se_ListIAMPolicyAssignmentsForUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4472
|
-
const b = (0,
|
|
4530
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4473
4531
|
const headers = {};
|
|
4474
4532
|
b.bp("/accounts/{AwsAccountId}/namespaces/{Namespace}/users/{UserName}/iam-policy-assignments");
|
|
4475
4533
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4484,7 +4542,7 @@ var se_ListIAMPolicyAssignmentsForUserCommand = /* @__PURE__ */ __name(async (in
|
|
|
4484
4542
|
return b.build();
|
|
4485
4543
|
}, "se_ListIAMPolicyAssignmentsForUserCommand");
|
|
4486
4544
|
var se_ListIdentityPropagationConfigsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4487
|
-
const b = (0,
|
|
4545
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4488
4546
|
const headers = {};
|
|
4489
4547
|
b.bp("/accounts/{AwsAccountId}/identity-propagation-config");
|
|
4490
4548
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4497,7 +4555,7 @@ var se_ListIdentityPropagationConfigsCommand = /* @__PURE__ */ __name(async (inp
|
|
|
4497
4555
|
return b.build();
|
|
4498
4556
|
}, "se_ListIdentityPropagationConfigsCommand");
|
|
4499
4557
|
var se_ListIngestionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4500
|
-
const b = (0,
|
|
4558
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4501
4559
|
const headers = {};
|
|
4502
4560
|
b.bp("/accounts/{AwsAccountId}/data-sets/{DataSetId}/ingestions");
|
|
4503
4561
|
b.p("DataSetId", () => input.DataSetId, "{DataSetId}", false);
|
|
@@ -4511,7 +4569,7 @@ var se_ListIngestionsCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
4511
4569
|
return b.build();
|
|
4512
4570
|
}, "se_ListIngestionsCommand");
|
|
4513
4571
|
var se_ListNamespacesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4514
|
-
const b = (0,
|
|
4572
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4515
4573
|
const headers = {};
|
|
4516
4574
|
b.bp("/accounts/{AwsAccountId}/namespaces");
|
|
4517
4575
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4524,7 +4582,7 @@ var se_ListNamespacesCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
4524
4582
|
return b.build();
|
|
4525
4583
|
}, "se_ListNamespacesCommand");
|
|
4526
4584
|
var se_ListRefreshSchedulesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4527
|
-
const b = (0,
|
|
4585
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4528
4586
|
const headers = {};
|
|
4529
4587
|
b.bp("/accounts/{AwsAccountId}/data-sets/{DataSetId}/refresh-schedules");
|
|
4530
4588
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4534,7 +4592,7 @@ var se_ListRefreshSchedulesCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
4534
4592
|
return b.build();
|
|
4535
4593
|
}, "se_ListRefreshSchedulesCommand");
|
|
4536
4594
|
var se_ListRoleMembershipsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4537
|
-
const b = (0,
|
|
4595
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4538
4596
|
const headers = {};
|
|
4539
4597
|
b.bp("/accounts/{AwsAccountId}/namespaces/{Namespace}/roles/{Role}/members");
|
|
4540
4598
|
b.p("Role", () => input.Role, "{Role}", false);
|
|
@@ -4549,7 +4607,7 @@ var se_ListRoleMembershipsCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
4549
4607
|
return b.build();
|
|
4550
4608
|
}, "se_ListRoleMembershipsCommand");
|
|
4551
4609
|
var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4552
|
-
const b = (0,
|
|
4610
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4553
4611
|
const headers = {};
|
|
4554
4612
|
b.bp("/resources/{ResourceArn}/tags");
|
|
4555
4613
|
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
@@ -4558,7 +4616,7 @@ var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
4558
4616
|
return b.build();
|
|
4559
4617
|
}, "se_ListTagsForResourceCommand");
|
|
4560
4618
|
var se_ListTemplateAliasesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4561
|
-
const b = (0,
|
|
4619
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4562
4620
|
const headers = {};
|
|
4563
4621
|
b.bp("/accounts/{AwsAccountId}/templates/{TemplateId}/aliases");
|
|
4564
4622
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4572,7 +4630,7 @@ var se_ListTemplateAliasesCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
4572
4630
|
return b.build();
|
|
4573
4631
|
}, "se_ListTemplateAliasesCommand");
|
|
4574
4632
|
var se_ListTemplatesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4575
|
-
const b = (0,
|
|
4633
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4576
4634
|
const headers = {};
|
|
4577
4635
|
b.bp("/accounts/{AwsAccountId}/templates");
|
|
4578
4636
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4585,7 +4643,7 @@ var se_ListTemplatesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4585
4643
|
return b.build();
|
|
4586
4644
|
}, "se_ListTemplatesCommand");
|
|
4587
4645
|
var se_ListTemplateVersionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4588
|
-
const b = (0,
|
|
4646
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4589
4647
|
const headers = {};
|
|
4590
4648
|
b.bp("/accounts/{AwsAccountId}/templates/{TemplateId}/versions");
|
|
4591
4649
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4599,7 +4657,7 @@ var se_ListTemplateVersionsCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
4599
4657
|
return b.build();
|
|
4600
4658
|
}, "se_ListTemplateVersionsCommand");
|
|
4601
4659
|
var se_ListThemeAliasesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4602
|
-
const b = (0,
|
|
4660
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4603
4661
|
const headers = {};
|
|
4604
4662
|
b.bp("/accounts/{AwsAccountId}/themes/{ThemeId}/aliases");
|
|
4605
4663
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4613,7 +4671,7 @@ var se_ListThemeAliasesCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
4613
4671
|
return b.build();
|
|
4614
4672
|
}, "se_ListThemeAliasesCommand");
|
|
4615
4673
|
var se_ListThemesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4616
|
-
const b = (0,
|
|
4674
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4617
4675
|
const headers = {};
|
|
4618
4676
|
b.bp("/accounts/{AwsAccountId}/themes");
|
|
4619
4677
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4627,7 +4685,7 @@ var se_ListThemesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4627
4685
|
return b.build();
|
|
4628
4686
|
}, "se_ListThemesCommand");
|
|
4629
4687
|
var se_ListThemeVersionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4630
|
-
const b = (0,
|
|
4688
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4631
4689
|
const headers = {};
|
|
4632
4690
|
b.bp("/accounts/{AwsAccountId}/themes/{ThemeId}/versions");
|
|
4633
4691
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4641,7 +4699,7 @@ var se_ListThemeVersionsCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
4641
4699
|
return b.build();
|
|
4642
4700
|
}, "se_ListThemeVersionsCommand");
|
|
4643
4701
|
var se_ListTopicRefreshSchedulesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4644
|
-
const b = (0,
|
|
4702
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4645
4703
|
const headers = {};
|
|
4646
4704
|
b.bp("/accounts/{AwsAccountId}/topics/{TopicId}/schedules");
|
|
4647
4705
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4651,7 +4709,7 @@ var se_ListTopicRefreshSchedulesCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
4651
4709
|
return b.build();
|
|
4652
4710
|
}, "se_ListTopicRefreshSchedulesCommand");
|
|
4653
4711
|
var se_ListTopicsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4654
|
-
const b = (0,
|
|
4712
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4655
4713
|
const headers = {};
|
|
4656
4714
|
b.bp("/accounts/{AwsAccountId}/topics");
|
|
4657
4715
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4664,7 +4722,7 @@ var se_ListTopicsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4664
4722
|
return b.build();
|
|
4665
4723
|
}, "se_ListTopicsCommand");
|
|
4666
4724
|
var se_ListUserGroupsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4667
|
-
const b = (0,
|
|
4725
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4668
4726
|
const headers = {};
|
|
4669
4727
|
b.bp("/accounts/{AwsAccountId}/namespaces/{Namespace}/users/{UserName}/groups");
|
|
4670
4728
|
b.p("UserName", () => input.UserName, "{UserName}", false);
|
|
@@ -4679,7 +4737,7 @@ var se_ListUserGroupsCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
4679
4737
|
return b.build();
|
|
4680
4738
|
}, "se_ListUserGroupsCommand");
|
|
4681
4739
|
var se_ListUsersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4682
|
-
const b = (0,
|
|
4740
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4683
4741
|
const headers = {};
|
|
4684
4742
|
b.bp("/accounts/{AwsAccountId}/namespaces/{Namespace}/users");
|
|
4685
4743
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4693,7 +4751,7 @@ var se_ListUsersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4693
4751
|
return b.build();
|
|
4694
4752
|
}, "se_ListUsersCommand");
|
|
4695
4753
|
var se_ListVPCConnectionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4696
|
-
const b = (0,
|
|
4754
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4697
4755
|
const headers = {};
|
|
4698
4756
|
b.bp("/accounts/{AwsAccountId}/vpc-connections");
|
|
4699
4757
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4706,7 +4764,7 @@ var se_ListVPCConnectionsCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
4706
4764
|
return b.build();
|
|
4707
4765
|
}, "se_ListVPCConnectionsCommand");
|
|
4708
4766
|
var se_PutDataSetRefreshPropertiesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4709
|
-
const b = (0,
|
|
4767
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4710
4768
|
const headers = {
|
|
4711
4769
|
"content-type": "application/json"
|
|
4712
4770
|
};
|
|
@@ -4723,7 +4781,7 @@ var se_PutDataSetRefreshPropertiesCommand = /* @__PURE__ */ __name(async (input,
|
|
|
4723
4781
|
return b.build();
|
|
4724
4782
|
}, "se_PutDataSetRefreshPropertiesCommand");
|
|
4725
4783
|
var se_RegisterUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4726
|
-
const b = (0,
|
|
4784
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4727
4785
|
const headers = {
|
|
4728
4786
|
"content-type": "application/json"
|
|
4729
4787
|
};
|
|
@@ -4750,7 +4808,7 @@ var se_RegisterUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4750
4808
|
return b.build();
|
|
4751
4809
|
}, "se_RegisterUserCommand");
|
|
4752
4810
|
var se_RestoreAnalysisCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4753
|
-
const b = (0,
|
|
4811
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4754
4812
|
const headers = {};
|
|
4755
4813
|
b.bp("/accounts/{AwsAccountId}/restore/analyses/{AnalysisId}");
|
|
4756
4814
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -4760,7 +4818,7 @@ var se_RestoreAnalysisCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
4760
4818
|
return b.build();
|
|
4761
4819
|
}, "se_RestoreAnalysisCommand");
|
|
4762
4820
|
var se_SearchAnalysesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4763
|
-
const b = (0,
|
|
4821
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4764
4822
|
const headers = {
|
|
4765
4823
|
"content-type": "application/json"
|
|
4766
4824
|
};
|
|
@@ -4778,7 +4836,7 @@ var se_SearchAnalysesCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
4778
4836
|
return b.build();
|
|
4779
4837
|
}, "se_SearchAnalysesCommand");
|
|
4780
4838
|
var se_SearchDashboardsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4781
|
-
const b = (0,
|
|
4839
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4782
4840
|
const headers = {
|
|
4783
4841
|
"content-type": "application/json"
|
|
4784
4842
|
};
|
|
@@ -4796,7 +4854,7 @@ var se_SearchDashboardsCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
4796
4854
|
return b.build();
|
|
4797
4855
|
}, "se_SearchDashboardsCommand");
|
|
4798
4856
|
var se_SearchDataSetsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4799
|
-
const b = (0,
|
|
4857
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4800
4858
|
const headers = {
|
|
4801
4859
|
"content-type": "application/json"
|
|
4802
4860
|
};
|
|
@@ -4814,7 +4872,7 @@ var se_SearchDataSetsCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
4814
4872
|
return b.build();
|
|
4815
4873
|
}, "se_SearchDataSetsCommand");
|
|
4816
4874
|
var se_SearchDataSourcesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4817
|
-
const b = (0,
|
|
4875
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4818
4876
|
const headers = {
|
|
4819
4877
|
"content-type": "application/json"
|
|
4820
4878
|
};
|
|
@@ -4832,7 +4890,7 @@ var se_SearchDataSourcesCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
4832
4890
|
return b.build();
|
|
4833
4891
|
}, "se_SearchDataSourcesCommand");
|
|
4834
4892
|
var se_SearchFoldersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4835
|
-
const b = (0,
|
|
4893
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4836
4894
|
const headers = {
|
|
4837
4895
|
"content-type": "application/json"
|
|
4838
4896
|
};
|
|
@@ -4850,7 +4908,7 @@ var se_SearchFoldersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4850
4908
|
return b.build();
|
|
4851
4909
|
}, "se_SearchFoldersCommand");
|
|
4852
4910
|
var se_SearchGroupsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4853
|
-
const b = (0,
|
|
4911
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4854
4912
|
const headers = {
|
|
4855
4913
|
"content-type": "application/json"
|
|
4856
4914
|
};
|
|
@@ -4871,7 +4929,7 @@ var se_SearchGroupsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4871
4929
|
return b.build();
|
|
4872
4930
|
}, "se_SearchGroupsCommand");
|
|
4873
4931
|
var se_StartAssetBundleExportJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4874
|
-
const b = (0,
|
|
4932
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4875
4933
|
const headers = {
|
|
4876
4934
|
"content-type": "application/json"
|
|
4877
4935
|
};
|
|
@@ -4894,7 +4952,7 @@ var se_StartAssetBundleExportJobCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
4894
4952
|
return b.build();
|
|
4895
4953
|
}, "se_StartAssetBundleExportJobCommand");
|
|
4896
4954
|
var se_StartAssetBundleImportJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4897
|
-
const b = (0,
|
|
4955
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4898
4956
|
const headers = {
|
|
4899
4957
|
"content-type": "application/json"
|
|
4900
4958
|
};
|
|
@@ -4916,7 +4974,7 @@ var se_StartAssetBundleImportJobCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
4916
4974
|
return b.build();
|
|
4917
4975
|
}, "se_StartAssetBundleImportJobCommand");
|
|
4918
4976
|
var se_StartDashboardSnapshotJobCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4919
|
-
const b = (0,
|
|
4977
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4920
4978
|
const headers = {
|
|
4921
4979
|
"content-type": "application/json"
|
|
4922
4980
|
};
|
|
@@ -4935,7 +4993,7 @@ var se_StartDashboardSnapshotJobCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
4935
4993
|
return b.build();
|
|
4936
4994
|
}, "se_StartDashboardSnapshotJobCommand");
|
|
4937
4995
|
var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4938
|
-
const b = (0,
|
|
4996
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4939
4997
|
const headers = {
|
|
4940
4998
|
"content-type": "application/json"
|
|
4941
4999
|
};
|
|
@@ -4951,7 +5009,7 @@ var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4951
5009
|
return b.build();
|
|
4952
5010
|
}, "se_TagResourceCommand");
|
|
4953
5011
|
var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4954
|
-
const b = (0,
|
|
5012
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4955
5013
|
const headers = {};
|
|
4956
5014
|
b.bp("/resources/{ResourceArn}/tags");
|
|
4957
5015
|
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
@@ -4963,7 +5021,7 @@ var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
4963
5021
|
return b.build();
|
|
4964
5022
|
}, "se_UntagResourceCommand");
|
|
4965
5023
|
var se_UpdateAccountCustomizationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4966
|
-
const b = (0,
|
|
5024
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4967
5025
|
const headers = {
|
|
4968
5026
|
"content-type": "application/json"
|
|
4969
5027
|
};
|
|
@@ -4982,7 +5040,7 @@ var se_UpdateAccountCustomizationCommand = /* @__PURE__ */ __name(async (input,
|
|
|
4982
5040
|
return b.build();
|
|
4983
5041
|
}, "se_UpdateAccountCustomizationCommand");
|
|
4984
5042
|
var se_UpdateAccountSettingsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4985
|
-
const b = (0,
|
|
5043
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4986
5044
|
const headers = {
|
|
4987
5045
|
"content-type": "application/json"
|
|
4988
5046
|
};
|
|
@@ -5000,7 +5058,7 @@ var se_UpdateAccountSettingsCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
5000
5058
|
return b.build();
|
|
5001
5059
|
}, "se_UpdateAccountSettingsCommand");
|
|
5002
5060
|
var se_UpdateAnalysisCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5003
|
-
const b = (0,
|
|
5061
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5004
5062
|
const headers = {
|
|
5005
5063
|
"content-type": "application/json"
|
|
5006
5064
|
};
|
|
@@ -5022,7 +5080,7 @@ var se_UpdateAnalysisCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
5022
5080
|
return b.build();
|
|
5023
5081
|
}, "se_UpdateAnalysisCommand");
|
|
5024
5082
|
var se_UpdateAnalysisPermissionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5025
|
-
const b = (0,
|
|
5083
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5026
5084
|
const headers = {
|
|
5027
5085
|
"content-type": "application/json"
|
|
5028
5086
|
};
|
|
@@ -5040,7 +5098,7 @@ var se_UpdateAnalysisPermissionsCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
5040
5098
|
return b.build();
|
|
5041
5099
|
}, "se_UpdateAnalysisPermissionsCommand");
|
|
5042
5100
|
var se_UpdateDashboardCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5043
|
-
const b = (0,
|
|
5101
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5044
5102
|
const headers = {
|
|
5045
5103
|
"content-type": "application/json"
|
|
5046
5104
|
};
|
|
@@ -5064,7 +5122,7 @@ var se_UpdateDashboardCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
5064
5122
|
return b.build();
|
|
5065
5123
|
}, "se_UpdateDashboardCommand");
|
|
5066
5124
|
var se_UpdateDashboardLinksCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5067
|
-
const b = (0,
|
|
5125
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5068
5126
|
const headers = {
|
|
5069
5127
|
"content-type": "application/json"
|
|
5070
5128
|
};
|
|
@@ -5081,7 +5139,7 @@ var se_UpdateDashboardLinksCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
5081
5139
|
return b.build();
|
|
5082
5140
|
}, "se_UpdateDashboardLinksCommand");
|
|
5083
5141
|
var se_UpdateDashboardPermissionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5084
|
-
const b = (0,
|
|
5142
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5085
5143
|
const headers = {
|
|
5086
5144
|
"content-type": "application/json"
|
|
5087
5145
|
};
|
|
@@ -5101,7 +5159,7 @@ var se_UpdateDashboardPermissionsCommand = /* @__PURE__ */ __name(async (input,
|
|
|
5101
5159
|
return b.build();
|
|
5102
5160
|
}, "se_UpdateDashboardPermissionsCommand");
|
|
5103
5161
|
var se_UpdateDashboardPublishedVersionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5104
|
-
const b = (0,
|
|
5162
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5105
5163
|
const headers = {};
|
|
5106
5164
|
b.bp("/accounts/{AwsAccountId}/dashboards/{DashboardId}/versions/{VersionNumber}");
|
|
5107
5165
|
b.p("AwsAccountId", () => input.AwsAccountId, "{AwsAccountId}", false);
|
|
@@ -5112,7 +5170,7 @@ var se_UpdateDashboardPublishedVersionCommand = /* @__PURE__ */ __name(async (in
|
|
|
5112
5170
|
return b.build();
|
|
5113
5171
|
}, "se_UpdateDashboardPublishedVersionCommand");
|
|
5114
5172
|
var se_UpdateDataSetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5115
|
-
const b = (0,
|
|
5173
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5116
5174
|
const headers = {
|
|
5117
5175
|
"content-type": "application/json"
|
|
5118
5176
|
};
|
|
@@ -5139,7 +5197,7 @@ var se_UpdateDataSetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
5139
5197
|
return b.build();
|
|
5140
5198
|
}, "se_UpdateDataSetCommand");
|
|
5141
5199
|
var se_UpdateDataSetPermissionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5142
|
-
const b = (0,
|
|
5200
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5143
5201
|
const headers = {
|
|
5144
5202
|
"content-type": "application/json"
|
|
5145
5203
|
};
|
|
@@ -5157,7 +5215,7 @@ var se_UpdateDataSetPermissionsCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
5157
5215
|
return b.build();
|
|
5158
5216
|
}, "se_UpdateDataSetPermissionsCommand");
|
|
5159
5217
|
var se_UpdateDataSourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5160
|
-
const b = (0,
|
|
5218
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5161
5219
|
const headers = {
|
|
5162
5220
|
"content-type": "application/json"
|
|
5163
5221
|
};
|
|
@@ -5178,7 +5236,7 @@ var se_UpdateDataSourceCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
5178
5236
|
return b.build();
|
|
5179
5237
|
}, "se_UpdateDataSourceCommand");
|
|
5180
5238
|
var se_UpdateDataSourcePermissionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5181
|
-
const b = (0,
|
|
5239
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5182
5240
|
const headers = {
|
|
5183
5241
|
"content-type": "application/json"
|
|
5184
5242
|
};
|
|
@@ -5196,7 +5254,7 @@ var se_UpdateDataSourcePermissionsCommand = /* @__PURE__ */ __name(async (input,
|
|
|
5196
5254
|
return b.build();
|
|
5197
5255
|
}, "se_UpdateDataSourcePermissionsCommand");
|
|
5198
5256
|
var se_UpdateFolderCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5199
|
-
const b = (0,
|
|
5257
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5200
5258
|
const headers = {
|
|
5201
5259
|
"content-type": "application/json"
|
|
5202
5260
|
};
|
|
@@ -5213,7 +5271,7 @@ var se_UpdateFolderCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
5213
5271
|
return b.build();
|
|
5214
5272
|
}, "se_UpdateFolderCommand");
|
|
5215
5273
|
var se_UpdateFolderPermissionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5216
|
-
const b = (0,
|
|
5274
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5217
5275
|
const headers = {
|
|
5218
5276
|
"content-type": "application/json"
|
|
5219
5277
|
};
|
|
@@ -5231,7 +5289,7 @@ var se_UpdateFolderPermissionsCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
5231
5289
|
return b.build();
|
|
5232
5290
|
}, "se_UpdateFolderPermissionsCommand");
|
|
5233
5291
|
var se_UpdateGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5234
|
-
const b = (0,
|
|
5292
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5235
5293
|
const headers = {
|
|
5236
5294
|
"content-type": "application/json"
|
|
5237
5295
|
};
|
|
@@ -5249,7 +5307,7 @@ var se_UpdateGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
5249
5307
|
return b.build();
|
|
5250
5308
|
}, "se_UpdateGroupCommand");
|
|
5251
5309
|
var se_UpdateIAMPolicyAssignmentCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5252
|
-
const b = (0,
|
|
5310
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5253
5311
|
const headers = {
|
|
5254
5312
|
"content-type": "application/json"
|
|
5255
5313
|
};
|
|
@@ -5269,7 +5327,7 @@ var se_UpdateIAMPolicyAssignmentCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
5269
5327
|
return b.build();
|
|
5270
5328
|
}, "se_UpdateIAMPolicyAssignmentCommand");
|
|
5271
5329
|
var se_UpdateIdentityPropagationConfigCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5272
|
-
const b = (0,
|
|
5330
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5273
5331
|
const headers = {
|
|
5274
5332
|
"content-type": "application/json"
|
|
5275
5333
|
};
|
|
@@ -5286,7 +5344,7 @@ var se_UpdateIdentityPropagationConfigCommand = /* @__PURE__ */ __name(async (in
|
|
|
5286
5344
|
return b.build();
|
|
5287
5345
|
}, "se_UpdateIdentityPropagationConfigCommand");
|
|
5288
5346
|
var se_UpdateIpRestrictionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5289
|
-
const b = (0,
|
|
5347
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5290
5348
|
const headers = {
|
|
5291
5349
|
"content-type": "application/json"
|
|
5292
5350
|
};
|
|
@@ -5303,7 +5361,7 @@ var se_UpdateIpRestrictionCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
5303
5361
|
return b.build();
|
|
5304
5362
|
}, "se_UpdateIpRestrictionCommand");
|
|
5305
5363
|
var se_UpdatePublicSharingSettingsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5306
|
-
const b = (0,
|
|
5364
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5307
5365
|
const headers = {
|
|
5308
5366
|
"content-type": "application/json"
|
|
5309
5367
|
};
|
|
@@ -5319,7 +5377,7 @@ var se_UpdatePublicSharingSettingsCommand = /* @__PURE__ */ __name(async (input,
|
|
|
5319
5377
|
return b.build();
|
|
5320
5378
|
}, "se_UpdatePublicSharingSettingsCommand");
|
|
5321
5379
|
var se_UpdateRefreshScheduleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5322
|
-
const b = (0,
|
|
5380
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5323
5381
|
const headers = {
|
|
5324
5382
|
"content-type": "application/json"
|
|
5325
5383
|
};
|
|
@@ -5336,7 +5394,7 @@ var se_UpdateRefreshScheduleCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
5336
5394
|
return b.build();
|
|
5337
5395
|
}, "se_UpdateRefreshScheduleCommand");
|
|
5338
5396
|
var se_UpdateRoleCustomPermissionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5339
|
-
const b = (0,
|
|
5397
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5340
5398
|
const headers = {
|
|
5341
5399
|
"content-type": "application/json"
|
|
5342
5400
|
};
|
|
@@ -5354,7 +5412,7 @@ var se_UpdateRoleCustomPermissionCommand = /* @__PURE__ */ __name(async (input,
|
|
|
5354
5412
|
return b.build();
|
|
5355
5413
|
}, "se_UpdateRoleCustomPermissionCommand");
|
|
5356
5414
|
var se_UpdateTemplateCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5357
|
-
const b = (0,
|
|
5415
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5358
5416
|
const headers = {
|
|
5359
5417
|
"content-type": "application/json"
|
|
5360
5418
|
};
|
|
@@ -5375,7 +5433,7 @@ var se_UpdateTemplateCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
5375
5433
|
return b.build();
|
|
5376
5434
|
}, "se_UpdateTemplateCommand");
|
|
5377
5435
|
var se_UpdateTemplateAliasCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5378
|
-
const b = (0,
|
|
5436
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5379
5437
|
const headers = {
|
|
5380
5438
|
"content-type": "application/json"
|
|
5381
5439
|
};
|
|
@@ -5393,7 +5451,7 @@ var se_UpdateTemplateAliasCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
5393
5451
|
return b.build();
|
|
5394
5452
|
}, "se_UpdateTemplateAliasCommand");
|
|
5395
5453
|
var se_UpdateTemplatePermissionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5396
|
-
const b = (0,
|
|
5454
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5397
5455
|
const headers = {
|
|
5398
5456
|
"content-type": "application/json"
|
|
5399
5457
|
};
|
|
@@ -5411,7 +5469,7 @@ var se_UpdateTemplatePermissionsCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
5411
5469
|
return b.build();
|
|
5412
5470
|
}, "se_UpdateTemplatePermissionsCommand");
|
|
5413
5471
|
var se_UpdateThemeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5414
|
-
const b = (0,
|
|
5472
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5415
5473
|
const headers = {
|
|
5416
5474
|
"content-type": "application/json"
|
|
5417
5475
|
};
|
|
@@ -5431,7 +5489,7 @@ var se_UpdateThemeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
5431
5489
|
return b.build();
|
|
5432
5490
|
}, "se_UpdateThemeCommand");
|
|
5433
5491
|
var se_UpdateThemeAliasCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5434
|
-
const b = (0,
|
|
5492
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5435
5493
|
const headers = {
|
|
5436
5494
|
"content-type": "application/json"
|
|
5437
5495
|
};
|
|
@@ -5449,7 +5507,7 @@ var se_UpdateThemeAliasCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
5449
5507
|
return b.build();
|
|
5450
5508
|
}, "se_UpdateThemeAliasCommand");
|
|
5451
5509
|
var se_UpdateThemePermissionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5452
|
-
const b = (0,
|
|
5510
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5453
5511
|
const headers = {
|
|
5454
5512
|
"content-type": "application/json"
|
|
5455
5513
|
};
|
|
@@ -5467,7 +5525,7 @@ var se_UpdateThemePermissionsCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
5467
5525
|
return b.build();
|
|
5468
5526
|
}, "se_UpdateThemePermissionsCommand");
|
|
5469
5527
|
var se_UpdateTopicCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5470
|
-
const b = (0,
|
|
5528
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5471
5529
|
const headers = {
|
|
5472
5530
|
"content-type": "application/json"
|
|
5473
5531
|
};
|
|
@@ -5484,7 +5542,7 @@ var se_UpdateTopicCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
5484
5542
|
return b.build();
|
|
5485
5543
|
}, "se_UpdateTopicCommand");
|
|
5486
5544
|
var se_UpdateTopicPermissionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5487
|
-
const b = (0,
|
|
5545
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5488
5546
|
const headers = {
|
|
5489
5547
|
"content-type": "application/json"
|
|
5490
5548
|
};
|
|
@@ -5502,7 +5560,7 @@ var se_UpdateTopicPermissionsCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
5502
5560
|
return b.build();
|
|
5503
5561
|
}, "se_UpdateTopicPermissionsCommand");
|
|
5504
5562
|
var se_UpdateTopicRefreshScheduleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5505
|
-
const b = (0,
|
|
5563
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5506
5564
|
const headers = {
|
|
5507
5565
|
"content-type": "application/json"
|
|
5508
5566
|
};
|
|
@@ -5520,7 +5578,7 @@ var se_UpdateTopicRefreshScheduleCommand = /* @__PURE__ */ __name(async (input,
|
|
|
5520
5578
|
return b.build();
|
|
5521
5579
|
}, "se_UpdateTopicRefreshScheduleCommand");
|
|
5522
5580
|
var se_UpdateUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5523
|
-
const b = (0,
|
|
5581
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5524
5582
|
const headers = {
|
|
5525
5583
|
"content-type": "application/json"
|
|
5526
5584
|
};
|
|
@@ -5544,7 +5602,7 @@ var se_UpdateUserCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
5544
5602
|
return b.build();
|
|
5545
5603
|
}, "se_UpdateUserCommand");
|
|
5546
5604
|
var se_UpdateVPCConnectionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5547
|
-
const b = (0,
|
|
5605
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5548
5606
|
const headers = {
|
|
5549
5607
|
"content-type": "application/json"
|
|
5550
5608
|
};
|
|
@@ -11979,7 +12037,7 @@ var de_DataSource = /* @__PURE__ */ __name((output, context) => {
|
|
|
11979
12037
|
Arn: import_smithy_client.expectString,
|
|
11980
12038
|
CreatedTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
11981
12039
|
DataSourceId: import_smithy_client.expectString,
|
|
11982
|
-
DataSourceParameters: (_) => (0, import_smithy_client._json)((0,
|
|
12040
|
+
DataSourceParameters: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
11983
12041
|
ErrorInfo: import_smithy_client._json,
|
|
11984
12042
|
LastUpdatedTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
11985
12043
|
Name: import_smithy_client.expectString,
|
|
@@ -13828,7 +13886,7 @@ var de_TransformOperation = /* @__PURE__ */ __name((output, context) => {
|
|
|
13828
13886
|
}, "de_TransformOperation");
|
|
13829
13887
|
var de_TransformOperationList = /* @__PURE__ */ __name((output, context) => {
|
|
13830
13888
|
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
13831
|
-
return de_TransformOperation((0,
|
|
13889
|
+
return de_TransformOperation((0, import_core2.awsExpectUnion)(entry), context);
|
|
13832
13890
|
});
|
|
13833
13891
|
return retVal;
|
|
13834
13892
|
}, "de_TransformOperationList");
|
|
@@ -17320,136 +17378,136 @@ var QuickSight = _QuickSight;
|
|
|
17320
17378
|
(0, import_smithy_client.createAggregatedClient)(commands, QuickSight);
|
|
17321
17379
|
|
|
17322
17380
|
// src/pagination/DescribeFolderPermissionsPaginator.ts
|
|
17323
|
-
|
|
17324
|
-
var paginateDescribeFolderPermissions = (0,
|
|
17381
|
+
|
|
17382
|
+
var paginateDescribeFolderPermissions = (0, import_core.createPaginator)(QuickSightClient, DescribeFolderPermissionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
17325
17383
|
|
|
17326
17384
|
// src/pagination/DescribeFolderResolvedPermissionsPaginator.ts
|
|
17327
|
-
|
|
17328
|
-
var paginateDescribeFolderResolvedPermissions = (0,
|
|
17385
|
+
|
|
17386
|
+
var paginateDescribeFolderResolvedPermissions = (0, import_core.createPaginator)(QuickSightClient, DescribeFolderResolvedPermissionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
17329
17387
|
|
|
17330
17388
|
// src/pagination/ListAnalysesPaginator.ts
|
|
17331
|
-
|
|
17332
|
-
var paginateListAnalyses = (0,
|
|
17389
|
+
|
|
17390
|
+
var paginateListAnalyses = (0, import_core.createPaginator)(QuickSightClient, ListAnalysesCommand, "NextToken", "NextToken", "MaxResults");
|
|
17333
17391
|
|
|
17334
17392
|
// src/pagination/ListAssetBundleExportJobsPaginator.ts
|
|
17335
|
-
|
|
17336
|
-
var paginateListAssetBundleExportJobs = (0,
|
|
17393
|
+
|
|
17394
|
+
var paginateListAssetBundleExportJobs = (0, import_core.createPaginator)(QuickSightClient, ListAssetBundleExportJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
17337
17395
|
|
|
17338
17396
|
// src/pagination/ListAssetBundleImportJobsPaginator.ts
|
|
17339
|
-
|
|
17340
|
-
var paginateListAssetBundleImportJobs = (0,
|
|
17397
|
+
|
|
17398
|
+
var paginateListAssetBundleImportJobs = (0, import_core.createPaginator)(QuickSightClient, ListAssetBundleImportJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
17341
17399
|
|
|
17342
17400
|
// src/pagination/ListDashboardVersionsPaginator.ts
|
|
17343
|
-
|
|
17344
|
-
var paginateListDashboardVersions = (0,
|
|
17401
|
+
|
|
17402
|
+
var paginateListDashboardVersions = (0, import_core.createPaginator)(QuickSightClient, ListDashboardVersionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
17345
17403
|
|
|
17346
17404
|
// src/pagination/ListDashboardsPaginator.ts
|
|
17347
|
-
|
|
17348
|
-
var paginateListDashboards = (0,
|
|
17405
|
+
|
|
17406
|
+
var paginateListDashboards = (0, import_core.createPaginator)(QuickSightClient, ListDashboardsCommand, "NextToken", "NextToken", "MaxResults");
|
|
17349
17407
|
|
|
17350
17408
|
// src/pagination/ListDataSetsPaginator.ts
|
|
17351
|
-
|
|
17352
|
-
var paginateListDataSets = (0,
|
|
17409
|
+
|
|
17410
|
+
var paginateListDataSets = (0, import_core.createPaginator)(QuickSightClient, ListDataSetsCommand, "NextToken", "NextToken", "MaxResults");
|
|
17353
17411
|
|
|
17354
17412
|
// src/pagination/ListDataSourcesPaginator.ts
|
|
17355
|
-
|
|
17356
|
-
var paginateListDataSources = (0,
|
|
17413
|
+
|
|
17414
|
+
var paginateListDataSources = (0, import_core.createPaginator)(QuickSightClient, ListDataSourcesCommand, "NextToken", "NextToken", "MaxResults");
|
|
17357
17415
|
|
|
17358
17416
|
// src/pagination/ListFolderMembersPaginator.ts
|
|
17359
|
-
|
|
17360
|
-
var paginateListFolderMembers = (0,
|
|
17417
|
+
|
|
17418
|
+
var paginateListFolderMembers = (0, import_core.createPaginator)(QuickSightClient, ListFolderMembersCommand, "NextToken", "NextToken", "MaxResults");
|
|
17361
17419
|
|
|
17362
17420
|
// src/pagination/ListFoldersPaginator.ts
|
|
17363
|
-
|
|
17364
|
-
var paginateListFolders = (0,
|
|
17421
|
+
|
|
17422
|
+
var paginateListFolders = (0, import_core.createPaginator)(QuickSightClient, ListFoldersCommand, "NextToken", "NextToken", "MaxResults");
|
|
17365
17423
|
|
|
17366
17424
|
// src/pagination/ListGroupMembershipsPaginator.ts
|
|
17367
|
-
|
|
17368
|
-
var paginateListGroupMemberships = (0,
|
|
17425
|
+
|
|
17426
|
+
var paginateListGroupMemberships = (0, import_core.createPaginator)(QuickSightClient, ListGroupMembershipsCommand, "NextToken", "NextToken", "MaxResults");
|
|
17369
17427
|
|
|
17370
17428
|
// src/pagination/ListGroupsPaginator.ts
|
|
17371
|
-
|
|
17372
|
-
var paginateListGroups = (0,
|
|
17429
|
+
|
|
17430
|
+
var paginateListGroups = (0, import_core.createPaginator)(QuickSightClient, ListGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
17373
17431
|
|
|
17374
17432
|
// src/pagination/ListIAMPolicyAssignmentsForUserPaginator.ts
|
|
17375
|
-
|
|
17376
|
-
var paginateListIAMPolicyAssignmentsForUser = (0,
|
|
17433
|
+
|
|
17434
|
+
var paginateListIAMPolicyAssignmentsForUser = (0, import_core.createPaginator)(QuickSightClient, ListIAMPolicyAssignmentsForUserCommand, "NextToken", "NextToken", "MaxResults");
|
|
17377
17435
|
|
|
17378
17436
|
// src/pagination/ListIAMPolicyAssignmentsPaginator.ts
|
|
17379
|
-
|
|
17380
|
-
var paginateListIAMPolicyAssignments = (0,
|
|
17437
|
+
|
|
17438
|
+
var paginateListIAMPolicyAssignments = (0, import_core.createPaginator)(QuickSightClient, ListIAMPolicyAssignmentsCommand, "NextToken", "NextToken", "MaxResults");
|
|
17381
17439
|
|
|
17382
17440
|
// src/pagination/ListIngestionsPaginator.ts
|
|
17383
|
-
|
|
17384
|
-
var paginateListIngestions = (0,
|
|
17441
|
+
|
|
17442
|
+
var paginateListIngestions = (0, import_core.createPaginator)(QuickSightClient, ListIngestionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
17385
17443
|
|
|
17386
17444
|
// src/pagination/ListNamespacesPaginator.ts
|
|
17387
|
-
|
|
17388
|
-
var paginateListNamespaces = (0,
|
|
17445
|
+
|
|
17446
|
+
var paginateListNamespaces = (0, import_core.createPaginator)(QuickSightClient, ListNamespacesCommand, "NextToken", "NextToken", "MaxResults");
|
|
17389
17447
|
|
|
17390
17448
|
// src/pagination/ListRoleMembershipsPaginator.ts
|
|
17391
|
-
|
|
17392
|
-
var paginateListRoleMemberships = (0,
|
|
17449
|
+
|
|
17450
|
+
var paginateListRoleMemberships = (0, import_core.createPaginator)(QuickSightClient, ListRoleMembershipsCommand, "NextToken", "NextToken", "MaxResults");
|
|
17393
17451
|
|
|
17394
17452
|
// src/pagination/ListTemplateAliasesPaginator.ts
|
|
17395
|
-
|
|
17396
|
-
var paginateListTemplateAliases = (0,
|
|
17453
|
+
|
|
17454
|
+
var paginateListTemplateAliases = (0, import_core.createPaginator)(QuickSightClient, ListTemplateAliasesCommand, "NextToken", "NextToken", "MaxResults");
|
|
17397
17455
|
|
|
17398
17456
|
// src/pagination/ListTemplateVersionsPaginator.ts
|
|
17399
|
-
|
|
17400
|
-
var paginateListTemplateVersions = (0,
|
|
17457
|
+
|
|
17458
|
+
var paginateListTemplateVersions = (0, import_core.createPaginator)(QuickSightClient, ListTemplateVersionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
17401
17459
|
|
|
17402
17460
|
// src/pagination/ListTemplatesPaginator.ts
|
|
17403
|
-
|
|
17404
|
-
var paginateListTemplates = (0,
|
|
17461
|
+
|
|
17462
|
+
var paginateListTemplates = (0, import_core.createPaginator)(QuickSightClient, ListTemplatesCommand, "NextToken", "NextToken", "MaxResults");
|
|
17405
17463
|
|
|
17406
17464
|
// src/pagination/ListThemeVersionsPaginator.ts
|
|
17407
|
-
|
|
17408
|
-
var paginateListThemeVersions = (0,
|
|
17465
|
+
|
|
17466
|
+
var paginateListThemeVersions = (0, import_core.createPaginator)(QuickSightClient, ListThemeVersionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
17409
17467
|
|
|
17410
17468
|
// src/pagination/ListThemesPaginator.ts
|
|
17411
|
-
|
|
17412
|
-
var paginateListThemes = (0,
|
|
17469
|
+
|
|
17470
|
+
var paginateListThemes = (0, import_core.createPaginator)(QuickSightClient, ListThemesCommand, "NextToken", "NextToken", "MaxResults");
|
|
17413
17471
|
|
|
17414
17472
|
// src/pagination/ListTopicsPaginator.ts
|
|
17415
|
-
|
|
17416
|
-
var paginateListTopics = (0,
|
|
17473
|
+
|
|
17474
|
+
var paginateListTopics = (0, import_core.createPaginator)(QuickSightClient, ListTopicsCommand, "NextToken", "NextToken", "MaxResults");
|
|
17417
17475
|
|
|
17418
17476
|
// src/pagination/ListUserGroupsPaginator.ts
|
|
17419
|
-
|
|
17420
|
-
var paginateListUserGroups = (0,
|
|
17477
|
+
|
|
17478
|
+
var paginateListUserGroups = (0, import_core.createPaginator)(QuickSightClient, ListUserGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
17421
17479
|
|
|
17422
17480
|
// src/pagination/ListUsersPaginator.ts
|
|
17423
|
-
|
|
17424
|
-
var paginateListUsers = (0,
|
|
17481
|
+
|
|
17482
|
+
var paginateListUsers = (0, import_core.createPaginator)(QuickSightClient, ListUsersCommand, "NextToken", "NextToken", "MaxResults");
|
|
17425
17483
|
|
|
17426
17484
|
// src/pagination/ListVPCConnectionsPaginator.ts
|
|
17427
|
-
|
|
17428
|
-
var paginateListVPCConnections = (0,
|
|
17485
|
+
|
|
17486
|
+
var paginateListVPCConnections = (0, import_core.createPaginator)(QuickSightClient, ListVPCConnectionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
17429
17487
|
|
|
17430
17488
|
// src/pagination/SearchAnalysesPaginator.ts
|
|
17431
|
-
|
|
17432
|
-
var paginateSearchAnalyses = (0,
|
|
17489
|
+
|
|
17490
|
+
var paginateSearchAnalyses = (0, import_core.createPaginator)(QuickSightClient, SearchAnalysesCommand, "NextToken", "NextToken", "MaxResults");
|
|
17433
17491
|
|
|
17434
17492
|
// src/pagination/SearchDashboardsPaginator.ts
|
|
17435
|
-
|
|
17436
|
-
var paginateSearchDashboards = (0,
|
|
17493
|
+
|
|
17494
|
+
var paginateSearchDashboards = (0, import_core.createPaginator)(QuickSightClient, SearchDashboardsCommand, "NextToken", "NextToken", "MaxResults");
|
|
17437
17495
|
|
|
17438
17496
|
// src/pagination/SearchDataSetsPaginator.ts
|
|
17439
|
-
|
|
17440
|
-
var paginateSearchDataSets = (0,
|
|
17497
|
+
|
|
17498
|
+
var paginateSearchDataSets = (0, import_core.createPaginator)(QuickSightClient, SearchDataSetsCommand, "NextToken", "NextToken", "MaxResults");
|
|
17441
17499
|
|
|
17442
17500
|
// src/pagination/SearchDataSourcesPaginator.ts
|
|
17443
|
-
|
|
17444
|
-
var paginateSearchDataSources = (0,
|
|
17501
|
+
|
|
17502
|
+
var paginateSearchDataSources = (0, import_core.createPaginator)(QuickSightClient, SearchDataSourcesCommand, "NextToken", "NextToken", "MaxResults");
|
|
17445
17503
|
|
|
17446
17504
|
// src/pagination/SearchFoldersPaginator.ts
|
|
17447
|
-
|
|
17448
|
-
var paginateSearchFolders = (0,
|
|
17505
|
+
|
|
17506
|
+
var paginateSearchFolders = (0, import_core.createPaginator)(QuickSightClient, SearchFoldersCommand, "NextToken", "NextToken", "MaxResults");
|
|
17449
17507
|
|
|
17450
17508
|
// src/pagination/SearchGroupsPaginator.ts
|
|
17451
|
-
|
|
17452
|
-
var paginateSearchGroups = (0,
|
|
17509
|
+
|
|
17510
|
+
var paginateSearchGroups = (0, import_core.createPaginator)(QuickSightClient, SearchGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
17453
17511
|
|
|
17454
17512
|
// src/models/models_1.ts
|
|
17455
17513
|
|