@aws-sdk/client-datazone 3.922.0 → 3.925.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 (27) hide show
  1. package/dist-cjs/index.js +38 -8
  2. package/dist-es/commands/ListSubscriptionTargetsCommand.js +1 -1
  3. package/dist-es/commands/ListSubscriptionsCommand.js +1 -1
  4. package/dist-es/models/models_0.js +4 -0
  5. package/dist-es/models/models_1.js +3 -8
  6. package/dist-es/models/models_2.js +11 -1
  7. package/dist-es/protocols/Aws_restJson1.js +20 -0
  8. package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  9. package/dist-types/commands/CreateProjectCommand.d.ts +10 -0
  10. package/dist-types/commands/CreateProjectMembershipCommand.d.ts +1 -1
  11. package/dist-types/commands/CreateProjectProfileCommand.d.ts +18 -0
  12. package/dist-types/commands/GetProjectCommand.d.ts +7 -0
  13. package/dist-types/commands/GetProjectProfileCommand.d.ts +9 -0
  14. package/dist-types/commands/ListSubscriptionTargetsCommand.d.ts +1 -2
  15. package/dist-types/commands/ListSubscriptionsCommand.d.ts +2 -1
  16. package/dist-types/commands/UpdateProjectCommand.d.ts +10 -0
  17. package/dist-types/commands/UpdateProjectProfileCommand.d.ts +18 -0
  18. package/dist-types/models/models_0.d.ts +43 -30
  19. package/dist-types/models/models_1.d.ts +102 -140
  20. package/dist-types/models/models_2.d.ts +181 -2
  21. package/dist-types/ts3.4/commands/CreateProjectMembershipCommand.d.ts +1 -1
  22. package/dist-types/ts3.4/commands/ListSubscriptionTargetsCommand.d.ts +4 -2
  23. package/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +2 -4
  24. package/dist-types/ts3.4/models/models_0.d.ts +13 -7
  25. package/dist-types/ts3.4/models/models_1.d.ts +23 -35
  26. package/dist-types/ts3.4/models/models_2.d.ts +47 -1
  27. package/package.json +5 -5
