@aws-sdk/client-service-catalog 3.432.0 → 3.433.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.
@@ -646,7 +646,7 @@ export interface CopyProductInput {
646
646
  * <p>The identifiers of the provisioning artifacts (also known as versions) of the product to copy.
647
647
  * By default, all provisioning artifacts are copied.</p>
648
648
  */
649
- SourceProvisioningArtifactIdentifiers?: Record<ProvisioningArtifactPropertyName, string>[];
649
+ SourceProvisioningArtifactIdentifiers?: Partial<Record<ProvisioningArtifactPropertyName, string>>[];
650
650
  /**
651
651
  * @public
652
652
  * <p>The copy options. If the value is <code>CopyTags</code>, the tags from the source
@@ -1957,7 +1957,7 @@ export interface CreateServiceActionInput {
1957
1957
  * </dd>
1958
1958
  * </dl>
1959
1959
  */
1960
- Definition: Record<ServiceActionDefinitionKey, string> | undefined;
1960
+ Definition: Partial<Record<ServiceActionDefinitionKey, string>> | undefined;
1961
1961
  /**
1962
1962
  * @public
1963
1963
  * <p>The self-service action description.</p>
@@ -2025,7 +2025,7 @@ export interface ServiceActionDetail {
2025
2025
  * @public
2026
2026
  * <p>A map that defines the self-service action.</p>
2027
2027
  */
2028
- Definition?: Record<ServiceActionDefinitionKey, string>;
2028
+ Definition?: Partial<Record<ServiceActionDefinitionKey, string>>;
2029
2029
  }
2030
2030
  /**
2031
2031
  * @public
@@ -6350,7 +6350,7 @@ export interface SearchProductsInput {
6350
6350
  * <p>The search filters. If no search filters are specified, the output includes
6351
6351
  * all products to which the caller has access.</p>
6352
6352
  */
6353
- Filters?: Record<ProductViewFilterBy, string[]>;
6353
+ Filters?: Partial<Record<ProductViewFilterBy, string[]>>;
6354
6354
  /**
6355
6355
  * @public
6356
6356
  * <p>The maximum number of items to return with this call.</p>
@@ -6449,7 +6449,7 @@ export interface SearchProductsAsAdminInput {
6449
6449
  * <p>The search filters. If no search filters are specified, the output includes all products
6450
6450
  * to which the administrator has access.</p>
6451
6451
  */
6452
- Filters?: Record<ProductViewFilterBy, string[]>;
6452
+ Filters?: Partial<Record<ProductViewFilterBy, string[]>>;
6453
6453
  /**
6454
6454
  * @public
6455
6455
  * <p>The sort field. If no value is specified, the results are not sorted.</p>
@@ -6538,7 +6538,7 @@ export interface SearchProvisionedProductsInput {
6538
6538
  * <p>Example: <code>"SearchQuery":["status:AVAILABLE"]</code>
6539
6539
  * </p>
6540
6540
  */
6541
- Filters?: Record<ProvisionedProductViewFilterBy, string[]>;
6541
+ Filters?: Partial<Record<ProvisionedProductViewFilterBy, string[]>>;
6542
6542
  /**
6543
6543
  * @public
6544
6544
  * <p>The sort field. If no value is specified, the results are not sorted. The valid values are <code>arn</code>, <code>id</code>, <code>name</code>,
@@ -7399,7 +7399,7 @@ export interface UpdateProvisionedProductPropertiesInput {
7399
7399
  * If an end user provisions a product and the owner is updated to someone else, they will no longer be able to see or perform any actions through
7400
7400
  * API or the Service Catalog console on that provisioned product.</p>
7401
7401
  */
7402
- ProvisionedProductProperties: Record<PropertyKey, string> | undefined;
7402
+ ProvisionedProductProperties: Partial<Record<PropertyKey, string>> | undefined;
7403
7403
  /**
7404
7404
  * @public
7405
7405
  * <p>The idempotency token that uniquely identifies the provisioning product update request.</p>
@@ -7419,7 +7419,7 @@ export interface UpdateProvisionedProductPropertiesOutput {
7419
7419
  * @public
7420
7420
  * <p>A map that contains the properties updated.</p>
7421
7421
  */
7422
- ProvisionedProductProperties?: Record<PropertyKey, string>;
7422
+ ProvisionedProductProperties?: Partial<Record<PropertyKey, string>>;
7423
7423
  /**
7424
7424
  * @public
7425
7425
  * <p>The identifier of the record.</p>
@@ -7524,7 +7524,7 @@ export interface UpdateServiceActionInput {
7524
7524
  * @public
7525
7525
  * <p>A map that defines the self-service action.</p>
7526
7526
  */
