@aws-sdk/client-datazone 3.509.0 → 3.513.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 +234 -176
- package/dist-cjs/runtimeConfig.shared.js +10 -0
- package/dist-es/DataZoneClient.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/DataZoneClient.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 +5 -3
- 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/DataZoneClient.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 +16 -16
package/dist-cjs/index.js
CHANGED
|
@@ -350,13 +350,14 @@ module.exports = __toCommonJS(src_exports);
|
|
|
350
350
|
var import_middleware_host_header = require("@aws-sdk/middleware-host-header");
|
|
351
351
|
var import_middleware_logger = require("@aws-sdk/middleware-logger");
|
|
352
352
|
var import_middleware_recursion_detection = require("@aws-sdk/middleware-recursion-detection");
|
|
353
|
-
var import_middleware_signing = require("@aws-sdk/middleware-signing");
|
|
354
353
|
var import_middleware_user_agent = require("@aws-sdk/middleware-user-agent");
|
|
355
354
|
var import_config_resolver = require("@smithy/config-resolver");
|
|
355
|
+
var import_core = require("@smithy/core");
|
|
356
356
|
var import_middleware_content_length = require("@smithy/middleware-content-length");
|
|
357
357
|
var import_middleware_endpoint = require("@smithy/middleware-endpoint");
|
|
358
358
|
var import_middleware_retry = require("@smithy/middleware-retry");
|
|
359
359
|
|
|
360
|
+
var import_httpAuthSchemeProvider = require("./auth/httpAuthSchemeProvider");
|
|
360
361
|
|
|
361
362
|
// src/endpoint/EndpointParameters.ts
|
|
362
363
|
var resolveClientEndpointParameters = /* @__PURE__ */ __name((options) => {
|
|
@@ -379,19 +380,62 @@ var import_runtimeConfig = require("././runtimeConfig");
|
|
|
379
380
|
var import_region_config_resolver = require("@aws-sdk/region-config-resolver");
|
|
380
381
|
var import_protocol_http = require("@smithy/protocol-http");
|
|
381
382
|
var import_smithy_client = require("@smithy/smithy-client");
|
|
383
|
+
|
|
384
|
+
// src/auth/httpAuthExtensionConfiguration.ts
|
|
385
|
+
var getHttpAuthExtensionConfiguration = /* @__PURE__ */ __name((runtimeConfig) => {
|
|
386
|
+
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
387
|
+
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
388
|
+
let _credentials = runtimeConfig.credentials;
|
|
389
|
+
return {
|
|
390
|
+
setHttpAuthScheme(httpAuthScheme) {
|
|
391
|
+
const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);
|
|
392
|
+
if (index === -1) {
|
|
393
|
+
_httpAuthSchemes.push(httpAuthScheme);
|
|
394
|
+
} else {
|
|
395
|
+
_httpAuthSchemes.splice(index, 1, httpAuthScheme);
|
|
396
|
+
}
|
|
397
|
+
},
|
|
398
|
+
httpAuthSchemes() {
|
|
399
|
+
return _httpAuthSchemes;
|
|
400
|
+
},
|
|
401
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider) {
|
|
402
|
+
_httpAuthSchemeProvider = httpAuthSchemeProvider;
|
|
403
|
+
},
|
|
404
|
+
httpAuthSchemeProvider() {
|
|
405
|
+
return _httpAuthSchemeProvider;
|
|
406
|
+
},
|
|
407
|
+
setCredentials(credentials) {
|
|
408
|
+
_credentials = credentials;
|
|
409
|
+
},
|
|
410
|
+
credentials() {
|
|
411
|
+
return _credentials;
|
|
412
|
+
}
|
|
413
|
+
};
|
|
414
|
+
}, "getHttpAuthExtensionConfiguration");
|
|
415
|
+
var resolveHttpAuthRuntimeConfig = /* @__PURE__ */ __name((config) => {
|
|
416
|
+
return {
|
|
417
|
+
httpAuthSchemes: config.httpAuthSchemes(),
|
|
418
|
+
httpAuthSchemeProvider: config.httpAuthSchemeProvider(),
|
|
419
|
+
credentials: config.credentials()
|
|
420
|
+
};
|
|
421
|
+
}, "resolveHttpAuthRuntimeConfig");
|
|
422
|
+
|
|
423
|
+
// src/runtimeExtensions.ts
|
|
382
424
|
var asPartial = /* @__PURE__ */ __name((t) => t, "asPartial");
|
|
383
425
|
var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions) => {
|
|
384
426
|
const extensionConfiguration = {
|
|
385
427
|
...asPartial((0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig)),
|
|
386
428
|
...asPartial((0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig)),
|
|
387
|
-
...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig))
|
|
429
|
+
...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig)),
|
|
430
|
+
...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig))
|
|
388
431
|
};
|
|
389
432
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
390
433
|
return {
|
|
391
434
|
...runtimeConfig,
|
|
392
435
|
...(0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
|
|
393
436
|
...(0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
|
|
394
|
-
...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration)
|
|
437
|
+
...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
|
|
438
|
+
...resolveHttpAuthRuntimeConfig(extensionConfiguration)
|
|
395
439
|
};
|
|
396
440
|
}, "resolveRuntimeExtensions");
|
|
397
441
|
|
|
@@ -404,8 +448,8 @@ var _DataZoneClient = class _DataZoneClient extends import_smithy_client.Client
|
|
|
404
448
|
const _config_3 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_2);
|
|
405
449
|
const _config_4 = (0, import_middleware_retry.resolveRetryConfig)(_config_3);
|
|
406
450
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
407
|
-
const _config_6 = (0,
|
|
408
|
-
const _config_7 = (0,
|
|
451
|
+
const _config_6 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_5);
|
|
452
|
+
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
409
453
|
const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
|
|
410
454
|
super(_config_8);
|
|
411
455
|
this.config = _config_8;
|
|
@@ -414,8 +458,14 @@ var _DataZoneClient = class _DataZoneClient extends import_smithy_client.Client
|
|
|
414
458
|
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
415
459
|
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
416
460
|
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
417
|
-
this.middlewareStack.use((0, import_middleware_signing.getAwsAuthPlugin)(this.config));
|
|
418
461
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
462
|
+
this.middlewareStack.use(
|
|
463
|
+
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
464
|
+
httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
|
|
465
|
+
identityProviderConfigProvider: this.getIdentityProviderConfigProvider()
|
|
466
|
+
})
|
|
467
|
+
);
|
|
468
|
+
this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
|
|
419
469
|
}
|
|
420
470
|
/**
|
|
421
471
|
* Destroy underlying resources, like sockets. It's usually not necessary to do this.
|
|
@@ -425,6 +475,14 @@ var _DataZoneClient = class _DataZoneClient extends import_smithy_client.Client
|
|
|
425
475
|
destroy() {
|
|
426
476
|
super.destroy();
|
|
427
477
|
}
|
|
478
|
+
getDefaultHttpAuthSchemeParametersProvider() {
|
|
479
|
+
return import_httpAuthSchemeProvider.defaultDataZoneHttpAuthSchemeParametersProvider;
|
|
480
|
+
}
|
|
481
|
+
getIdentityProviderConfigProvider() {
|
|
482
|
+
return async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
483
|
+
"aws.auth#sigv4": config.credentials
|
|
484
|
+
});
|
|
485
|
+
}
|
|
428
486
|
};
|
|
429
487
|
__name(_DataZoneClient, "DataZoneClient");
|
|
430
488
|
var DataZoneClient = _DataZoneClient;
|
|
@@ -439,8 +497,8 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
439
497
|
var import_types = require("@smithy/types");
|
|
440
498
|
|
|
441
499
|
// src/protocols/Aws_restJson1.ts
|
|
442
|
-
var
|
|
443
|
-
|
|
500
|
+
var import_core2 = require("@aws-sdk/core");
|
|
501
|
+
|
|
444
502
|
|
|
445
503
|
var import_uuid = require("uuid");
|
|
446
504
|
|
|
@@ -1830,7 +1888,7 @@ var UpdateUserProfileOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) =>
|
|
|
1830
1888
|
|
|
1831
1889
|
// src/protocols/Aws_restJson1.ts
|
|
1832
1890
|
var se_AcceptPredictionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1833
|
-
const b = (0,
|
|
1891
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1834
1892
|
const headers = {
|
|
1835
1893
|
"content-type": "application/json"
|
|
1836
1894
|
};
|
|
@@ -1852,7 +1910,7 @@ var se_AcceptPredictionsCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1852
1910
|
return b.build();
|
|
1853
1911
|
}, "se_AcceptPredictionsCommand");
|
|
1854
1912
|
var se_AcceptSubscriptionRequestCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1855
|
-
const b = (0,
|
|
1913
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1856
1914
|
const headers = {
|
|
1857
1915
|
"content-type": "application/json"
|
|
1858
1916
|
};
|
|
@@ -1869,7 +1927,7 @@ var se_AcceptSubscriptionRequestCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
1869
1927
|
return b.build();
|
|
1870
1928
|
}, "se_AcceptSubscriptionRequestCommand");
|
|
1871
1929
|
var se_CancelSubscriptionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1872
|
-
const b = (0,
|
|
1930
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1873
1931
|
const headers = {};
|
|
1874
1932
|
b.bp("/v2/domains/{domainIdentifier}/subscriptions/{identifier}/cancel");
|
|
1875
1933
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -1879,7 +1937,7 @@ var se_CancelSubscriptionCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1879
1937
|
return b.build();
|
|
1880
1938
|
}, "se_CancelSubscriptionCommand");
|
|
1881
1939
|
var se_CreateAssetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1882
|
-
const b = (0,
|
|
1940
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1883
1941
|
const headers = {
|
|
1884
1942
|
"content-type": "application/json"
|
|
1885
1943
|
};
|
|
@@ -1904,7 +1962,7 @@ var se_CreateAssetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1904
1962
|
return b.build();
|
|
1905
1963
|
}, "se_CreateAssetCommand");
|
|
1906
1964
|
var se_CreateAssetRevisionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1907
|
-
const b = (0,
|
|
1965
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1908
1966
|
const headers = {
|
|
1909
1967
|
"content-type": "application/json"
|
|
1910
1968
|
};
|
|
@@ -1927,7 +1985,7 @@ var se_CreateAssetRevisionCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1927
1985
|
return b.build();
|
|
1928
1986
|
}, "se_CreateAssetRevisionCommand");
|
|
1929
1987
|
var se_CreateAssetTypeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1930
|
-
const b = (0,
|
|
1988
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1931
1989
|
const headers = {
|
|
1932
1990
|
"content-type": "application/json"
|
|
1933
1991
|
};
|
|
@@ -1946,7 +2004,7 @@ var se_CreateAssetTypeCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1946
2004
|
return b.build();
|
|
1947
2005
|
}, "se_CreateAssetTypeCommand");
|
|
1948
2006
|
var se_CreateDataSourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1949
|
-
const b = (0,
|
|
2007
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1950
2008
|
const headers = {
|
|
1951
2009
|
"content-type": "application/json"
|
|
1952
2010
|
};
|
|
@@ -1973,7 +2031,7 @@ var se_CreateDataSourceCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
1973
2031
|
return b.build();
|
|
1974
2032
|
}, "se_CreateDataSourceCommand");
|
|
1975
2033
|
var se_CreateDomainCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1976
|
-
const b = (0,
|
|
2034
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1977
2035
|
const headers = {
|
|
1978
2036
|
"content-type": "application/json"
|
|
1979
2037
|
};
|
|
@@ -1994,7 +2052,7 @@ var se_CreateDomainCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1994
2052
|
return b.build();
|
|
1995
2053
|
}, "se_CreateDomainCommand");
|
|
1996
2054
|
var se_CreateEnvironmentCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1997
|
-
const b = (0,
|
|
2055
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1998
2056
|
const headers = {
|
|
1999
2057
|
"content-type": "application/json"
|
|
2000
2058
|
};
|
|
@@ -2015,7 +2073,7 @@ var se_CreateEnvironmentCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
2015
2073
|
return b.build();
|
|
2016
2074
|
}, "se_CreateEnvironmentCommand");
|
|
2017
2075
|
var se_CreateEnvironmentProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2018
|
-
const b = (0,
|
|
2076
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2019
2077
|
const headers = {
|
|
2020
2078
|
"content-type": "application/json"
|
|
2021
2079
|
};
|
|
@@ -2037,7 +2095,7 @@ var se_CreateEnvironmentProfileCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
2037
2095
|
return b.build();
|
|
2038
2096
|
}, "se_CreateEnvironmentProfileCommand");
|
|
2039
2097
|
var se_CreateFormTypeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2040
|
-
const b = (0,
|
|
2098
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2041
2099
|
const headers = {
|
|
2042
2100
|
"content-type": "application/json"
|
|
2043
2101
|
};
|
|
@@ -2057,7 +2115,7 @@ var se_CreateFormTypeCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
2057
2115
|
return b.build();
|
|
2058
2116
|
}, "se_CreateFormTypeCommand");
|
|
2059
2117
|
var se_CreateGlossaryCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2060
|
-
const b = (0,
|
|
2118
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2061
2119
|
const headers = {
|
|
2062
2120
|
"content-type": "application/json"
|
|
2063
2121
|
};
|
|
@@ -2077,7 +2135,7 @@ var se_CreateGlossaryCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
2077
2135
|
return b.build();
|
|
2078
2136
|
}, "se_CreateGlossaryCommand");
|
|
2079
2137
|
var se_CreateGlossaryTermCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2080
|
-
const b = (0,
|
|
2138
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2081
2139
|
const headers = {
|
|
2082
2140
|
"content-type": "application/json"
|
|
2083
2141
|
};
|
|
@@ -2099,7 +2157,7 @@ var se_CreateGlossaryTermCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
2099
2157
|
return b.build();
|
|
2100
2158
|
}, "se_CreateGlossaryTermCommand");
|
|
2101
2159
|
var se_CreateGroupProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2102
|
-
const b = (0,
|
|
2160
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2103
2161
|
const headers = {
|
|
2104
2162
|
"content-type": "application/json"
|
|
2105
2163
|
};
|
|
@@ -2116,7 +2174,7 @@ var se_CreateGroupProfileCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
2116
2174
|
return b.build();
|
|
2117
2175
|
}, "se_CreateGroupProfileCommand");
|
|
2118
2176
|
var se_CreateListingChangeSetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2119
|
-
const b = (0,
|
|
2177
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2120
2178
|
const headers = {
|
|
2121
2179
|
"content-type": "application/json"
|
|
2122
2180
|
};
|
|
@@ -2136,7 +2194,7 @@ var se_CreateListingChangeSetCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
2136
2194
|
return b.build();
|
|
2137
2195
|
}, "se_CreateListingChangeSetCommand");
|
|
2138
2196
|
var se_CreateProjectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2139
|
-
const b = (0,
|
|
2197
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2140
2198
|
const headers = {
|
|
2141
2199
|
"content-type": "application/json"
|
|
2142
2200
|
};
|
|
@@ -2154,7 +2212,7 @@ var se_CreateProjectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2154
2212
|
return b.build();
|
|
2155
2213
|
}, "se_CreateProjectCommand");
|
|
2156
2214
|
var se_CreateProjectMembershipCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2157
|
-
const b = (0,
|
|
2215
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2158
2216
|
const headers = {
|
|
2159
2217
|
"content-type": "application/json"
|
|
2160
2218
|
};
|
|
@@ -2172,7 +2230,7 @@ var se_CreateProjectMembershipCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
2172
2230
|
return b.build();
|
|
2173
2231
|
}, "se_CreateProjectMembershipCommand");
|
|
2174
2232
|
var se_CreateSubscriptionGrantCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2175
|
-
const b = (0,
|
|
2233
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2176
2234
|
const headers = {
|
|
2177
2235
|
"content-type": "application/json"
|
|
2178
2236
|
};
|
|
@@ -2192,7 +2250,7 @@ var se_CreateSubscriptionGrantCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
2192
2250
|
return b.build();
|
|
2193
2251
|
}, "se_CreateSubscriptionGrantCommand");
|
|
2194
2252
|
var se_CreateSubscriptionRequestCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2195
|
-
const b = (0,
|
|
2253
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2196
2254
|
const headers = {
|
|
2197
2255
|
"content-type": "application/json"
|
|
2198
2256
|
};
|
|
@@ -2211,7 +2269,7 @@ var se_CreateSubscriptionRequestCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
2211
2269
|
return b.build();
|
|
2212
2270
|
}, "se_CreateSubscriptionRequestCommand");
|
|
2213
2271
|
var se_CreateSubscriptionTargetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2214
|
-
const b = (0,
|
|
2272
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2215
2273
|
const headers = {
|
|
2216
2274
|
"content-type": "application/json"
|
|
2217
2275
|
};
|
|
@@ -2235,7 +2293,7 @@ var se_CreateSubscriptionTargetCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
2235
2293
|
return b.build();
|
|
2236
2294
|
}, "se_CreateSubscriptionTargetCommand");
|
|
2237
2295
|
var se_CreateUserProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2238
|
-
const b = (0,
|
|
2296
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2239
2297
|
const headers = {
|
|
2240
2298
|
"content-type": "application/json"
|
|
2241
2299
|
};
|
|
@@ -2253,7 +2311,7 @@ var se_CreateUserProfileCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
2253
2311
|
return b.build();
|
|
2254
2312
|
}, "se_CreateUserProfileCommand");
|
|
2255
2313
|
var se_DeleteAssetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2256
|
-
const b = (0,
|
|
2314
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2257
2315
|
const headers = {};
|
|
2258
2316
|
b.bp("/v2/domains/{domainIdentifier}/assets/{identifier}");
|
|
2259
2317
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2263,7 +2321,7 @@ var se_DeleteAssetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2263
2321
|
return b.build();
|
|
2264
2322
|
}, "se_DeleteAssetCommand");
|
|
2265
2323
|
var se_DeleteAssetTypeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2266
|
-
const b = (0,
|
|
2324
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2267
2325
|
const headers = {};
|
|
2268
2326
|
b.bp("/v2/domains/{domainIdentifier}/asset-types/{identifier}");
|
|
2269
2327
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2273,7 +2331,7 @@ var se_DeleteAssetTypeCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
2273
2331
|
return b.build();
|
|
2274
2332
|
}, "se_DeleteAssetTypeCommand");
|
|
2275
2333
|
var se_DeleteDataSourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2276
|
-
const b = (0,
|
|
2334
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2277
2335
|
const headers = {};
|
|
2278
2336
|
b.bp("/v2/domains/{domainIdentifier}/data-sources/{identifier}");
|
|
2279
2337
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2286,7 +2344,7 @@ var se_DeleteDataSourceCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
2286
2344
|
return b.build();
|
|
2287
2345
|
}, "se_DeleteDataSourceCommand");
|
|
2288
2346
|
var se_DeleteDomainCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2289
|
-
const b = (0,
|
|
2347
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2290
2348
|
const headers = {};
|
|
2291
2349
|
b.bp("/v2/domains/{identifier}");
|
|
2292
2350
|
b.p("identifier", () => input.identifier, "{identifier}", false);
|
|
@@ -2299,7 +2357,7 @@ var se_DeleteDomainCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2299
2357
|
return b.build();
|
|
2300
2358
|
}, "se_DeleteDomainCommand");
|
|
2301
2359
|
var se_DeleteEnvironmentCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2302
|
-
const b = (0,
|
|
2360
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2303
2361
|
const headers = {};
|
|
2304
2362
|
b.bp("/v2/domains/{domainIdentifier}/environments/{identifier}");
|
|
2305
2363
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2309,7 +2367,7 @@ var se_DeleteEnvironmentCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
2309
2367
|
return b.build();
|
|
2310
2368
|
}, "se_DeleteEnvironmentCommand");
|
|
2311
2369
|
var se_DeleteEnvironmentBlueprintConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2312
|
-
const b = (0,
|
|
2370
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2313
2371
|
const headers = {};
|
|
2314
2372
|
b.bp("/v2/domains/{domainIdentifier}/environment-blueprint-configurations/{environmentBlueprintIdentifier}");
|
|
2315
2373
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2324,7 +2382,7 @@ var se_DeleteEnvironmentBlueprintConfigurationCommand = /* @__PURE__ */ __name(a
|
|
|
2324
2382
|
return b.build();
|
|
2325
2383
|
}, "se_DeleteEnvironmentBlueprintConfigurationCommand");
|
|
2326
2384
|
var se_DeleteEnvironmentProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2327
|
-
const b = (0,
|
|
2385
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2328
2386
|
const headers = {};
|
|
2329
2387
|
b.bp("/v2/domains/{domainIdentifier}/environment-profiles/{identifier}");
|
|
2330
2388
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2334,7 +2392,7 @@ var se_DeleteEnvironmentProfileCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
2334
2392
|
return b.build();
|
|
2335
2393
|
}, "se_DeleteEnvironmentProfileCommand");
|
|
2336
2394
|
var se_DeleteFormTypeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2337
|
-
const b = (0,
|
|
2395
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2338
2396
|
const headers = {};
|
|
2339
2397
|
b.bp("/v2/domains/{domainIdentifier}/form-types/{formTypeIdentifier}");
|
|
2340
2398
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2344,7 +2402,7 @@ var se_DeleteFormTypeCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
2344
2402
|
return b.build();
|
|
2345
2403
|
}, "se_DeleteFormTypeCommand");
|
|
2346
2404
|
var se_DeleteGlossaryCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2347
|
-
const b = (0,
|
|
2405
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2348
2406
|
const headers = {};
|
|
2349
2407
|
b.bp("/v2/domains/{domainIdentifier}/glossaries/{identifier}");
|
|
2350
2408
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2354,7 +2412,7 @@ var se_DeleteGlossaryCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
2354
2412
|
return b.build();
|
|
2355
2413
|
}, "se_DeleteGlossaryCommand");
|
|
2356
2414
|
var se_DeleteGlossaryTermCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2357
|
-
const b = (0,
|
|
2415
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2358
2416
|
const headers = {};
|
|
2359
2417
|
b.bp("/v2/domains/{domainIdentifier}/glossary-terms/{identifier}");
|
|
2360
2418
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2364,7 +2422,7 @@ var se_DeleteGlossaryTermCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
2364
2422
|
return b.build();
|
|
2365
2423
|
}, "se_DeleteGlossaryTermCommand");
|
|
2366
2424
|
var se_DeleteListingCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2367
|
-
const b = (0,
|
|
2425
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2368
2426
|
const headers = {};
|
|
2369
2427
|
b.bp("/v2/domains/{domainIdentifier}/listings/{identifier}");
|
|
2370
2428
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2374,7 +2432,7 @@ var se_DeleteListingCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2374
2432
|
return b.build();
|
|
2375
2433
|
}, "se_DeleteListingCommand");
|
|
2376
2434
|
var se_DeleteProjectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2377
|
-
const b = (0,
|
|
2435
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2378
2436
|
const headers = {};
|
|
2379
2437
|
b.bp("/v2/domains/{domainIdentifier}/projects/{identifier}");
|
|
2380
2438
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2387,7 +2445,7 @@ var se_DeleteProjectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2387
2445
|
return b.build();
|
|
2388
2446
|
}, "se_DeleteProjectCommand");
|
|
2389
2447
|
var se_DeleteProjectMembershipCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2390
|
-
const b = (0,
|
|
2448
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2391
2449
|
const headers = {
|
|
2392
2450
|
"content-type": "application/json"
|
|
2393
2451
|
};
|
|
@@ -2404,7 +2462,7 @@ var se_DeleteProjectMembershipCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
2404
2462
|
return b.build();
|
|
2405
2463
|
}, "se_DeleteProjectMembershipCommand");
|
|
2406
2464
|
var se_DeleteSubscriptionGrantCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2407
|
-
const b = (0,
|
|
2465
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2408
2466
|
const headers = {};
|
|
2409
2467
|
b.bp("/v2/domains/{domainIdentifier}/subscription-grants/{identifier}");
|
|
2410
2468
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2414,7 +2472,7 @@ var se_DeleteSubscriptionGrantCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
2414
2472
|
return b.build();
|
|
2415
2473
|
}, "se_DeleteSubscriptionGrantCommand");
|
|
2416
2474
|
var se_DeleteSubscriptionRequestCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2417
|
-
const b = (0,
|
|
2475
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2418
2476
|
const headers = {};
|
|
2419
2477
|
b.bp("/v2/domains/{domainIdentifier}/subscription-requests/{identifier}");
|
|
2420
2478
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2424,7 +2482,7 @@ var se_DeleteSubscriptionRequestCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
2424
2482
|
return b.build();
|
|
2425
2483
|
}, "se_DeleteSubscriptionRequestCommand");
|
|
2426
2484
|
var se_DeleteSubscriptionTargetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2427
|
-
const b = (0,
|
|
2485
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2428
2486
|
const headers = {};
|
|
2429
2487
|
b.bp("/v2/domains/{domainIdentifier}/environments/{environmentIdentifier}/subscription-targets/{identifier}");
|
|
2430
2488
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2435,7 +2493,7 @@ var se_DeleteSubscriptionTargetCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
2435
2493
|
return b.build();
|
|
2436
2494
|
}, "se_DeleteSubscriptionTargetCommand");
|
|
2437
2495
|
var se_GetAssetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2438
|
-
const b = (0,
|
|
2496
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2439
2497
|
const headers = {};
|
|
2440
2498
|
b.bp("/v2/domains/{domainIdentifier}/assets/{identifier}");
|
|
2441
2499
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2448,7 +2506,7 @@ var se_GetAssetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2448
2506
|
return b.build();
|
|
2449
2507
|
}, "se_GetAssetCommand");
|
|
2450
2508
|
var se_GetAssetTypeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2451
|
-
const b = (0,
|
|
2509
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2452
2510
|
const headers = {};
|
|
2453
2511
|
b.bp("/v2/domains/{domainIdentifier}/asset-types/{identifier}");
|
|
2454
2512
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2461,7 +2519,7 @@ var se_GetAssetTypeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2461
2519
|
return b.build();
|
|
2462
2520
|
}, "se_GetAssetTypeCommand");
|
|
2463
2521
|
var se_GetDataSourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2464
|
-
const b = (0,
|
|
2522
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2465
2523
|
const headers = {};
|
|
2466
2524
|
b.bp("/v2/domains/{domainIdentifier}/data-sources/{identifier}");
|
|
2467
2525
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2471,7 +2529,7 @@ var se_GetDataSourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2471
2529
|
return b.build();
|
|
2472
2530
|
}, "se_GetDataSourceCommand");
|
|
2473
2531
|
var se_GetDataSourceRunCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2474
|
-
const b = (0,
|
|
2532
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2475
2533
|
const headers = {};
|
|
2476
2534
|
b.bp("/v2/domains/{domainIdentifier}/data-source-runs/{identifier}");
|
|
2477
2535
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2481,7 +2539,7 @@ var se_GetDataSourceRunCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
2481
2539
|
return b.build();
|
|
2482
2540
|
}, "se_GetDataSourceRunCommand");
|
|
2483
2541
|
var se_GetDomainCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2484
|
-
const b = (0,
|
|
2542
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2485
2543
|
const headers = {};
|
|
2486
2544
|
b.bp("/v2/domains/{identifier}");
|
|
2487
2545
|
b.p("identifier", () => input.identifier, "{identifier}", false);
|
|
@@ -2490,7 +2548,7 @@ var se_GetDomainCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2490
2548
|
return b.build();
|
|
2491
2549
|
}, "se_GetDomainCommand");
|
|
2492
2550
|
var se_GetEnvironmentCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2493
|
-
const b = (0,
|
|
2551
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2494
2552
|
const headers = {};
|
|
2495
2553
|
b.bp("/v2/domains/{domainIdentifier}/environments/{identifier}");
|
|
2496
2554
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2500,7 +2558,7 @@ var se_GetEnvironmentCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
2500
2558
|
return b.build();
|
|
2501
2559
|
}, "se_GetEnvironmentCommand");
|
|
2502
2560
|
var se_GetEnvironmentBlueprintCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2503
|
-
const b = (0,
|
|
2561
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2504
2562
|
const headers = {};
|
|
2505
2563
|
b.bp("/v2/domains/{domainIdentifier}/environment-blueprints/{identifier}");
|
|
2506
2564
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2510,7 +2568,7 @@ var se_GetEnvironmentBlueprintCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
2510
2568
|
return b.build();
|
|
2511
2569
|
}, "se_GetEnvironmentBlueprintCommand");
|
|
2512
2570
|
var se_GetEnvironmentBlueprintConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2513
|
-
const b = (0,
|
|
2571
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2514
2572
|
const headers = {};
|
|
2515
2573
|
b.bp("/v2/domains/{domainIdentifier}/environment-blueprint-configurations/{environmentBlueprintIdentifier}");
|
|
2516
2574
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2525,7 +2583,7 @@ var se_GetEnvironmentBlueprintConfigurationCommand = /* @__PURE__ */ __name(asyn
|
|
|
2525
2583
|
return b.build();
|
|
2526
2584
|
}, "se_GetEnvironmentBlueprintConfigurationCommand");
|
|
2527
2585
|
var se_GetEnvironmentProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2528
|
-
const b = (0,
|
|
2586
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2529
2587
|
const headers = {};
|
|
2530
2588
|
b.bp("/v2/domains/{domainIdentifier}/environment-profiles/{identifier}");
|
|
2531
2589
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2535,7 +2593,7 @@ var se_GetEnvironmentProfileCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
2535
2593
|
return b.build();
|
|
2536
2594
|
}, "se_GetEnvironmentProfileCommand");
|
|
2537
2595
|
var se_GetFormTypeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2538
|
-
const b = (0,
|
|
2596
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2539
2597
|
const headers = {};
|
|
2540
2598
|
b.bp("/v2/domains/{domainIdentifier}/form-types/{formTypeIdentifier}");
|
|
2541
2599
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2548,7 +2606,7 @@ var se_GetFormTypeCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2548
2606
|
return b.build();
|
|
2549
2607
|
}, "se_GetFormTypeCommand");
|
|
2550
2608
|
var se_GetGlossaryCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2551
|
-
const b = (0,
|
|
2609
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2552
2610
|
const headers = {};
|
|
2553
2611
|
b.bp("/v2/domains/{domainIdentifier}/glossaries/{identifier}");
|
|
2554
2612
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2558,7 +2616,7 @@ var se_GetGlossaryCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2558
2616
|
return b.build();
|
|
2559
2617
|
}, "se_GetGlossaryCommand");
|
|
2560
2618
|
var se_GetGlossaryTermCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2561
|
-
const b = (0,
|
|
2619
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2562
2620
|
const headers = {};
|
|
2563
2621
|
b.bp("/v2/domains/{domainIdentifier}/glossary-terms/{identifier}");
|
|
2564
2622
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2568,7 +2626,7 @@ var se_GetGlossaryTermCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
2568
2626
|
return b.build();
|
|
2569
2627
|
}, "se_GetGlossaryTermCommand");
|
|
2570
2628
|
var se_GetGroupProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2571
|
-
const b = (0,
|
|
2629
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2572
2630
|
const headers = {};
|
|
2573
2631
|
b.bp("/v2/domains/{domainIdentifier}/group-profiles/{groupIdentifier}");
|
|
2574
2632
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2578,7 +2636,7 @@ var se_GetGroupProfileCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
2578
2636
|
return b.build();
|
|
2579
2637
|
}, "se_GetGroupProfileCommand");
|
|
2580
2638
|
var se_GetIamPortalLoginUrlCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2581
|
-
const b = (0,
|
|
2639
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2582
2640
|
const headers = {};
|
|
2583
2641
|
b.bp("/v2/domains/{domainIdentifier}/get-portal-login-url");
|
|
2584
2642
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2587,7 +2645,7 @@ var se_GetIamPortalLoginUrlCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
2587
2645
|
return b.build();
|
|
2588
2646
|
}, "se_GetIamPortalLoginUrlCommand");
|
|
2589
2647
|
var se_GetListingCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2590
|
-
const b = (0,
|
|
2648
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2591
2649
|
const headers = {};
|
|
2592
2650
|
b.bp("/v2/domains/{domainIdentifier}/listings/{identifier}");
|
|
2593
2651
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2600,7 +2658,7 @@ var se_GetListingCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2600
2658
|
return b.build();
|
|
2601
2659
|
}, "se_GetListingCommand");
|
|
2602
2660
|
var se_GetProjectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2603
|
-
const b = (0,
|
|
2661
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2604
2662
|
const headers = {};
|
|
2605
2663
|
b.bp("/v2/domains/{domainIdentifier}/projects/{identifier}");
|
|
2606
2664
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2610,7 +2668,7 @@ var se_GetProjectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2610
2668
|
return b.build();
|
|
2611
2669
|
}, "se_GetProjectCommand");
|
|
2612
2670
|
var se_GetSubscriptionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2613
|
-
const b = (0,
|
|
2671
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2614
2672
|
const headers = {};
|
|
2615
2673
|
b.bp("/v2/domains/{domainIdentifier}/subscriptions/{identifier}");
|
|
2616
2674
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2620,7 +2678,7 @@ var se_GetSubscriptionCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
2620
2678
|
return b.build();
|
|
2621
2679
|
}, "se_GetSubscriptionCommand");
|
|
2622
2680
|
var se_GetSubscriptionGrantCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2623
|
-
const b = (0,
|
|
2681
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2624
2682
|
const headers = {};
|
|
2625
2683
|
b.bp("/v2/domains/{domainIdentifier}/subscription-grants/{identifier}");
|
|
2626
2684
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2630,7 +2688,7 @@ var se_GetSubscriptionGrantCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
2630
2688
|
return b.build();
|
|
2631
2689
|
}, "se_GetSubscriptionGrantCommand");
|
|
2632
2690
|
var se_GetSubscriptionRequestDetailsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2633
|
-
const b = (0,
|
|
2691
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2634
2692
|
const headers = {};
|
|
2635
2693
|
b.bp("/v2/domains/{domainIdentifier}/subscription-requests/{identifier}");
|
|
2636
2694
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2640,7 +2698,7 @@ var se_GetSubscriptionRequestDetailsCommand = /* @__PURE__ */ __name(async (inpu
|
|
|
2640
2698
|
return b.build();
|
|
2641
2699
|
}, "se_GetSubscriptionRequestDetailsCommand");
|
|
2642
2700
|
var se_GetSubscriptionTargetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2643
|
-
const b = (0,
|
|
2701
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2644
2702
|
const headers = {};
|
|
2645
2703
|
b.bp("/v2/domains/{domainIdentifier}/environments/{environmentIdentifier}/subscription-targets/{identifier}");
|
|
2646
2704
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2651,7 +2709,7 @@ var se_GetSubscriptionTargetCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
2651
2709
|
return b.build();
|
|
2652
2710
|
}, "se_GetSubscriptionTargetCommand");
|
|
2653
2711
|
var se_GetUserProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2654
|
-
const b = (0,
|
|
2712
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2655
2713
|
const headers = {};
|
|
2656
2714
|
b.bp("/v2/domains/{domainIdentifier}/user-profiles/{userIdentifier}");
|
|
2657
2715
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2664,7 +2722,7 @@ var se_GetUserProfileCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
2664
2722
|
return b.build();
|
|
2665
2723
|
}, "se_GetUserProfileCommand");
|
|
2666
2724
|
var se_ListAssetRevisionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2667
|
-
const b = (0,
|
|
2725
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2668
2726
|
const headers = {};
|
|
2669
2727
|
b.bp("/v2/domains/{domainIdentifier}/assets/{identifier}/revisions");
|
|
2670
2728
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2678,7 +2736,7 @@ var se_ListAssetRevisionsCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
2678
2736
|
return b.build();
|
|
2679
2737
|
}, "se_ListAssetRevisionsCommand");
|
|
2680
2738
|
var se_ListDataSourceRunActivitiesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2681
|
-
const b = (0,
|
|
2739
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2682
2740
|
const headers = {};
|
|
2683
2741
|
b.bp("/v2/domains/{domainIdentifier}/data-source-runs/{identifier}/activities");
|
|
2684
2742
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2693,7 +2751,7 @@ var se_ListDataSourceRunActivitiesCommand = /* @__PURE__ */ __name(async (input,
|
|
|
2693
2751
|
return b.build();
|
|
2694
2752
|
}, "se_ListDataSourceRunActivitiesCommand");
|
|
2695
2753
|
var se_ListDataSourceRunsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2696
|
-
const b = (0,
|
|
2754
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2697
2755
|
const headers = {};
|
|
2698
2756
|
b.bp("/v2/domains/{domainIdentifier}/data-sources/{dataSourceIdentifier}/runs");
|
|
2699
2757
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2708,7 +2766,7 @@ var se_ListDataSourceRunsCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
2708
2766
|
return b.build();
|
|
2709
2767
|
}, "se_ListDataSourceRunsCommand");
|
|
2710
2768
|
var se_ListDataSourcesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2711
|
-
const b = (0,
|
|
2769
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2712
2770
|
const headers = {};
|
|
2713
2771
|
b.bp("/v2/domains/{domainIdentifier}/data-sources");
|
|
2714
2772
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2726,7 +2784,7 @@ var se_ListDataSourcesCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
2726
2784
|
return b.build();
|
|
2727
2785
|
}, "se_ListDataSourcesCommand");
|
|
2728
2786
|
var se_ListDomainsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2729
|
-
const b = (0,
|
|
2787
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2730
2788
|
const headers = {};
|
|
2731
2789
|
b.bp("/v2/domains");
|
|
2732
2790
|
const query = (0, import_smithy_client.map)({
|
|
@@ -2739,7 +2797,7 @@ var se_ListDomainsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2739
2797
|
return b.build();
|
|
2740
2798
|
}, "se_ListDomainsCommand");
|
|
2741
2799
|
var se_ListEnvironmentBlueprintConfigurationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2742
|
-
const b = (0,
|
|
2800
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2743
2801
|
const headers = {};
|
|
2744
2802
|
b.bp("/v2/domains/{domainIdentifier}/environment-blueprint-configurations");
|
|
2745
2803
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2752,7 +2810,7 @@ var se_ListEnvironmentBlueprintConfigurationsCommand = /* @__PURE__ */ __name(as
|
|
|
2752
2810
|
return b.build();
|
|
2753
2811
|
}, "se_ListEnvironmentBlueprintConfigurationsCommand");
|
|
2754
2812
|
var se_ListEnvironmentBlueprintsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2755
|
-
const b = (0,
|
|
2813
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2756
2814
|
const headers = {};
|
|
2757
2815
|
b.bp("/v2/domains/{domainIdentifier}/environment-blueprints");
|
|
2758
2816
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2767,7 +2825,7 @@ var se_ListEnvironmentBlueprintsCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
2767
2825
|
return b.build();
|
|
2768
2826
|
}, "se_ListEnvironmentBlueprintsCommand");
|
|
2769
2827
|
var se_ListEnvironmentProfilesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2770
|
-
const b = (0,
|
|
2828
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2771
2829
|
const headers = {};
|
|
2772
2830
|
b.bp("/v2/domains/{domainIdentifier}/environment-profiles");
|
|
2773
2831
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2785,7 +2843,7 @@ var se_ListEnvironmentProfilesCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
2785
2843
|
return b.build();
|
|
2786
2844
|
}, "se_ListEnvironmentProfilesCommand");
|
|
2787
2845
|
var se_ListEnvironmentsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2788
|
-
const b = (0,
|
|
2846
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2789
2847
|
const headers = {};
|
|
2790
2848
|
b.bp("/v2/domains/{domainIdentifier}/environments");
|
|
2791
2849
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2806,7 +2864,7 @@ var se_ListEnvironmentsCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
2806
2864
|
return b.build();
|
|
2807
2865
|
}, "se_ListEnvironmentsCommand");
|
|
2808
2866
|
var se_ListNotificationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2809
|
-
const b = (0,
|
|
2867
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2810
2868
|
const headers = {};
|
|
2811
2869
|
b.bp("/v2/domains/{domainIdentifier}/notifications");
|
|
2812
2870
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2824,7 +2882,7 @@ var se_ListNotificationsCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
2824
2882
|
return b.build();
|
|
2825
2883
|
}, "se_ListNotificationsCommand");
|
|
2826
2884
|
var se_ListProjectMembershipsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2827
|
-
const b = (0,
|
|
2885
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2828
2886
|
const headers = {};
|
|
2829
2887
|
b.bp("/v2/domains/{domainIdentifier}/projects/{projectIdentifier}/memberships");
|
|
2830
2888
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2840,7 +2898,7 @@ var se_ListProjectMembershipsCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
2840
2898
|
return b.build();
|
|
2841
2899
|
}, "se_ListProjectMembershipsCommand");
|
|
2842
2900
|
var se_ListProjectsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2843
|
-
const b = (0,
|
|
2901
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2844
2902
|
const headers = {};
|
|
2845
2903
|
b.bp("/v2/domains/{domainIdentifier}/projects");
|
|
2846
2904
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2856,7 +2914,7 @@ var se_ListProjectsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
2856
2914
|
return b.build();
|
|
2857
2915
|
}, "se_ListProjectsCommand");
|
|
2858
2916
|
var se_ListSubscriptionGrantsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2859
|
-
const b = (0,
|
|
2917
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2860
2918
|
const headers = {};
|
|
2861
2919
|
b.bp("/v2/domains/{domainIdentifier}/subscription-grants");
|
|
2862
2920
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2875,7 +2933,7 @@ var se_ListSubscriptionGrantsCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
2875
2933
|
return b.build();
|
|
2876
2934
|
}, "se_ListSubscriptionGrantsCommand");
|
|
2877
2935
|
var se_ListSubscriptionRequestsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2878
|
-
const b = (0,
|
|
2936
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2879
2937
|
const headers = {};
|
|
2880
2938
|
b.bp("/v2/domains/{domainIdentifier}/subscription-requests");
|
|
2881
2939
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2894,7 +2952,7 @@ var se_ListSubscriptionRequestsCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
2894
2952
|
return b.build();
|
|
2895
2953
|
}, "se_ListSubscriptionRequestsCommand");
|
|
2896
2954
|
var se_ListSubscriptionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2897
|
-
const b = (0,
|
|
2955
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2898
2956
|
const headers = {};
|
|
2899
2957
|
b.bp("/v2/domains/{domainIdentifier}/subscriptions");
|
|
2900
2958
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2914,7 +2972,7 @@ var se_ListSubscriptionsCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
2914
2972
|
return b.build();
|
|
2915
2973
|
}, "se_ListSubscriptionsCommand");
|
|
2916
2974
|
var se_ListSubscriptionTargetsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2917
|
-
const b = (0,
|
|
2975
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2918
2976
|
const headers = {};
|
|
2919
2977
|
b.bp("/v2/domains/{domainIdentifier}/environments/{environmentIdentifier}/subscription-targets");
|
|
2920
2978
|
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
@@ -2930,7 +2988,7 @@ var se_ListSubscriptionTargetsCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
2930
2988
|
return b.build();
|
|
2931
2989
|
}, "se_ListSubscriptionTargetsCommand");
|
|
2932
2990
|
var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2933
|
-
const b = (0,
|
|
2991
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2934
2992
|
const headers = {};
|
|
2935
2993
|
b.bp("/tags/{resourceArn}");
|
|
2936
2994
|
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
@@ -2939,7 +2997,7 @@ var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
2939
2997
|
return b.build();
|
|
2940
2998
|
}, "se_ListTagsForResourceCommand");
|
|
2941
2999
|
var se_PutEnvironmentBlueprintConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2942
|
-
const b = (0,
|
|
3000
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2943
3001
|
const headers = {
|
|
2944
3002
|
"content-type": "application/json"
|
|
2945
3003
|
};
|
|
@@ -2964,7 +3022,7 @@ var se_PutEnvironmentBlueprintConfigurationCommand = /* @__PURE__ */ __name(asyn
|
|
|
2964
3022
|
return b.build();
|
|
2965
3023
|
}, "se_PutEnvironmentBlueprintConfigurationCommand");
|
|
2966
3024
|
var se_RejectPredictionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2967
|
-
const b = (0,
|
|
3025
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2968
3026
|
const headers = {
|
|
2969
3027
|
"content-type": "application/json"
|
|
2970
3028
|
};
|
|
@@ -2986,7 +3044,7 @@ var se_RejectPredictionsCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
2986
3044
|
return b.build();
|
|
2987
3045
|
}, "se_RejectPredictionsCommand");
|
|
2988
3046
|
var se_RejectSubscriptionRequestCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2989
|
-
const b = (0,
|
|
3047
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2990
3048
|
const headers = {
|
|
2991
3049
|
"content-type": "application/json"
|
|
2992
3050
|
};
|
|
@@ -3003,7 +3061,7 @@ var se_RejectSubscriptionRequestCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
3003
3061
|
return b.build();
|
|
3004
3062
|
}, "se_RejectSubscriptionRequestCommand");
|
|
3005
3063
|
var se_RevokeSubscriptionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3006
|
-
const b = (0,
|
|
3064
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3007
3065
|
const headers = {
|
|
3008
3066
|
"content-type": "application/json"
|
|
3009
3067
|
};
|
|
@@ -3020,7 +3078,7 @@ var se_RevokeSubscriptionCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
3020
3078
|
return b.build();
|
|
3021
3079
|
}, "se_RevokeSubscriptionCommand");
|
|
3022
3080
|
var se_SearchCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3023
|
-
const b = (0,
|
|
3081
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3024
3082
|
const headers = {
|
|
3025
3083
|
"content-type": "application/json"
|
|
3026
3084
|
};
|
|
@@ -3044,7 +3102,7 @@ var se_SearchCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3044
3102
|
return b.build();
|
|
3045
3103
|
}, "se_SearchCommand");
|
|
3046
3104
|
var se_SearchGroupProfilesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3047
|
-
const b = (0,
|
|
3105
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3048
3106
|
const headers = {
|
|
3049
3107
|
"content-type": "application/json"
|
|
3050
3108
|
};
|
|
@@ -3063,7 +3121,7 @@ var se_SearchGroupProfilesCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
3063
3121
|
return b.build();
|
|
3064
3122
|
}, "se_SearchGroupProfilesCommand");
|
|
3065
3123
|
var se_SearchListingsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3066
|
-
const b = (0,
|
|
3124
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3067
3125
|
const headers = {
|
|
3068
3126
|
"content-type": "application/json"
|
|
3069
3127
|
};
|
|
@@ -3085,7 +3143,7 @@ var se_SearchListingsCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
3085
3143
|
return b.build();
|
|
3086
3144
|
}, "se_SearchListingsCommand");
|
|
3087
3145
|
var se_SearchTypesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3088
|
-
const b = (0,
|
|
3146
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3089
3147
|
const headers = {
|
|
3090
3148
|
"content-type": "application/json"
|
|
3091
3149
|
};
|
|
@@ -3108,7 +3166,7 @@ var se_SearchTypesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3108
3166
|
return b.build();
|
|
3109
3167
|
}, "se_SearchTypesCommand");
|
|
3110
3168
|
var se_SearchUserProfilesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3111
|
-
const b = (0,
|
|
3169
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3112
3170
|
const headers = {
|
|
3113
3171
|
"content-type": "application/json"
|
|
3114
3172
|
};
|
|
@@ -3127,7 +3185,7 @@ var se_SearchUserProfilesCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
3127
3185
|
return b.build();
|
|
3128
3186
|
}, "se_SearchUserProfilesCommand");
|
|
3129
3187
|
var se_StartDataSourceRunCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3130
|
-
const b = (0,
|
|
3188
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3131
3189
|
const headers = {
|
|
3132
3190
|
"content-type": "application/json"
|
|
3133
3191
|
};
|
|
@@ -3144,7 +3202,7 @@ var se_StartDataSourceRunCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
3144
3202
|
return b.build();
|
|
3145
3203
|
}, "se_StartDataSourceRunCommand");
|
|
3146
3204
|
var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3147
|
-
const b = (0,
|
|
3205
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3148
3206
|
const headers = {
|
|
3149
3207
|
"content-type": "application/json"
|
|
3150
3208
|
};
|
|
@@ -3160,7 +3218,7 @@ var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3160
3218
|
return b.build();
|
|
3161
3219
|
}, "se_TagResourceCommand");
|
|
3162
3220
|
var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3163
|
-
const b = (0,
|
|
3221
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3164
3222
|
const headers = {};
|
|
3165
3223
|
b.bp("/tags/{resourceArn}");
|
|
3166
3224
|
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
@@ -3175,7 +3233,7 @@ var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3175
3233
|
return b.build();
|
|
3176
3234
|
}, "se_UntagResourceCommand");
|
|
3177
3235
|
var se_UpdateDataSourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3178
|
-
const b = (0,
|
|
3236
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3179
3237
|
const headers = {
|
|
3180
3238
|
"content-type": "application/json"
|
|
3181
3239
|
};
|
|
@@ -3199,7 +3257,7 @@ var se_UpdateDataSourceCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
3199
3257
|
return b.build();
|
|
3200
3258
|
}, "se_UpdateDataSourceCommand");
|
|
3201
3259
|
var se_UpdateDomainCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3202
|
-
const b = (0,
|
|
3260
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3203
3261
|
const headers = {
|
|
3204
3262
|
"content-type": "application/json"
|
|
3205
3263
|
};
|
|
@@ -3221,7 +3279,7 @@ var se_UpdateDomainCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3221
3279
|
return b.build();
|
|
3222
3280
|
}, "se_UpdateDomainCommand");
|
|
3223
3281
|
var se_UpdateEnvironmentCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3224
|
-
const b = (0,
|
|
3282
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3225
3283
|
const headers = {
|
|
3226
3284
|
"content-type": "application/json"
|
|
3227
3285
|
};
|
|
@@ -3240,7 +3298,7 @@ var se_UpdateEnvironmentCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
3240
3298
|
return b.build();
|
|
3241
3299
|
}, "se_UpdateEnvironmentCommand");
|
|
3242
3300
|
var se_UpdateEnvironmentProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3243
|
-
const b = (0,
|
|
3301
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3244
3302
|
const headers = {
|
|
3245
3303
|
"content-type": "application/json"
|
|
3246
3304
|
};
|
|
@@ -3261,7 +3319,7 @@ var se_UpdateEnvironmentProfileCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
3261
3319
|
return b.build();
|
|
3262
3320
|
}, "se_UpdateEnvironmentProfileCommand");
|
|
3263
3321
|
var se_UpdateGlossaryCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3264
|
-
const b = (0,
|
|
3322
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3265
3323
|
const headers = {
|
|
3266
3324
|
"content-type": "application/json"
|
|
3267
3325
|
};
|
|
@@ -3281,7 +3339,7 @@ var se_UpdateGlossaryCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
3281
3339
|
return b.build();
|
|
3282
3340
|
}, "se_UpdateGlossaryCommand");
|
|
3283
3341
|
var se_UpdateGlossaryTermCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3284
|
-
const b = (0,
|
|
3342
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3285
3343
|
const headers = {
|
|
3286
3344
|
"content-type": "application/json"
|
|
3287
3345
|
};
|
|
@@ -3303,7 +3361,7 @@ var se_UpdateGlossaryTermCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
3303
3361
|
return b.build();
|
|
3304
3362
|
}, "se_UpdateGlossaryTermCommand");
|
|
3305
3363
|
var se_UpdateGroupProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3306
|
-
const b = (0,
|
|
3364
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3307
3365
|
const headers = {
|
|
3308
3366
|
"content-type": "application/json"
|
|
3309
3367
|
};
|
|
@@ -3320,7 +3378,7 @@ var se_UpdateGroupProfileCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
3320
3378
|
return b.build();
|
|
3321
3379
|
}, "se_UpdateGroupProfileCommand");
|
|
3322
3380
|
var se_UpdateProjectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3323
|
-
const b = (0,
|
|
3381
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3324
3382
|
const headers = {
|
|
3325
3383
|
"content-type": "application/json"
|
|
3326
3384
|
};
|
|
@@ -3339,7 +3397,7 @@ var se_UpdateProjectCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
3339
3397
|
return b.build();
|
|
3340
3398
|
}, "se_UpdateProjectCommand");
|
|
3341
3399
|
var se_UpdateSubscriptionGrantStatusCommand = /* @__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
|
};
|
|
@@ -3359,7 +3417,7 @@ var se_UpdateSubscriptionGrantStatusCommand = /* @__PURE__ */ __name(async (inpu
|
|
|
3359
3417
|
return b.build();
|
|
3360
3418
|
}, "se_UpdateSubscriptionGrantStatusCommand");
|
|
3361
3419
|
var se_UpdateSubscriptionRequestCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3362
|
-
const b = (0,
|
|
3420
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3363
3421
|
const headers = {
|
|
3364
3422
|
"content-type": "application/json"
|
|
3365
3423
|
};
|
|
@@ -3376,7 +3434,7 @@ var se_UpdateSubscriptionRequestCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
3376
3434
|
return b.build();
|
|
3377
3435
|
}, "se_UpdateSubscriptionRequestCommand");
|
|
3378
3436
|
var se_UpdateSubscriptionTargetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3379
|
-
const b = (0,
|
|
3437
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3380
3438
|
const headers = {
|
|
3381
3439
|
"content-type": "application/json"
|
|
3382
3440
|
};
|
|
@@ -3399,7 +3457,7 @@ var se_UpdateSubscriptionTargetCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
3399
3457
|
return b.build();
|
|
3400
3458
|
}, "se_UpdateSubscriptionTargetCommand");
|
|
3401
3459
|
var se_UpdateUserProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3402
|
-
const b = (0,
|
|
3460
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3403
3461
|
const headers = {
|
|
3404
3462
|
"content-type": "application/json"
|
|
3405
3463
|
};
|
|
@@ -3473,7 +3531,7 @@ var de_CancelSubscriptionCommand = /* @__PURE__ */ __name(async (output, context
|
|
|
3473
3531
|
retainPermissions: import_smithy_client.expectBoolean,
|
|
3474
3532
|
status: import_smithy_client.expectString,
|
|
3475
3533
|
subscribedListing: import_smithy_client._json,
|
|
3476
|
-
subscribedPrincipal: (_) => (0, import_smithy_client._json)((0,
|
|
3534
|
+
subscribedPrincipal: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
3477
3535
|
subscriptionRequestId: import_smithy_client.expectString,
|
|
3478
3536
|
updatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
3479
3537
|
updatedBy: import_smithy_client.expectString
|
|
@@ -3578,7 +3636,7 @@ var de_CreateDataSourceCommand = /* @__PURE__ */ __name(async (output, context)
|
|
|
3578
3636
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await parseBody(output.body, context)), "body");
|
|
3579
3637
|
const doc = (0, import_smithy_client.take)(data, {
|
|
3580
3638
|
assetFormsOutput: import_smithy_client._json,
|
|
3581
|
-
configuration: (_) => (0, import_smithy_client._json)((0,
|
|
3639
|
+
configuration: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
3582
3640
|
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
3583
3641
|
description: import_smithy_client.expectString,
|
|
3584
3642
|
domainId: import_smithy_client.expectString,
|
|
@@ -3650,7 +3708,7 @@ var de_CreateEnvironmentCommand = /* @__PURE__ */ __name(async (output, context)
|
|
|
3650
3708
|
projectId: import_smithy_client.expectString,
|
|
3651
3709
|
provider: import_smithy_client.expectString,
|
|
3652
3710
|
provisionedResources: import_smithy_client._json,
|
|
3653
|
-
provisioningProperties: (_) => (0, import_smithy_client._json)((0,
|
|
3711
|
+
provisioningProperties: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
3654
3712
|
status: import_smithy_client.expectString,
|
|
3655
3713
|
updatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
3656
3714
|
userParameters: import_smithy_client._json
|
|
@@ -3822,7 +3880,7 @@ var de_CreateSubscriptionGrantCommand = /* @__PURE__ */ __name(async (output, co
|
|
|
3822
3880
|
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
3823
3881
|
createdBy: import_smithy_client.expectString,
|
|
3824
3882
|
domainId: import_smithy_client.expectString,
|
|
3825
|
-
grantedEntity: (_) => (0, import_smithy_client._json)((0,
|
|
3883
|
+
grantedEntity: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
3826
3884
|
id: import_smithy_client.expectString,
|
|
3827
3885
|
status: import_smithy_client.expectString,
|
|
3828
3886
|
subscriptionId: import_smithy_client.expectString,
|
|
@@ -3895,7 +3953,7 @@ var de_CreateUserProfileCommand = /* @__PURE__ */ __name(async (output, context)
|
|
|
3895
3953
|
});
|
|
3896
3954
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await parseBody(output.body, context)), "body");
|
|
3897
3955
|
const doc = (0, import_smithy_client.take)(data, {
|
|
3898
|
-
details: (_) => (0, import_smithy_client._json)((0,
|
|
3956
|
+
details: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
3899
3957
|
domainId: import_smithy_client.expectString,
|
|
3900
3958
|
id: import_smithy_client.expectString,
|
|
3901
3959
|
status: import_smithy_client.expectString,
|
|
@@ -3934,7 +3992,7 @@ var de_DeleteDataSourceCommand = /* @__PURE__ */ __name(async (output, context)
|
|
|
3934
3992
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await parseBody(output.body, context)), "body");
|
|
3935
3993
|
const doc = (0, import_smithy_client.take)(data, {
|
|
3936
3994
|
assetFormsOutput: import_smithy_client._json,
|
|
3937
|
-
configuration: (_) => (0, import_smithy_client._json)((0,
|
|
3995
|
+
configuration: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
3938
3996
|
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
3939
3997
|
description: import_smithy_client.expectString,
|
|
3940
3998
|
domainId: import_smithy_client.expectString,
|
|
@@ -4073,7 +4131,7 @@ var de_DeleteSubscriptionGrantCommand = /* @__PURE__ */ __name(async (output, co
|
|
|
4073
4131
|
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
4074
4132
|
createdBy: import_smithy_client.expectString,
|
|
4075
4133
|
domainId: import_smithy_client.expectString,
|
|
4076
|
-
grantedEntity: (_) => (0, import_smithy_client._json)((0,
|
|
4134
|
+
grantedEntity: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
4077
4135
|
id: import_smithy_client.expectString,
|
|
4078
4136
|
status: import_smithy_client.expectString,
|
|
4079
4137
|
subscriptionId: import_smithy_client.expectString,
|
|
@@ -4169,7 +4227,7 @@ var de_GetDataSourceCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
4169
4227
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await parseBody(output.body, context)), "body");
|
|
4170
4228
|
const doc = (0, import_smithy_client.take)(data, {
|
|
4171
4229
|
assetFormsOutput: import_smithy_client._json,
|
|
4172
|
-
configuration: (_) => (0, import_smithy_client._json)((0,
|
|
4230
|
+
configuration: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
4173
4231
|
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
4174
4232
|
description: import_smithy_client.expectString,
|
|
4175
4233
|
domainId: import_smithy_client.expectString,
|
|
@@ -4270,7 +4328,7 @@ var de_GetEnvironmentCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
4270
4328
|
projectId: import_smithy_client.expectString,
|
|
4271
4329
|
provider: import_smithy_client.expectString,
|
|
4272
4330
|
provisionedResources: import_smithy_client._json,
|
|
4273
|
-
provisioningProperties: (_) => (0, import_smithy_client._json)((0,
|
|
4331
|
+
provisioningProperties: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
4274
4332
|
status: import_smithy_client.expectString,
|
|
4275
4333
|
updatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
4276
4334
|
userParameters: import_smithy_client._json
|
|
@@ -4294,7 +4352,7 @@ var de_GetEnvironmentBlueprintCommand = /* @__PURE__ */ __name(async (output, co
|
|
|
4294
4352
|
id: import_smithy_client.expectString,
|
|
4295
4353
|
name: import_smithy_client.expectString,
|
|
4296
4354
|
provider: import_smithy_client.expectString,
|
|
4297
|
-
provisioningProperties: (_) => (0, import_smithy_client._json)((0,
|
|
4355
|
+
provisioningProperties: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
4298
4356
|
updatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
4299
4357
|
userParameters: import_smithy_client._json
|
|
4300
4358
|
});
|
|
@@ -4361,7 +4419,7 @@ var de_GetFormTypeCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
4361
4419
|
description: import_smithy_client.expectString,
|
|
4362
4420
|
domainId: import_smithy_client.expectString,
|
|
4363
4421
|
imports: import_smithy_client._json,
|
|
4364
|
-
model: (_) => (0, import_smithy_client._json)((0,
|
|
4422
|
+
model: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
4365
4423
|
name: import_smithy_client.expectString,
|
|
4366
4424
|
originDomainId: import_smithy_client.expectString,
|
|
4367
4425
|
originProjectId: import_smithy_client.expectString,
|
|
@@ -4466,7 +4524,7 @@ var de_GetListingCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
4466
4524
|
description: import_smithy_client.expectString,
|
|
4467
4525
|
domainId: import_smithy_client.expectString,
|
|
4468
4526
|
id: import_smithy_client.expectString,
|
|
4469
|
-
item: (_) => de_ListingItem((0,
|
|
4527
|
+
item: (_) => de_ListingItem((0, import_core2.awsExpectUnion)(_), context),
|
|
4470
4528
|
listingRevision: import_smithy_client.expectString,
|
|
4471
4529
|
name: import_smithy_client.expectString,
|
|
4472
4530
|
status: import_smithy_client.expectString,
|
|
@@ -4515,7 +4573,7 @@ var de_GetSubscriptionCommand = /* @__PURE__ */ __name(async (output, context) =
|
|
|
4515
4573
|
retainPermissions: import_smithy_client.expectBoolean,
|
|
4516
4574
|
status: import_smithy_client.expectString,
|
|
4517
4575
|
subscribedListing: import_smithy_client._json,
|
|
4518
|
-
subscribedPrincipal: (_) => (0, import_smithy_client._json)((0,
|
|
4576
|
+
subscribedPrincipal: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
4519
4577
|
subscriptionRequestId: import_smithy_client.expectString,
|
|
4520
4578
|
updatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
4521
4579
|
updatedBy: import_smithy_client.expectString
|
|
@@ -4536,7 +4594,7 @@ var de_GetSubscriptionGrantCommand = /* @__PURE__ */ __name(async (output, conte
|
|
|
4536
4594
|
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
4537
4595
|
createdBy: import_smithy_client.expectString,
|
|
4538
4596
|
domainId: import_smithy_client.expectString,
|
|
4539
|
-
grantedEntity: (_) => (0, import_smithy_client._json)((0,
|
|
4597
|
+
grantedEntity: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
4540
4598
|
id: import_smithy_client.expectString,
|
|
4541
4599
|
status: import_smithy_client.expectString,
|
|
4542
4600
|
subscriptionId: import_smithy_client.expectString,
|
|
@@ -4609,7 +4667,7 @@ var de_GetUserProfileCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
4609
4667
|
});
|
|
4610
4668
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await parseBody(output.body, context)), "body");
|
|
4611
4669
|
const doc = (0, import_smithy_client.take)(data, {
|
|
4612
|
-
details: (_) => (0, import_smithy_client._json)((0,
|
|
4670
|
+
details: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
4613
4671
|
domainId: import_smithy_client.expectString,
|
|
4614
4672
|
id: import_smithy_client.expectString,
|
|
4615
4673
|
status: import_smithy_client.expectString,
|
|
@@ -4950,7 +5008,7 @@ var de_RevokeSubscriptionCommand = /* @__PURE__ */ __name(async (output, context
|
|
|
4950
5008
|
retainPermissions: import_smithy_client.expectBoolean,
|
|
4951
5009
|
status: import_smithy_client.expectString,
|
|
4952
5010
|
subscribedListing: import_smithy_client._json,
|
|
4953
|
-
subscribedPrincipal: (_) => (0, import_smithy_client._json)((0,
|
|
5011
|
+
subscribedPrincipal: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
4954
5012
|
subscriptionRequestId: import_smithy_client.expectString,
|
|
4955
5013
|
updatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
4956
5014
|
updatedBy: import_smithy_client.expectString
|
|
@@ -5092,7 +5150,7 @@ var de_UpdateDataSourceCommand = /* @__PURE__ */ __name(async (output, context)
|
|
|
5092
5150
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await parseBody(output.body, context)), "body");
|
|
5093
5151
|
const doc = (0, import_smithy_client.take)(data, {
|
|
5094
5152
|
assetFormsOutput: import_smithy_client._json,
|
|
5095
|
-
configuration: (_) => (0, import_smithy_client._json)((0,
|
|
5153
|
+
configuration: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
5096
5154
|
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
5097
5155
|
description: import_smithy_client.expectString,
|
|
5098
5156
|
domainId: import_smithy_client.expectString,
|
|
@@ -5160,7 +5218,7 @@ var de_UpdateEnvironmentCommand = /* @__PURE__ */ __name(async (output, context)
|
|
|
5160
5218
|
projectId: import_smithy_client.expectString,
|
|
5161
5219
|
provider: import_smithy_client.expectString,
|
|
5162
5220
|
provisionedResources: import_smithy_client._json,
|
|
5163
|
-
provisioningProperties: (_) => (0, import_smithy_client._json)((0,
|
|
5221
|
+
provisioningProperties: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
5164
5222
|
status: import_smithy_client.expectString,
|
|
5165
5223
|
updatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
5166
5224
|
userParameters: import_smithy_client._json
|
|
@@ -5286,7 +5344,7 @@ var de_UpdateSubscriptionGrantStatusCommand = /* @__PURE__ */ __name(async (outp
|
|
|
5286
5344
|
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
5287
5345
|
createdBy: import_smithy_client.expectString,
|
|
5288
5346
|
domainId: import_smithy_client.expectString,
|
|
5289
|
-
grantedEntity: (_) => (0, import_smithy_client._json)((0,
|
|
5347
|
+
grantedEntity: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
5290
5348
|
id: import_smithy_client.expectString,
|
|
5291
5349
|
status: import_smithy_client.expectString,
|
|
5292
5350
|
subscriptionId: import_smithy_client.expectString,
|
|
@@ -5359,7 +5417,7 @@ var de_UpdateUserProfileCommand = /* @__PURE__ */ __name(async (output, context)
|
|
|
5359
5417
|
});
|
|
5360
5418
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await parseBody(output.body, context)), "body");
|
|
5361
5419
|
const doc = (0, import_smithy_client.take)(data, {
|
|
5362
|
-
details: (_) => (0, import_smithy_client._json)((0,
|
|
5420
|
+
details: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
5363
5421
|
domainId: import_smithy_client.expectString,
|
|
5364
5422
|
id: import_smithy_client.expectString,
|
|
5365
5423
|
status: import_smithy_client.expectString,
|
|
@@ -5745,7 +5803,7 @@ var de_EnvironmentBlueprintSummary = /* @__PURE__ */ __name((output, context) =>
|
|
|
5745
5803
|
id: import_smithy_client.expectString,
|
|
5746
5804
|
name: import_smithy_client.expectString,
|
|
5747
5805
|
provider: import_smithy_client.expectString,
|
|
5748
|
-
provisioningProperties: (_) => (0, import_smithy_client._json)((0,
|
|
5806
|
+
provisioningProperties: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
5749
5807
|
updatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_))
|
|
5750
5808
|
});
|
|
5751
5809
|
}, "de_EnvironmentBlueprintSummary");
|
|
@@ -5800,7 +5858,7 @@ var de_FormTypeData = /* @__PURE__ */ __name((output, context) => {
|
|
|
5800
5858
|
description: import_smithy_client.expectString,
|
|
5801
5859
|
domainId: import_smithy_client.expectString,
|
|
5802
5860
|
imports: import_smithy_client._json,
|
|
5803
|
-
model: (_) => (0, import_smithy_client._json)((0,
|
|
5861
|
+
model: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
5804
5862
|
name: import_smithy_client.expectString,
|
|
5805
5863
|
originDomainId: import_smithy_client.expectString,
|
|
5806
5864
|
originProjectId: import_smithy_client.expectString,
|
|
@@ -5912,7 +5970,7 @@ var de_SearchInventoryResultItem = /* @__PURE__ */ __name((output, context) => {
|
|
|
5912
5970
|
}, "de_SearchInventoryResultItem");
|
|
5913
5971
|
var de_SearchInventoryResultItems = /* @__PURE__ */ __name((output, context) => {
|
|
5914
5972
|
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
5915
|
-
return de_SearchInventoryResultItem((0,
|
|
5973
|
+
return de_SearchInventoryResultItem((0, import_core2.awsExpectUnion)(entry), context);
|
|
5916
5974
|
});
|
|
5917
5975
|
return retVal;
|
|
5918
5976
|
}, "de_SearchInventoryResultItems");
|
|
@@ -5926,7 +5984,7 @@ var de_SearchResultItem = /* @__PURE__ */ __name((output, context) => {
|
|
|
5926
5984
|
}, "de_SearchResultItem");
|
|
5927
5985
|
var de_SearchResultItems = /* @__PURE__ */ __name((output, context) => {
|
|
5928
5986
|
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
5929
|
-
return de_SearchResultItem((0,
|
|
5987
|
+
return de_SearchResultItem((0, import_core2.awsExpectUnion)(entry), context);
|
|
5930
5988
|
});
|
|
5931
5989
|
return retVal;
|
|
5932
5990
|
}, "de_SearchResultItems");
|
|
@@ -5945,7 +6003,7 @@ var de_SearchTypesResultItem = /* @__PURE__ */ __name((output, context) => {
|
|
|
5945
6003
|
}, "de_SearchTypesResultItem");
|
|
5946
6004
|
var de_SearchTypesResultItems = /* @__PURE__ */ __name((output, context) => {
|
|
5947
6005
|
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
5948
|
-
return de_SearchTypesResultItem((0,
|
|
6006
|
+
return de_SearchTypesResultItem((0, import_core2.awsExpectUnion)(entry), context);
|
|
5949
6007
|
});
|
|
5950
6008
|
return retVal;
|
|
5951
6009
|
}, "de_SearchTypesResultItems");
|
|
@@ -5978,7 +6036,7 @@ var de_SubscriptionGrantSummary = /* @__PURE__ */ __name((output, context) => {
|
|
|
5978
6036
|
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
5979
6037
|
createdBy: import_smithy_client.expectString,
|
|
5980
6038
|
domainId: import_smithy_client.expectString,
|
|
5981
|
-
grantedEntity: (_) => (0, import_smithy_client._json)((0,
|
|
6039
|
+
grantedEntity: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
5982
6040
|
id: import_smithy_client.expectString,
|
|
5983
6041
|
status: import_smithy_client.expectString,
|
|
5984
6042
|
subscriptionId: import_smithy_client.expectString,
|
|
@@ -6024,7 +6082,7 @@ var de_SubscriptionSummary = /* @__PURE__ */ __name((output, context) => {
|
|
|
6024
6082
|
retainPermissions: import_smithy_client.expectBoolean,
|
|
6025
6083
|
status: import_smithy_client.expectString,
|
|
6026
6084
|
subscribedListing: import_smithy_client._json,
|
|
6027
|
-
subscribedPrincipal: (_) => (0, import_smithy_client._json)((0,
|
|
6085
|
+
subscribedPrincipal: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
6028
6086
|
subscriptionRequestId: import_smithy_client.expectString,
|
|
6029
6087
|
updatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
6030
6088
|
updatedBy: import_smithy_client.expectString
|
|
@@ -7924,88 +7982,88 @@ var DataZone = _DataZone;
|
|
|
7924
7982
|
(0, import_smithy_client.createAggregatedClient)(commands, DataZone);
|
|
7925
7983
|
|
|
7926
7984
|
// src/pagination/ListAssetRevisionsPaginator.ts
|
|
7927
|
-
|
|
7928
|
-
var paginateListAssetRevisions = (0,
|
|
7985
|
+
|
|
7986
|
+
var paginateListAssetRevisions = (0, import_core.createPaginator)(DataZoneClient, ListAssetRevisionsCommand, "nextToken", "nextToken", "maxResults");
|
|
7929
7987
|
|
|
7930
7988
|
// src/pagination/ListDataSourceRunActivitiesPaginator.ts
|
|
7931
|
-
|
|
7932
|
-
var paginateListDataSourceRunActivities = (0,
|
|
7989
|
+
|
|
7990
|
+
var paginateListDataSourceRunActivities = (0, import_core.createPaginator)(DataZoneClient, ListDataSourceRunActivitiesCommand, "nextToken", "nextToken", "maxResults");
|
|
7933
7991
|
|
|
7934
7992
|
// src/pagination/ListDataSourceRunsPaginator.ts
|
|
7935
|
-
|
|
7936
|
-
var paginateListDataSourceRuns = (0,
|
|
7993
|
+
|
|
7994
|
+
var paginateListDataSourceRuns = (0, import_core.createPaginator)(DataZoneClient, ListDataSourceRunsCommand, "nextToken", "nextToken", "maxResults");
|
|
7937
7995
|
|
|
7938
7996
|
// src/pagination/ListDataSourcesPaginator.ts
|
|
7939
|
-
|
|
7940
|
-
var paginateListDataSources = (0,
|
|
7997
|
+
|
|
7998
|
+
var paginateListDataSources = (0, import_core.createPaginator)(DataZoneClient, ListDataSourcesCommand, "nextToken", "nextToken", "maxResults");
|
|
7941
7999
|
|
|
7942
8000
|
// src/pagination/ListDomainsPaginator.ts
|
|
7943
|
-
|
|
7944
|
-
var paginateListDomains = (0,
|
|
8001
|
+
|
|
8002
|
+
var paginateListDomains = (0, import_core.createPaginator)(DataZoneClient, ListDomainsCommand, "nextToken", "nextToken", "maxResults");
|
|
7945
8003
|
|
|
7946
8004
|
// src/pagination/ListEnvironmentBlueprintConfigurationsPaginator.ts
|
|
7947
|
-
|
|
7948
|
-
var paginateListEnvironmentBlueprintConfigurations = (0,
|
|
8005
|
+
|
|
8006
|
+
var paginateListEnvironmentBlueprintConfigurations = (0, import_core.createPaginator)(DataZoneClient, ListEnvironmentBlueprintConfigurationsCommand, "nextToken", "nextToken", "maxResults");
|
|
7949
8007
|
|
|
7950
8008
|
// src/pagination/ListEnvironmentBlueprintsPaginator.ts
|
|
7951
|
-
|
|
7952
|
-
var paginateListEnvironmentBlueprints = (0,
|
|
8009
|
+
|
|
8010
|
+
var paginateListEnvironmentBlueprints = (0, import_core.createPaginator)(DataZoneClient, ListEnvironmentBlueprintsCommand, "nextToken", "nextToken", "maxResults");
|
|
7953
8011
|
|
|
7954
8012
|
// src/pagination/ListEnvironmentProfilesPaginator.ts
|
|
7955
|
-
|
|
7956
|
-
var paginateListEnvironmentProfiles = (0,
|
|
8013
|
+
|
|
8014
|
+
var paginateListEnvironmentProfiles = (0, import_core.createPaginator)(DataZoneClient, ListEnvironmentProfilesCommand, "nextToken", "nextToken", "maxResults");
|
|
7957
8015
|
|
|
7958
8016
|
// src/pagination/ListEnvironmentsPaginator.ts
|
|
7959
|
-
|
|
7960
|
-
var paginateListEnvironments = (0,
|
|
8017
|
+
|
|
8018
|
+
var paginateListEnvironments = (0, import_core.createPaginator)(DataZoneClient, ListEnvironmentsCommand, "nextToken", "nextToken", "maxResults");
|
|
7961
8019
|
|
|
7962
8020
|
// src/pagination/ListNotificationsPaginator.ts
|
|
7963
|
-
|
|
7964
|
-
var paginateListNotifications = (0,
|
|
8021
|
+
|
|
8022
|
+
var paginateListNotifications = (0, import_core.createPaginator)(DataZoneClient, ListNotificationsCommand, "nextToken", "nextToken", "maxResults");
|
|
7965
8023
|
|
|
7966
8024
|
// src/pagination/ListProjectMembershipsPaginator.ts
|
|
7967
|
-
|
|
7968
|
-
var paginateListProjectMemberships = (0,
|
|
8025
|
+
|
|
8026
|
+
var paginateListProjectMemberships = (0, import_core.createPaginator)(DataZoneClient, ListProjectMembershipsCommand, "nextToken", "nextToken", "maxResults");
|
|
7969
8027
|
|
|
7970
8028
|
// src/pagination/ListProjectsPaginator.ts
|
|
7971
|
-
|
|
7972
|
-
var paginateListProjects = (0,
|
|
8029
|
+
|
|
8030
|
+
var paginateListProjects = (0, import_core.createPaginator)(DataZoneClient, ListProjectsCommand, "nextToken", "nextToken", "maxResults");
|
|
7973
8031
|
|
|
7974
8032
|
// src/pagination/ListSubscriptionGrantsPaginator.ts
|
|
7975
|
-
|
|
7976
|
-
var paginateListSubscriptionGrants = (0,
|
|
8033
|
+
|
|
8034
|
+
var paginateListSubscriptionGrants = (0, import_core.createPaginator)(DataZoneClient, ListSubscriptionGrantsCommand, "nextToken", "nextToken", "maxResults");
|
|
7977
8035
|
|
|
7978
8036
|
// src/pagination/ListSubscriptionRequestsPaginator.ts
|
|
7979
|
-
|
|
7980
|
-
var paginateListSubscriptionRequests = (0,
|
|
8037
|
+
|
|
8038
|
+
var paginateListSubscriptionRequests = (0, import_core.createPaginator)(DataZoneClient, ListSubscriptionRequestsCommand, "nextToken", "nextToken", "maxResults");
|
|
7981
8039
|
|
|
7982
8040
|
// src/pagination/ListSubscriptionTargetsPaginator.ts
|
|
7983
|
-
|
|
7984
|
-
var paginateListSubscriptionTargets = (0,
|
|
8041
|
+
|
|
8042
|
+
var paginateListSubscriptionTargets = (0, import_core.createPaginator)(DataZoneClient, ListSubscriptionTargetsCommand, "nextToken", "nextToken", "maxResults");
|
|
7985
8043
|
|
|
7986
8044
|
// src/pagination/ListSubscriptionsPaginator.ts
|
|
7987
|
-
|
|
7988
|
-
var paginateListSubscriptions = (0,
|
|
8045
|
+
|
|
8046
|
+
var paginateListSubscriptions = (0, import_core.createPaginator)(DataZoneClient, ListSubscriptionsCommand, "nextToken", "nextToken", "maxResults");
|
|
7989
8047
|
|
|
7990
8048
|
// src/pagination/SearchGroupProfilesPaginator.ts
|
|
7991
|
-
|
|
7992
|
-
var paginateSearchGroupProfiles = (0,
|
|
8049
|
+
|
|
8050
|
+
var paginateSearchGroupProfiles = (0, import_core.createPaginator)(DataZoneClient, SearchGroupProfilesCommand, "nextToken", "nextToken", "maxResults");
|
|
7993
8051
|
|
|
7994
8052
|
// src/pagination/SearchListingsPaginator.ts
|
|
7995
|
-
|
|
7996
|
-
var paginateSearchListings = (0,
|
|
8053
|
+
|
|
8054
|
+
var paginateSearchListings = (0, import_core.createPaginator)(DataZoneClient, SearchListingsCommand, "nextToken", "nextToken", "maxResults");
|
|
7997
8055
|
|
|
7998
8056
|
// src/pagination/SearchPaginator.ts
|
|
7999
|
-
|
|
8000
|
-
var paginateSearch = (0,
|
|
8057
|
+
|
|
8058
|
+
var paginateSearch = (0, import_core.createPaginator)(DataZoneClient, SearchCommand, "nextToken", "nextToken", "maxResults");
|
|
8001
8059
|
|
|
8002
8060
|
// src/pagination/SearchTypesPaginator.ts
|
|
8003
|
-
|
|
8004
|
-
var paginateSearchTypes = (0,
|
|
8061
|
+
|
|
8062
|
+
var paginateSearchTypes = (0, import_core.createPaginator)(DataZoneClient, SearchTypesCommand, "nextToken", "nextToken", "maxResults");
|
|
8005
8063
|
|
|
8006
8064
|
// src/pagination/SearchUserProfilesPaginator.ts
|
|
8007
|
-
|
|
8008
|
-
var paginateSearchUserProfiles = (0,
|
|
8065
|
+
|
|
8066
|
+
var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient, SearchUserProfilesCommand, "nextToken", "nextToken", "maxResults");
|
|
8009
8067
|
|
|
8010
8068
|
// src/index.ts
|
|
8011
8069
|
var import_util_endpoints = require("@aws-sdk/util-endpoints");
|