@aws-sdk/client-serverlessapplicationrepository 3.928.0 → 3.929.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.
Files changed (35) hide show
  1. package/dist-cjs/index.js +1908 -870
  2. package/dist-cjs/runtimeConfig.shared.js +3 -0
  3. package/dist-es/ServerlessApplicationRepositoryClient.js +2 -0
  4. package/dist-es/commands/CreateApplicationCommand.js +3 -9
  5. package/dist-es/commands/CreateApplicationVersionCommand.js +3 -9
  6. package/dist-es/commands/CreateCloudFormationChangeSetCommand.js +3 -9
  7. package/dist-es/commands/CreateCloudFormationTemplateCommand.js +3 -9
  8. package/dist-es/commands/DeleteApplicationCommand.js +3 -9
  9. package/dist-es/commands/GetApplicationCommand.js +3 -9
  10. package/dist-es/commands/GetApplicationPolicyCommand.js +3 -9
  11. package/dist-es/commands/GetCloudFormationTemplateCommand.js +3 -9
  12. package/dist-es/commands/ListApplicationDependenciesCommand.js +3 -9
  13. package/dist-es/commands/ListApplicationVersionsCommand.js +3 -9
  14. package/dist-es/commands/ListApplicationsCommand.js +3 -9
  15. package/dist-es/commands/PutApplicationPolicyCommand.js +3 -9
  16. package/dist-es/commands/UnshareApplicationCommand.js +3 -9
  17. package/dist-es/commands/UpdateApplicationCommand.js +3 -9
  18. package/dist-es/runtimeConfig.shared.js +3 -0
  19. package/dist-es/schemas/schemas_0.js +1868 -0
  20. package/dist-types/ServerlessApplicationRepositoryClient.d.ts +10 -1
  21. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  22. package/dist-types/runtimeConfig.d.ts +1 -0
  23. package/dist-types/runtimeConfig.native.d.ts +1 -0
  24. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  25. package/dist-types/schemas/schemas_0.d.ts +69 -0
  26. package/dist-types/ts3.4/ServerlessApplicationRepositoryClient.d.ts +4 -0
  27. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  28. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  29. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  30. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  31. package/dist-types/ts3.4/schemas/schemas_0.d.ts +74 -0
  32. package/package.json +2 -2
  33. package/dist-es/protocols/Aws_restJson1.js +0 -761
  34. package/dist-types/protocols/Aws_restJson1.d.ts +0 -128
  35. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -173
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
5
5
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
6
6
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
7
  import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
8
- import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
8
+ import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
9
  import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
10
  import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
11
11
  import { CreateApplicationVersionCommandInput, CreateApplicationVersionCommandOutput } from "./commands/CreateApplicationVersionCommand";
@@ -155,6 +155,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
155
155
  * Optional extensions
156
156
  */
157
157
  extensions?: RuntimeExtension[];
158
+ /**
159
+ * The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
160
+ * may be overridden. A default will always be set by the client.
161
+ * Available options depend on the service's supported protocols and will not be validated by
162
+ * the client.
163
+ * @alpha
164
+ *
165
+ */
166
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
158
167
  /**
159
168
  * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
160
169
  */
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: ServerlessApplicationRepositoryC
29
29
  profile?: string;
30
30
  logger: import("@smithy/types").Logger;
31
31
  extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
32
33
  customUserAgent?: string | import("@smithy/types").UserAgent;
33
34
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
34
35
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: ServerlessApplicationRepositoryC
31
31
  profile?: string;
32
32
  logger: import("@smithy/types").Logger;
33
33
  extensions: import("./runtimeExtensions").RuntimeExtension[];
34
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
34
35
  customUserAgent?: string | import("@smithy/types").UserAgent;
35
36
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
36
37
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: ServerlessApplicationRepositoryC
27
27
  retryMode: string | import("@smithy/types").Provider<string>;
28
28
  logger: import("@smithy/types").Logger;
29
29
  extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
30
31
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
31
32
  customUserAgent?: string | import("@smithy/types").UserAgent;
32
33
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: ServerlessApplicationRepositoryC
14
14
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ServerlessApplicationRepositoryHttpAuthSchemeProvider;
15
15
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
16
  logger: import("@smithy/types").Logger;
17
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
17
18
  serviceId: string;
18
19
  urlParser: import("@smithy/types").UrlParser;