7527
- Definition?: Record<ServiceActionDefinitionKey, string>;
7527
+ Definition?: Partial<Record<ServiceActionDefinitionKey, string>>;
7528
7528
  /**
7529
7529
  * @public
7530
7530
  * <p>The self-service action description.</p>
@@ -168,9 +168,8 @@ export interface CopyProductInput {
168
168
  SourceProductArn: string | undefined;
169
169
  TargetProductId?: string;
170
170
  TargetProductName?: string;
171
- SourceProvisioningArtifactIdentifiers?: Record<
172
- ProvisioningArtifactPropertyName,
173
- string
171
+ SourceProvisioningArtifactIdentifiers?: Partial<
172
+ Record<ProvisioningArtifactPropertyName, string>
174
173
  >[];
175
174
  CopyOptions?: CopyOption[];
176
175
  IdempotencyToken?: string;
@@ -429,7 +428,7 @@ export type ServiceActionDefinitionType =
429
428
  export interface CreateServiceActionInput {
430
429
  Name: string | undefined;
431
430
  DefinitionType: ServiceActionDefinitionType | undefined;
432
- Definition: Record<ServiceActionDefinitionKey, string> | undefined;
431
+ Definition: Partial<Record<ServiceActionDefinitionKey, string>> | undefined;
433
432
  Description?: string;
434
433
  AcceptLanguage?: string;
435
434
  IdempotencyToken?: string;
@@ -442,7 +441,7 @@ export interface ServiceActionSummary {
442
441
  }
443
442
  export interface ServiceActionDetail {
444
443
  ServiceActionSummary?: ServiceActionSummary;
445
- Definition?: Record<ServiceActionDefinitionKey, string>;
444
+ Definition?: Partial<Record<ServiceActionDefinitionKey, string>>;
446
445
  }
447
446
  export interface CreateServiceActionOutput {
448
447
  ServiceActionDetail?: ServiceActionDetail;
@@ -1345,7 +1344,7 @@ export declare const SortOrder: {
1345
1344
  export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
1346
1345
  export interface SearchProductsInput {
1347
1346
  AcceptLanguage?: string;
1348
- Filters?: Record<ProductViewFilterBy, string[]>;
1347
+ Filters?: Partial<Record<ProductViewFilterBy, string[]>>;
1349
1348
  PageSize?: number;
1350
1349
  SortBy?: ProductViewSortBy;
1351
1350
  SortOrder?: SortOrder;
@@ -1367,7 +1366,7 @@ export type ProductSource = (typeof ProductSource)[keyof typeof ProductSource];
1367
1366
  export interface SearchProductsAsAdminInput {
1368
1367
  AcceptLanguage?: string;
1369
1368
  PortfolioId?: string;
1370
- Filters?: Record<ProductViewFilterBy, string[]>;
1369
+ Filters?: Partial<Record<ProductViewFilterBy, string[]>>;
1371
1370
  SortBy?: ProductViewSortBy;
1372
1371
  SortOrder?: SortOrder;
1373
1372
  PageToken?: string;
@@ -1386,7 +1385,7 @@ export type ProvisionedProductViewFilterBy =
1386
1385
  export interface SearchProvisionedProductsInput {
1387
1386
  AcceptLanguage?: string;
1388
1387
  AccessLevelFilter?: AccessLevelFilter;
1389
- Filters?: Record<ProvisionedProductViewFilterBy, string[]>;
1388
+ Filters?: Partial<Record<ProvisionedProductViewFilterBy, string[]>>;
1390
1389
  SortBy?: string;
1391
1390
  SortOrder?: SortOrder;
1392
1391
  PageSize?: number;
@@ -1525,12 +1524,14 @@ export type PropertyKey = (typeof PropertyKey)[keyof typeof PropertyKey];
1525
1524
  export interface UpdateProvisionedProductPropertiesInput {
1526
1525
  AcceptLanguage?: string;
1527
1526
  ProvisionedProductId: string | undefined;
1528
- ProvisionedProductProperties: Record<PropertyKey, string> | undefined;
1527
+ ProvisionedProductProperties:
1528
+ | Partial<Record<PropertyKey, string>>
1529
+ | undefined;
1529
1530
  IdempotencyToken?: string;
1530
1531
  }
1531
1532
  export interface UpdateProvisionedProductPropertiesOutput {
1532
1533
  ProvisionedProductId?: string;
1533
- ProvisionedProductProperties?: Record<PropertyKey, string>;
1534
+ ProvisionedProductProperties?: Partial<Record<PropertyKey, string>>;
1534
1535
  RecordId?: string;
1535
1536
  Status?: RecordStatus;
1536
1537
  }
@@ -1551,7 +1552,7 @@ export interface UpdateProvisioningArtifactOutput {
1551
1552
  export interface UpdateServiceActionInput {
1552
1553
  Id: string | undefined;
1553
1554
  Name?: string;
1554
- Definition?: Record<ServiceActionDefinitionKey, string>;
1555
+ Definition?: Partial<Record<ServiceActionDefinitionKey, string>>;
1555
1556
  Description?: string;
1556
1557
  AcceptLanguage?: string;
1557
1558
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-service-catalog",
3
3
  "description": "AWS SDK for JavaScript Service Catalog Client for Node.js, Browser and React Native",
4
- "version": "3.432.0",
4
+ "version": "3.433.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,39 +21,39 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.431.0",
25
- "@aws-sdk/credential-provider-node": "3.431.0",
26
- "@aws-sdk/middleware-host-header": "3.431.0",
27
- "@aws-sdk/middleware-logger": "3.428.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
- "@aws-sdk/middleware-signing": "3.428.0",
30
- "@aws-sdk/middleware-user-agent": "3.428.0",
31
- "@aws-sdk/region-config-resolver": "3.430.0",
32
- "@aws-sdk/types": "3.428.0",
33
- "@aws-sdk/util-endpoints": "3.428.0",
34
- "@aws-sdk/util-user-agent-browser": "3.428.0",
35
- "@aws-sdk/util-user-agent-node": "3.430.0",
36
- "@smithy/config-resolver": "^2.0.15",
37
- "@smithy/fetch-http-handler": "^2.2.3",
38
- "@smithy/hash-node": "^2.0.11",
39
- "@smithy/invalid-dependency": "^2.0.11",
40
- "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.2",
42
- "@smithy/middleware-retry": "^2.0.17",
43
- "@smithy/middleware-serde": "^2.0.11",
44
- "@smithy/middleware-stack": "^2.0.5",
45
- "@smithy/node-config-provider": "^2.1.2",
46
- "@smithy/node-http-handler": "^2.1.7",
47
- "@smithy/protocol-http": "^3.0.7",
48
- "@smithy/smithy-client": "^2.1.11",
49
- "@smithy/types": "^2.3.5",
50
- "@smithy/url-parser": "^2.0.11",
24
+ "@aws-sdk/client-sts": "3.433.0",
25
+ "@aws-sdk/credential-provider-node": "3.433.0",
26
+ "@aws-sdk/middleware-host-header": "3.433.0",
27
+ "@aws-sdk/middleware-logger": "3.433.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.433.0",
29
+ "@aws-sdk/middleware-signing": "3.433.0",
30
+ "@aws-sdk/middleware-user-agent": "3.433.0",
31
+ "@aws-sdk/region-config-resolver": "3.433.0",
32
+ "@aws-sdk/types": "3.433.0",
33
+ "@aws-sdk/util-endpoints": "3.433.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.433.0",
35
+ "@aws-sdk/util-user-agent-node": "3.433.0",
36
+ "@smithy/config-resolver": "^2.0.16",
37
+ "@smithy/fetch-http-handler": "^2.2.4",
38
+ "@smithy/hash-node": "^2.0.12",
39
+ "@smithy/invalid-dependency": "^2.0.12",
40
+ "@smithy/middleware-content-length": "^2.0.14",
41
+ "@smithy/middleware-endpoint": "^2.1.3",
42
+ "@smithy/middleware-retry": "^2.0.18",
43
+ "@smithy/middleware-serde": "^2.0.12",
44
+ "@smithy/middleware-stack": "^2.0.6",
45
+ "@smithy/node-config-provider": "^2.1.3",
46
+ "@smithy/node-http-handler": "^2.1.8",
47
+ "@smithy/protocol-http": "^3.0.8",
48
+ "@smithy/smithy-client": "^2.1.12",
49
+ "@smithy/types": "^2.4.0",
50
+ "@smithy/url-parser": "^2.0.12",
51
51
  "@smithy/util-base64": "^2.0.0",
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
- "@smithy/util-defaults-mode-browser": "^2.0.15",
55
- "@smithy/util-defaults-mode-node": "^2.0.20",
56
- "@smithy/util-retry": "^2.0.4",
54
+ "@smithy/util-defaults-mode-browser": "^2.0.16",
55
+ "@smithy/util-defaults-mode-node": "^2.0.21",
56
+ "@smithy/util-retry": "^2.0.5",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
58
  "tslib": "^2.5.0",
59
59
  "uuid": "^8.3.2"