@@ -3381,6 +3381,7 @@ export interface CreateProjectInput {
3381
3381
  domainIdentifier: string | undefined;
3382
3382
  name: string | undefined;
3383
3383
  description?: string | undefined;
3384
+ resourceTags?: Record<string, string> | undefined;
3384
3385
  glossaryTerms?: string[] | undefined;
3385
3386
  domainUnitId?: string | undefined;
3386
3387
  projectProfileId?: string | undefined;
@@ -3412,6 +3413,17 @@ export declare const ProjectStatus: {
3412
3413
  readonly UPDATING: "UPDATING";
3413
3414
  };
3414
3415
  export type ProjectStatus = (typeof ProjectStatus)[keyof typeof ProjectStatus];
3416
+ export declare const ResourceTagSource: {
3417
+ readonly PROJECT: "PROJECT";
3418
+ readonly PROJECT_PROFILE: "PROJECT_PROFILE";
3419
+ };
3420
+ export type ResourceTagSource =
3421
+ (typeof ResourceTagSource)[keyof typeof ResourceTagSource];
3422
+ export interface ResourceTag {
3423
+ key: string | undefined;
3424
+ value: string | undefined;
3425
+ source: ResourceTagSource | undefined;
3426
+ }
3415
3427
  export interface CreateProjectOutput {
3416
3428
  domainId: string | undefined;
3417
3429
  id: string | undefined;
@@ -3422,6 +3434,7 @@ export interface CreateProjectOutput {
3422
3434
  createdBy: string | undefined;
3423
3435
  createdAt?: Date | undefined;
3424
3436
  lastUpdatedAt?: Date | undefined;
3437
+ resourceTags?: ResourceTag[] | undefined;
3425
3438
  glossaryTerms?: string[] | undefined;
3426
3439
  domainUnitId?: string | undefined;
3427
3440
  projectProfileId?: string | undefined;
@@ -3464,13 +3477,6 @@ export declare namespace Member {
3464
3477
  }
3465
3478
  const visit: <T>(value: Member, visitor: Visitor<T>) => T;
3466
3479
  }
3467
- export interface CreateProjectMembershipInput {
3468
- domainIdentifier: string | undefined;
3469
- projectIdentifier: string | undefined;
3470
- member: Member | undefined;
3471
- designation: UserDesignation | undefined;
3472
- }
3473
- export interface CreateProjectMembershipOutput {}
3474
3480
  export declare const AcceptChoiceFilterSensitiveLog: (obj: AcceptChoice) => any;
3475
3481
  export declare const AcceptPredictionsInputFilterSensitiveLog: (
3476
3482
  obj: AcceptPredictionsInput
@@ -58,6 +58,7 @@ import {
58
58
  RecommendationConfiguration,
59
59
  ResolutionStrategy,
60
60
  Resource,
61
+ ResourceTag,
61
62
  RuleScopeSelectionMode,
62
63
  ScheduleConfiguration,
63
64
  SingleSignOn,
@@ -69,6 +70,13 @@ import {
69
70
  TermRelations,
70
71
  UserDesignation,
71
72
  } from "./models_0";
73
+ export interface CreateProjectMembershipInput {
74
+ domainIdentifier: string | undefined;
75
+ projectIdentifier: string | undefined;
76
+ member: Member | undefined;
77
+ designation: UserDesignation | undefined;
78
+ }
79
+ export interface CreateProjectMembershipOutput {}
72
80
  export type Region =
73
81
  | Region.RegionNameMember
74
82
  | Region.RegionNamePathMember
@@ -126,6 +134,11 @@ export interface EnvironmentConfiguration {
126
134
  awsRegion?: Region | undefined;
127
135
  deploymentOrder?: number | undefined;
128
136
  }
137
+ export interface ResourceTagParameter {
138
+ key: string | undefined;
139
+ value: string | undefined;
140
+ isValueEditable: boolean | undefined;
141
+ }
129
142
  export declare const Status: {
130
143
  readonly DISABLED: "DISABLED";
131
144
  readonly ENABLED: "ENABLED";
@@ -136,6 +149,9 @@ export interface CreateProjectProfileInput {
136
149
  name: string | undefined;
137
150
  description?: string | undefined;
138
151
  status?: Status | undefined;
152
+ projectResourceTags?: ResourceTagParameter[] | undefined;
153
+ allowCustomProjectResourceTags?: boolean | undefined;
154
+ projectResourceTagsDescription?: string | undefined;
139
155
  environmentConfigurations?: EnvironmentConfiguration[] | undefined;
140
156
  domainUnitIdentifier?: string | undefined;
141
157
  }
@@ -145,6 +161,9 @@ export interface CreateProjectProfileOutput {
145
161
  name: string | undefined;
146
162
  description?: string | undefined;
147
163
  status?: Status | undefined;
164
+ projectResourceTags?: ResourceTagParameter[] | undefined;
165
+ allowCustomProjectResourceTags?: boolean | undefined;
166
+ projectResourceTagsDescription?: string | undefined;
148
167
  environmentConfigurations?: EnvironmentConfiguration[] | undefined;
149
168
  createdBy: string | undefined;
150
169
  createdAt?: Date | undefined;
@@ -1495,6 +1514,7 @@ export interface GetProjectOutput {
1495
1514
  createdBy: string | undefined;
1496
1515
  createdAt?: Date | undefined;
1497
1516
  lastUpdatedAt?: Date | undefined;
1517
+ resourceTags?: ResourceTag[] | undefined;
1498
1518
  glossaryTerms?: string[] | undefined;
1499
1519
  domainUnitId?: string | undefined;
1500
1520
  projectProfileId?: string | undefined;
@@ -1511,6 +1531,9 @@ export interface GetProjectProfileOutput {
1511
1531
  name: string | undefined;
1512
1532
  description?: string | undefined;
1513
1533
  status?: Status | undefined;
1534
+ projectResourceTags?: ResourceTagParameter[] | undefined;
1535
+ allowCustomProjectResourceTags?: boolean | undefined;
1536
+ projectResourceTagsDescription?: string | undefined;
1514
1537
  environmentConfigurations?: EnvironmentConfiguration[] | undefined;
1515
1538
  createdBy: string | undefined;
1516
1539
  createdAt?: Date | undefined;
@@ -2394,35 +2417,6 @@ export interface SubscriptionSummary {
2394
2417
  subscriptionRequestId?: string | undefined;
2395
2418
  retainPermissions?: boolean | undefined;
2396
2419
  }
2397
- export interface ListSubscriptionsOutput {
2398
- items: SubscriptionSummary[] | undefined;
2399
- nextToken?: string | undefined;
2400
- }
2401
- export interface ListSubscriptionTargetsInput {
2402
- domainIdentifier: string | undefined;
2403
- environmentIdentifier: string | undefined;
2404
- sortBy?: SortKey | undefined;
2405
- sortOrder?: SortOrder | undefined;
2406
- maxResults?: number | undefined;
2407
- nextToken?: string | undefined;
2408
- }
2409
- export interface SubscriptionTargetSummary {
2410
- id: string | undefined;
2411
- authorizedPrincipals: string[] | undefined;
2412
- domainId: string | undefined;
2413
- projectId: string | undefined;
2414
- environmentId: string | undefined;
2415
- name: string | undefined;
2416
- type: string | undefined;
2417
- createdBy: string | undefined;
2418
- updatedBy?: string | undefined;
2419
- createdAt: Date | undefined;
2420
- updatedAt?: Date | undefined;
2421
- manageAccessRole?: string | undefined;
2422
- applicableAssetTypes: string[] | undefined;
2423
- subscriptionTargetConfig: SubscriptionTargetForm[] | undefined;
2424
- provider: string | undefined;
2425
- }
2426
2420
  export declare const EnvironmentConfigurationFilterSensitiveLog: (
2427
2421
  obj: EnvironmentConfiguration
2428
2422
  ) => any;
@@ -2662,9 +2656,3 @@ export declare const ListSubscriptionRequestsOutputFilterSensitiveLog: (
2662
2656
  export declare const SubscriptionSummaryFilterSensitiveLog: (
2663
2657
  obj: SubscriptionSummary
2664
2658
  ) => any;
2665
- export declare const ListSubscriptionsOutputFilterSensitiveLog: (
2666
- obj: ListSubscriptionsOutput
2667
- ) => any;
2668
- export declare const SubscriptionTargetSummaryFilterSensitiveLog: (
2669
- obj: SubscriptionTargetSummary
2670
- ) => any;
@@ -40,6 +40,7 @@ import {
40
40
  ProvisioningProperties,
41
41
  ResolutionStrategy,
42
42
  Resource,
43
+ ResourceTag,
43
44
  RowFilterExpression,
44
45
  SubscribedListing,
45
46
  SubscribedPrincipal,
@@ -56,25 +57,56 @@ import {
56
57
  FailureCause,
57
58
  GrantedEntity,
58
59
  Import,
60
+ ResourceTagParameter,
59
61
  RuleAction,
60
62
  RuleDetail,
61
63
  RuleScope,
62
64
  RuleTarget,
63
65
  RuleTargetType,
64
66
  RuleType,
67
+ SortKey,
65
68
  SortOrder,
66
69
  Status,
67
70
  SubscribedAsset,
68
71
  SubscriptionGrantOverallStatus,
69
72
  SubscriptionGrantStatus,
73
+ SubscriptionSummary,
70
74
  SubscriptionTargetForm,
71
- SubscriptionTargetSummary,
72
75
  TimeSeriesDataPointFormOutput,
73
76
  TimeSeriesEntityType,
74
77
  UserProfileDetails,
75
78
  UserProfileStatus,
76
79
  UserProfileType,
77
80
  } from "./models_1";
81
+ export interface ListSubscriptionsOutput {
82
+ items: SubscriptionSummary[] | undefined;
83
+ nextToken?: string | undefined;
84
+ }
85
+ export interface ListSubscriptionTargetsInput {
86
+ domainIdentifier: string | undefined;
87
+ environmentIdentifier: string | undefined;
88
+ sortBy?: SortKey | undefined;
89
+ sortOrder?: SortOrder | undefined;
90
+ maxResults?: number | undefined;
91
+ nextToken?: string | undefined;
92
+ }
93
+ export interface SubscriptionTargetSummary {
94
+ id: string | undefined;
95
+ authorizedPrincipals: string[] | undefined;
96
+ domainId: string | undefined;
97
+ projectId: string | undefined;
98
+ environmentId: string | undefined;
99
+ name: string | undefined;
100
+ type: string | undefined;
101
+ createdBy: string | undefined;
102
+ updatedBy?: string | undefined;
103
+ createdAt: Date | undefined;
104
+ updatedAt?: Date | undefined;
105
+ manageAccessRole?: string | undefined;
106
+ applicableAssetTypes: string[] | undefined;
107
+ subscriptionTargetConfig: SubscriptionTargetForm[] | undefined;
108
+ provider: string | undefined;
109
+ }
78
110
  export interface ListSubscriptionTargetsOutput {
79
111
  items: SubscriptionTargetSummary[] | undefined;
80
112
  nextToken?: string | undefined;
@@ -799,6 +831,7 @@ export interface UpdateProjectInput {
799
831
  identifier: string | undefined;
800
832
  name?: string | undefined;
801
833
  description?: string | undefined;
834
+ resourceTags?: Record<string, string> | undefined;
802
835
  glossaryTerms?: string[] | undefined;
803
836
  domainUnitId?: string | undefined;
804
837
  environmentDeploymentDetails?: EnvironmentDeploymentDetails | undefined;
@@ -815,6 +848,7 @@ export interface UpdateProjectOutput {
815
848
  createdBy: string | undefined;
816
849
  createdAt?: Date | undefined;
817
850
  lastUpdatedAt?: Date | undefined;
851
+ resourceTags?: ResourceTag[] | undefined;
818
852
  glossaryTerms?: string[] | undefined;
819
853
  domainUnitId?: string | undefined;
820
854
  projectProfileId?: string | undefined;
@@ -827,6 +861,9 @@ export interface UpdateProjectProfileInput {
827
861
  name?: string | undefined;
828
862
  description?: string | undefined;
829
863
  status?: Status | undefined;
864
+ projectResourceTags?: ResourceTagParameter[] | undefined;
865
+ allowCustomProjectResourceTags?: boolean | undefined;
866
+ projectResourceTagsDescription?: string | undefined;
830
867
  environmentConfigurations?: EnvironmentConfiguration[] | undefined;
831
868
  domainUnitIdentifier?: string | undefined;
832
869
  }
@@ -836,6 +873,9 @@ export interface UpdateProjectProfileOutput {
836
873
  name: string | undefined;
837
874
  description?: string | undefined;
838
875
  status?: Status | undefined;
876
+ projectResourceTags?: ResourceTagParameter[] | undefined;
877
+ allowCustomProjectResourceTags?: boolean | undefined;
878
+ projectResourceTagsDescription?: string | undefined;
839
879
  environmentConfigurations?: EnvironmentConfiguration[] | undefined;
840
880
  createdBy: string | undefined;
841
881
  createdAt?: Date | undefined;
@@ -1121,6 +1161,12 @@ export interface UpdateAssetFilterOutput {
1121
1161
  effectiveColumnNames?: string[] | undefined;
1122
1162
  effectiveRowFilter?: string | undefined;
1123
1163
  }
1164
+ export declare const ListSubscriptionsOutputFilterSensitiveLog: (
1165
+ obj: ListSubscriptionsOutput
1166
+ ) => any;
1167
+ export declare const SubscriptionTargetSummaryFilterSensitiveLog: (
1168
+ obj: SubscriptionTargetSummary
1169
+ ) => any;
1124
1170
  export declare const ListSubscriptionTargetsOutputFilterSensitiveLog: (
1125
1171
  obj: ListSubscriptionTargetsOutput
1126
1172
  ) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-datazone",
3
3
  "description": "AWS SDK for JavaScript Datazone Client for Node.js, Browser and React Native",
4
- "version": "3.922.0",
4
+ "version": "3.925.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-datazone",
@@ -21,17 +21,17 @@
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
23
  "@aws-sdk/core": "3.922.0",
24
- "@aws-sdk/credential-provider-node": "3.922.0",
24
+ "@aws-sdk/credential-provider-node": "3.925.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",
28
28
  "@aws-sdk/middleware-user-agent": "3.922.0",
29
- "@aws-sdk/region-config-resolver": "3.922.0",
29
+ "@aws-sdk/region-config-resolver": "3.925.0",
30
30
  "@aws-sdk/types": "3.922.0",
31
31
  "@aws-sdk/util-endpoints": "3.922.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.922.0",
33
33
  "@aws-sdk/util-user-agent-node": "3.922.0",
34
- "@smithy/config-resolver": "^4.4.1",
34
+ "@smithy/config-resolver": "^4.4.2",
35
35
  "@smithy/core": "^3.17.2",
36
36
  "@smithy/fetch-http-handler": "^5.3.5",
37
37
  "@smithy/hash-node": "^4.2.4",
@@ -51,7 +51,7 @@
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
53
  "@smithy/util-defaults-mode-browser": "^4.3.5",
54
- "@smithy/util-defaults-mode-node": "^4.2.7",
54
+ "@smithy/util-defaults-mode-node": "^4.2.8",
55
55
  "@smithy/util-endpoints": "^3.2.4",
56
56
  "@smithy/util-middleware": "^4.2.4",
57
57
  "@smithy/util-retry": "^4.2.4",