19
20
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,69 @@
1
+ import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
2
+ export declare var ApplicationDependencySummary: StaticStructureSchema;
3
+ export declare var ApplicationPolicyStatement: StaticStructureSchema;
4
+ export declare var ApplicationSummary: StaticStructureSchema;
5
+ export declare var BadRequestException: StaticErrorSchema;
6
+ export declare var ConflictException: StaticErrorSchema;
7
+ export declare var CreateApplicationRequest: StaticStructureSchema;
8
+ export declare var CreateApplicationResponse: StaticStructureSchema;
9
+ export declare var CreateApplicationVersionRequest: StaticStructureSchema;
10
+ export declare var CreateApplicationVersionResponse: StaticStructureSchema;
11
+ export declare var CreateCloudFormationChangeSetRequest: StaticStructureSchema;
12
+ export declare var CreateCloudFormationChangeSetResponse: StaticStructureSchema;
13
+ export declare var CreateCloudFormationTemplateRequest: StaticStructureSchema;
14
+ export declare var CreateCloudFormationTemplateResponse: StaticStructureSchema;
15
+ export declare var DeleteApplicationRequest: StaticStructureSchema;
16
+ export declare var ForbiddenException: StaticErrorSchema;
17
+ export declare var GetApplicationPolicyRequest: StaticStructureSchema;
18
+ export declare var GetApplicationPolicyResponse: StaticStructureSchema;
19
+ export declare var GetApplicationRequest: StaticStructureSchema;
20
+ export declare var GetApplicationResponse: StaticStructureSchema;
21
+ export declare var GetCloudFormationTemplateRequest: StaticStructureSchema;
22
+ export declare var GetCloudFormationTemplateResponse: StaticStructureSchema;
23
+ export declare var InternalServerErrorException: StaticErrorSchema;
24
+ export declare var ListApplicationDependenciesRequest: StaticStructureSchema;
25
+ export declare var ListApplicationDependenciesResponse: StaticStructureSchema;
26
+ export declare var ListApplicationsRequest: StaticStructureSchema;
27
+ export declare var ListApplicationsResponse: StaticStructureSchema;
28
+ export declare var ListApplicationVersionsRequest: StaticStructureSchema;
29
+ export declare var ListApplicationVersionsResponse: StaticStructureSchema;
30
+ export declare var NotFoundException: StaticErrorSchema;
31
+ export declare var ParameterDefinition: StaticStructureSchema;
32
+ export declare var ParameterValue: StaticStructureSchema;
33
+ export declare var PutApplicationPolicyRequest: StaticStructureSchema;
34
+ export declare var PutApplicationPolicyResponse: StaticStructureSchema;
35
+ export declare var RollbackConfiguration: StaticStructureSchema;
36
+ export declare var RollbackTrigger: StaticStructureSchema;
37
+ export declare var Tag: StaticStructureSchema;
38
+ export declare var TooManyRequestsException: StaticErrorSchema;
39
+ export declare var UnshareApplicationRequest: StaticStructureSchema;
40
+ export declare var UpdateApplicationRequest: StaticStructureSchema;
41
+ export declare var UpdateApplicationResponse: StaticStructureSchema;
42
+ export declare var Version: StaticStructureSchema;
43
+ export declare var VersionSummary: StaticStructureSchema;
44
+ export declare var __Unit: "unit";
45
+ export declare var ServerlessApplicationRepositoryServiceException: StaticErrorSchema;
46
+ export declare var __listOf__string: number;
47
+ export declare var __listOfApplicationDependencySummary: StaticListSchema;
48
+ export declare var __listOfApplicationPolicyStatement: StaticListSchema;
49
+ export declare var __listOfApplicationSummary: StaticListSchema;
50
+ export declare var __listOfCapability: number;
51
+ export declare var __listOfParameterDefinition: StaticListSchema;
52
+ export declare var __listOfParameterValue: StaticListSchema;
53
+ export declare var __listOfRollbackTrigger: StaticListSchema;
54
+ export declare var __listOfTag: StaticListSchema;
55
+ export declare var __listOfVersionSummary: StaticListSchema;
56
+ export declare var CreateApplication: StaticOperationSchema;
57
+ export declare var CreateApplicationVersion: StaticOperationSchema;
58
+ export declare var CreateCloudFormationChangeSet: StaticOperationSchema;
59
+ export declare var CreateCloudFormationTemplate: StaticOperationSchema;
60
+ export declare var DeleteApplication: StaticOperationSchema;
61
+ export declare var GetApplication: StaticOperationSchema;
62
+ export declare var GetApplicationPolicy: StaticOperationSchema;
63
+ export declare var GetCloudFormationTemplate: StaticOperationSchema;
64
+ export declare var ListApplicationDependencies: StaticOperationSchema;
65
+ export declare var ListApplications: StaticOperationSchema;
66
+ export declare var ListApplicationVersions: StaticOperationSchema;
67
+ export declare var PutApplicationPolicy: StaticOperationSchema;
68
+ export declare var UnshareApplication: StaticOperationSchema;
69
+ export declare var UpdateApplication: StaticOperationSchema;
@@ -30,10 +30,13 @@ import {
30
30
  BodyLengthCalculator as __BodyLengthCalculator,
31
31
  CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
32
  ChecksumConstructor as __ChecksumConstructor,
33
+ ClientProtocol,
33
34
  Decoder as __Decoder,
34
35
  Encoder as __Encoder,
35
36
  HashConstructor as __HashConstructor,
36
37
  HttpHandlerOptions as __HttpHandlerOptions,
38
+ HttpRequest,
39
+ HttpResponse,
37
40
  Logger as __Logger,
38
41
  Provider as __Provider,
39
42
  Provider,
@@ -162,6 +165,7 @@ export interface ClientDefaults
162
165
  retryMode?: string | __Provider<string>;
163
166
  logger?: __Logger;
164
167
  extensions?: RuntimeExtension[];
168
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
165
169
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
166
170
  }
