@aws-sdk/client-marketplace-deployment 3.687.0 → 3.691.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.
|
@@ -87,17 +87,17 @@ export interface PutDeploymentParameterRequest {
|
|
|
87
87
|
* <p>A map of key-value pairs, where each pair represents a tag saved to the resource. Tags will only be applied for create operations, and they'll be ignored if the resource already exists.</p>
|
|
88
88
|
* @public
|
|
89
89
|
*/
|
|
90
|
-
tags?: Record<string, string
|
|
90
|
+
tags?: Record<string, string> | undefined;
|
|
91
91
|
/**
|
|
92
92
|
* <p>The date when deployment parameters expire and are scheduled for deletion.</p>
|
|
93
93
|
* @public
|
|
94
94
|
*/
|
|
95
|
-
expirationDate?: Date;
|
|
95
|
+
expirationDate?: Date | undefined;
|
|
96
96
|
/**
|
|
97
97
|
* <p>The idempotency token for deployment parameters. A unique identifier for the new version.</p>
|
|
98
98
|
* @public
|
|
99
99
|
*/
|
|
100
|
-
clientToken?: string;
|
|
100
|
+
clientToken?: string | undefined;
|
|
101
101
|
}
|
|
102
102
|
/**
|
|
103
103
|
* @public
|
|
@@ -122,7 +122,7 @@ export interface PutDeploymentParameterResponse {
|
|
|
122
122
|
* <p>A map of key-value pairs, where each pair represents a tag saved to the resource. Tags will only be applied for create operations, and they'll be ignored if the resource already exists.</p>
|
|
123
123
|
* @public
|
|
124
124
|
*/
|
|
125
|
-
tags?: Record<string, string
|
|
125
|
+
tags?: Record<string, string> | undefined;
|
|
126
126
|
}
|
|
127
127
|
/**
|
|
128
128
|
* <p>The specified resource wasn't found.</p>
|
|
@@ -198,7 +198,7 @@ export interface ListTagsForResourceResponse {
|
|
|
198
198
|
* <p>A map of key-value pairs, where each pair represents a tag present on the resource.</p>
|
|
199
199
|
* @public
|
|
200
200
|
*/
|
|
201
|
-
tags?: Record<string, string
|
|
201
|
+
tags?: Record<string, string> | undefined;
|
|
202
202
|
}
|
|
203
203
|
/**
|
|
204
204
|
* @public
|
|
@@ -213,7 +213,7 @@ export interface TagResourceRequest {
|
|
|
213
213
|
* <p>A map of key-value pairs, where each pair represents a tag present on the resource.</p>
|
|
214
214
|
* @public
|
|
215
215
|
*/
|
|
216
|
-
tags?: Record<string, string
|
|
216
|
+
tags?: Record<string, string> | undefined;
|
|
217
217
|
}
|
|
218
218
|
/**
|
|
219
219
|
* @public
|
|
@@ -30,15 +30,15 @@ export interface PutDeploymentParameterRequest {
|
|
|
30
30
|
productId: string | undefined;
|
|
31
31
|
agreementId: string | undefined;
|
|
32
32
|
deploymentParameter: DeploymentParameterInput | undefined;
|
|
33
|
-
tags?: Record<string, string
|
|
34
|
-
expirationDate?: Date;
|
|
35
|
-
clientToken?: string;
|
|
33
|
+
tags?: Record<string, string> | undefined;
|
|
34
|
+
expirationDate?: Date | undefined;
|
|
35
|
+
clientToken?: string | undefined;
|
|
36
36
|
}
|
|
37
37
|
export interface PutDeploymentParameterResponse {
|
|
38
38
|
resourceArn: string | undefined;
|
|
39
39
|
agreementId: string | undefined;
|
|
40
40
|
deploymentParameterId: string | undefined;
|
|
41
|
-
tags?: Record<string, string
|
|
41
|
+
tags?: Record<string, string> | undefined;
|
|
42
42
|
}
|
|
43
43
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
44
44
|
readonly name: "ResourceNotFoundException";
|
|
@@ -76,11 +76,11 @@ export interface ListTagsForResourceRequest {
|
|
|
76
76
|
resourceArn: string | undefined;
|
|
77
77
|
}
|
|
78
78
|
export interface ListTagsForResourceResponse {
|
|
79
|
-
tags?: Record<string, string
|
|
79
|
+
tags?: Record<string, string> | undefined;
|
|
80
80
|
}
|
|
81
81
|
export interface TagResourceRequest {
|
|
82
82
|
resourceArn: string | undefined;
|
|
83
|
-
tags?: Record<string, string
|
|
83
|
+
tags?: Record<string, string> | undefined;
|
|
84
84
|
}
|
|
85
85
|
export interface TagResourceResponse {}
|
|
86
86
|
export interface UntagResourceRequest {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-marketplace-deployment",
|
|
3
3
|
"description": "AWS SDK for JavaScript Marketplace Deployment Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.691.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-marketplace-deployment",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|