167
171
  export type ServerlessApplicationRepositoryClientConfigType = Partial<
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
40
40
  profile?: string;
41
41
  logger: import("@smithy/types").Logger;
42
42
  extensions: import("./runtimeExtensions").RuntimeExtension[];
43
+ protocol: import("@smithy/types").ClientProtocol<
44
+ import("@smithy/types").HttpRequest,
45
+ import("@smithy/types").HttpResponse
46
+ >;
43
47
  customUserAgent?: string | import("@smithy/types").UserAgent;
44
48
  userAgentAppId?:
45
49
  | string
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
40
40
  profile?: string;
41
41
  logger: import("@smithy/types").Logger;
42
42
  extensions: import("./runtimeExtensions").RuntimeExtension[];
43
+ protocol: import("@smithy/types").ClientProtocol<
44
+ import("@smithy/types").HttpRequest,
45
+ import("@smithy/types").HttpResponse
46
+ >;
43
47
  customUserAgent?: string | import("@smithy/types").UserAgent;
44
48
  retryStrategy?:
45
49
  | import("@smithy/types").RetryStrategy
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
39
39
  retryMode: string | import("@smithy/types").Provider<string>;
40
40
  logger: import("@smithy/types").Logger;
41
41
  extensions: import("./runtimeExtensions").RuntimeExtension[];
42
+ protocol: import("@smithy/types").ClientProtocol<
43
+ import("@smithy/types").HttpRequest,
44
+ import("@smithy/types").HttpResponse
45
+ >;
42
46
  defaultsMode:
43
47
  | import("@smithy/smithy-client").DefaultsMode
44
48
  | import("@smithy/types").Provider<
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
16
16
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ServerlessApplicationRepositoryHttpAuthSchemeProvider;
17
17
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
18
18
  logger: import("@smithy/types").Logger;
19
+ protocol: import("@smithy/types").ClientProtocol<
20
+ import("@smithy/types").HttpRequest,
21
+ import("@smithy/types").HttpResponse
22
+ >;
19
23
  serviceId: string;
20
24
  urlParser: import("@smithy/types").UrlParser;
21
25
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,74 @@
1
+ import {
2
+ StaticErrorSchema,
3
+ StaticListSchema,
4
+ StaticOperationSchema,
5
+ StaticStructureSchema,
6
+ } from "@smithy/types";
7
+ export declare var ApplicationDependencySummary: StaticStructureSchema;
8
+ export declare var ApplicationPolicyStatement: StaticStructureSchema;
9
+ export declare var ApplicationSummary: StaticStructureSchema;
10
+ export declare var BadRequestException: StaticErrorSchema;
11
+ export declare var ConflictException: StaticErrorSchema;
12
+ export declare var CreateApplicationRequest: StaticStructureSchema;
13
+ export declare var CreateApplicationResponse: StaticStructureSchema;
14
+ export declare var CreateApplicationVersionRequest: StaticStructureSchema;
15
+ export declare var CreateApplicationVersionResponse: StaticStructureSchema;
16
+ export declare var CreateCloudFormationChangeSetRequest: StaticStructureSchema;
17
+ export declare var CreateCloudFormationChangeSetResponse: StaticStructureSchema;
18
+ export declare var CreateCloudFormationTemplateRequest: StaticStructureSchema;
19
+ export declare var CreateCloudFormationTemplateResponse: StaticStructureSchema;
20
+ export declare var DeleteApplicationRequest: StaticStructureSchema;
21
+ export declare var ForbiddenException: StaticErrorSchema;
22
+ export declare var GetApplicationPolicyRequest: StaticStructureSchema;
23
+ export declare var GetApplicationPolicyResponse: StaticStructureSchema;
24
+ export declare var GetApplicationRequest: StaticStructureSchema;
25
+ export declare var GetApplicationResponse: StaticStructureSchema;
26
+ export declare var GetCloudFormationTemplateRequest: StaticStructureSchema;
27
+ export declare var GetCloudFormationTemplateResponse: StaticStructureSchema;
28
+ export declare var InternalServerErrorException: StaticErrorSchema;
29
+ export declare var ListApplicationDependenciesRequest: StaticStructureSchema;
30
+ export declare var ListApplicationDependenciesResponse: StaticStructureSchema;
31
+ export declare var ListApplicationsRequest: StaticStructureSchema;
32
+ export declare var ListApplicationsResponse: StaticStructureSchema;
33
+ export declare var ListApplicationVersionsRequest: StaticStructureSchema;
34
+ export declare var ListApplicationVersionsResponse: StaticStructureSchema;
35
+ export declare var NotFoundException: StaticErrorSchema;
36
+ export declare var ParameterDefinition: StaticStructureSchema;
37
+ export declare var ParameterValue: StaticStructureSchema;
38
+ export declare var PutApplicationPolicyRequest: StaticStructureSchema;
39
+ export declare var PutApplicationPolicyResponse: StaticStructureSchema;
40
+ export declare var RollbackConfiguration: StaticStructureSchema;
41
+ export declare var RollbackTrigger: StaticStructureSchema;
42
+ export declare var Tag: StaticStructureSchema;
43
+ export declare var TooManyRequestsException: StaticErrorSchema;
44
+ export declare var UnshareApplicationRequest: StaticStructureSchema;
45
+ export declare var UpdateApplicationRequest: StaticStructureSchema;
46
+ export declare var UpdateApplicationResponse: StaticStructureSchema;
47
+ export declare var Version: StaticStructureSchema;
48
+ export declare var VersionSummary: StaticStructureSchema;
49
+ export declare var __Unit: "unit";
50
+ export declare var ServerlessApplicationRepositoryServiceException: StaticErrorSchema;
51
+ export declare var __listOf__string: number;
52
+ export declare var __listOfApplicationDependencySummary: StaticListSchema;
53
+ export declare var __listOfApplicationPolicyStatement: StaticListSchema;
54
+ export declare var __listOfApplicationSummary: StaticListSchema;
55
+ export declare var __listOfCapability: number;
56
+ export declare var __listOfParameterDefinition: StaticListSchema;
57
+ export declare var __listOfParameterValue: StaticListSchema;
58
+ export declare var __listOfRollbackTrigger: StaticListSchema;
59
+ export declare var __listOfTag: StaticListSchema;
60
+ export declare var __listOfVersionSummary: StaticListSchema;
61
+ export declare var CreateApplication: StaticOperationSchema;
62
+ export declare var CreateApplicationVersion: StaticOperationSchema;
63
+ export declare var CreateCloudFormationChangeSet: StaticOperationSchema;
64
+ export declare var CreateCloudFormationTemplate: StaticOperationSchema;
65
+ export declare var DeleteApplication: StaticOperationSchema;
66
+ export declare var GetApplication: StaticOperationSchema;
67
+ export declare var GetApplicationPolicy: StaticOperationSchema;
68
+ export declare var GetCloudFormationTemplate: StaticOperationSchema;
69
+ export declare var ListApplicationDependencies: StaticOperationSchema;
70
+ export declare var ListApplications: StaticOperationSchema;
71
+ export declare var ListApplicationVersions: StaticOperationSchema;
72
+ export declare var PutApplicationPolicy: StaticOperationSchema;
73
+ export declare var UnshareApplication: StaticOperationSchema;
74
+ export declare var UpdateApplication: StaticOperationSchema;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-serverlessapplicationrepository",
3
3
  "description": "AWS SDK for JavaScript Serverlessapplicationrepository Client for Node.js, Browser and React Native",
4
- "version": "3.928.0",
4
+ "version": "3.929.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-serverlessapplicationrepository",
@@ -21,7 +21,7 @@
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
23
  "@aws-sdk/core": "3.928.0",
24
- "@aws-sdk/credential-provider-node": "3.928.0",
24
+ "@aws-sdk/credential-provider-node": "3.929.0",
25
25
  "@aws-sdk/middleware-host-header": "3.922.0",
26
26
  "@aws-sdk/middleware-logger": "3.922.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.922.0",