aws-sdk-datazone 1.76.0 → 1.78.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.
data/sig/params.rbs ADDED
@@ -0,0 +1,318 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module DataZone
10
+ module Params
11
+ type owner_properties = {
12
+ user: {
13
+ user_identifier: ::String
14
+ }?,
15
+ group: {
16
+ group_identifier: ::String
17
+ }?
18
+ }
19
+
20
+ type project_policy_grant_principal = {
21
+ project_designation: ("OWNER" | "CONTRIBUTOR" | "PROJECT_CATALOG_STEWARD"),
22
+ project_identifier: ::String?,
23
+ project_grant_filter: {
24
+ domain_unit_filter: {
25
+ domain_unit: ::String,
26
+ include_child_domain_units: bool?
27
+ }?
28
+ }?
29
+ }
30
+
31
+ type domain_unit_policy_grant_principal = {
32
+ domain_unit_designation: ("OWNER"),
33
+ domain_unit_identifier: ::String?,
34
+ domain_unit_grant_filter: {
35
+ all_domain_units_grant_filter: {
36
+ }?
37
+ }?
38
+ }
39
+
40
+ type policy_grant_principal = {
41
+ user: {
42
+ user_identifier: ::String?,
43
+ all_users_grant_filter: {
44
+ }?
45
+ }?,
46
+ group: {
47
+ group_identifier: ::String?
48
+ }?,
49
+ project: Params::project_policy_grant_principal?,
50
+ domain_unit: Params::domain_unit_policy_grant_principal?
51
+ }
52
+
53
+ type account_source = {
54
+ accounts: Array[
55
+ {
56
+ aws_account_id: ::String,
57
+ supported_regions: Array[::String],
58
+ aws_account_name: ::String?
59
+ }
60
+ ]?,
61
+ custom_account_pool_handler: {
62
+ lambda_function_arn: ::String,
63
+ lambda_execution_role_arn: ::String?
64
+ }?
65
+ }
66
+
67
+ type row_filter_expression = {
68
+ equal_to: {
69
+ column_name: ::String,
70
+ value: ::String
71
+ }?,
72
+ not_equal_to: {
73
+ column_name: ::String,
74
+ value: ::String
75
+ }?,
76
+ greater_than: {
77
+ column_name: ::String,
78
+ value: ::String
79
+ }?,
80
+ less_than: {
81
+ column_name: ::String,
82
+ value: ::String
83
+ }?,
84
+ greater_than_or_equal_to: {
85
+ column_name: ::String,
86
+ value: ::String
87
+ }?,
88
+ less_than_or_equal_to: {
89
+ column_name: ::String,
90
+ value: ::String
91
+ }?,
92
+ is_null: {
93
+ column_name: ::String
94
+ }?,
95
+ is_not_null: {
96
+ column_name: ::String
97
+ }?,
98
+ in: {
99
+ column_name: ::String,
100
+ values: Array[::String]
101
+ }?,
102
+ not_in: {
103
+ column_name: ::String,
104
+ values: Array[::String]
105
+ }?,
106
+ like: {
107
+ column_name: ::String,
108
+ value: ::String
109
+ }?,
110
+ not_like: {
111
+ column_name: ::String,
112
+ value: ::String
113
+ }?
114
+ }
115
+
116
+ type row_filter = {
117
+ expression: Params::row_filter_expression?,
118
+ and: Array[
119
+ {
120
+ expression: Params::row_filter_expression?,
121
+ and: untyped?,
122
+ or: untyped?
123
+ }
124
+ ]?,
125
+ or: Array[
126
+ {
127
+ expression: Params::row_filter_expression?,
128
+ and: untyped?,
129
+ or: untyped?
130
+ }
131
+ ]?
132
+ }
133
+
134
+ type row_filter_configuration = {
135
+ row_filter: Params::row_filter,
136
+ sensitive: bool?
137
+ }
138
+
139
+ type asset_filter_configuration = {
140
+ column_configuration: {
141
+ included_column_names: Array[::String]?
142
+ }?,
143
+ row_configuration: Params::row_filter_configuration?
144
+ }
145
+
146
+ type glue_run_configuration_input = {
147
+ data_access_role: ::String?,
148
+ relational_filter_configurations: Array[
149
+ Params::relational_filter_configuration
150
+ ],
151
+ auto_import_data_quality_result: bool?,
152
+ catalog_name: ::String?
153
+ }
154
+
155
+ type redshift_storage = {
156
+ redshift_cluster_source: {
157
+ cluster_name: ::String
158
+ }?,
159
+ redshift_serverless_source: {
160
+ workgroup_name: ::String
161
+ }?
162
+ }
163
+
164
+ type redshift_run_configuration_input = {
165
+ data_access_role: ::String?,
166
+ relational_filter_configurations: Array[
167
+ Params::relational_filter_configuration
168
+ ],
169
+ redshift_credential_configuration: {
170
+ secret_manager_arn: ::String
171
+ }?,
172
+ redshift_storage: Params::redshift_storage?
173
+ }
174
+
175
+ type data_source_configuration_input = {
176
+ glue_run_configuration: Params::glue_run_configuration_input?,
177
+ redshift_run_configuration: Params::redshift_run_configuration_input?,
178
+ sage_maker_run_configuration: {
179
+ tracking_assets: Hash[::String, Array[::String]]
180
+ }?
181
+ }
182
+
183
+ type relational_filter_configuration = {
184
+ database_name: ::String,
185
+ schema_name: ::String?,
186
+ filter_expressions: Array[
187
+ {
188
+ type: ("INCLUDE" | "EXCLUDE"),
189
+ expression: ::String
190
+ }
191
+ ]?
192
+ }
193
+
194
+ type custom_parameter = {
195
+ key_name: ::String,
196
+ description: ::String?,
197
+ field_type: ::String,
198
+ default_value: ::String?,
199
+ is_editable: bool?,
200
+ is_optional: bool?,
201
+ is_update_supported: bool?
202
+ }
203
+
204
+ type environment_configuration_user_parameter = {
205
+ environment_id: ::String?,
206
+ environment_resolved_account: {
207
+ aws_account_id: ::String,
208
+ region_name: ::String,
209
+ source_account_pool_id: ::String?
210
+ }?,
211
+ environment_configuration_name: ::String?,
212
+ environment_parameters: Array[
213
+ {
214
+ name: ::String?,
215
+ value: ::String?
216
+ }
217
+ ]?
218
+ }
219
+
220
+ type environment_configuration_parameters_details = {
221
+ ssm_path: ::String?,
222
+ parameter_overrides: Array[
223
+ {
224
+ name: ::String?,
225
+ value: ::String?,
226
+ is_editable: bool?
227
+ }
228
+ ]?,
229
+ resolved_parameters: Array[
230
+ {
231
+ name: ::String?,
232
+ value: ::String?,
233
+ is_editable: bool?
234
+ }
235
+ ]?
236
+ }
237
+
238
+ type environment_configuration = {
239
+ name: ::String,
240
+ id: ::String?,
241
+ environment_blueprint_id: ::String,
242
+ description: ::String?,
243
+ deployment_mode: ("ON_CREATE" | "ON_DEMAND")?,
244
+ configuration_parameters: Params::environment_configuration_parameters_details?,
245
+ aws_account: {
246
+ aws_account_id: ::String?,
247
+ aws_account_id_path: ::String?
248
+ }?,
249
+ account_pools: Array[::String]?,
250
+ aws_region: {
251
+ region_name: ::String?,
252
+ region_name_path: ::String?
253
+ }?,
254
+ deployment_order: ::Integer?
255
+ }
256
+
257
+ type rule_scope = {
258
+ asset_type: {
259
+ selection_mode: ("ALL" | "SPECIFIC"),
260
+ specific_asset_types: Array[::String]?
261
+ }?,
262
+ data_product: bool?,
263
+ project: {
264
+ selection_mode: ("ALL" | "SPECIFIC"),
265
+ specific_projects: Array[::String]?
266
+ }?
267
+ }
268
+
269
+ type rule_detail = {
270
+ metadata_form_enforcement_detail: {
271
+ required_metadata_forms: Array[
272
+ {
273
+ type_identifier: ::String,
274
+ type_revision: ::String
275
+ }
276
+ ]?
277
+ }?,
278
+ glossary_term_enforcement_detail: {
279
+ required_glossary_term_ids: Array[::String]?
280
+ }?
281
+ }
282
+
283
+ type filter_clause = {
284
+ filter: {
285
+ attribute: ::String,
286
+ value: ::String?,
287
+ int_value: ::Integer?,
288
+ operator: ("EQ" | "LE" | "LT" | "GE" | "GT" | "TEXT_SEARCH")?
289
+ }?,
290
+ and: Array[
291
+ {
292
+ filter: {
293
+ attribute: ::String,
294
+ value: ::String?,
295
+ int_value: ::Integer?,
296
+ operator: ("EQ" | "LE" | "LT" | "GE" | "GT" | "TEXT_SEARCH")?
297
+ }?,
298
+ and: untyped?,
299
+ or: untyped?
300
+ }
301
+ ]?,
302
+ or: Array[
303
+ {
304
+ filter: {
305
+ attribute: ::String,
306
+ value: ::String?,
307
+ int_value: ::Integer?,
308
+ operator: ("EQ" | "LE" | "LT" | "GE" | "GT" | "TEXT_SEARCH")?
309
+ }?,
310
+ and: untyped?,
311
+ or: untyped?
312
+ }
313
+ ]?
314
+ }
315
+
316
+ end
317
+ end
318
+ end
data/sig/types.rbs CHANGED
@@ -1320,6 +1320,40 @@ module Aws::DataZone
1320
1320
  SENSITIVE: []
1321
1321
  end
1322
1322
 
1323
+ class CreateNotebookInput
1324
+ attr_accessor domain_identifier: ::String
1325
+ attr_accessor owning_project_identifier: ::String
1326
+ attr_accessor name: ::String
1327
+ attr_accessor description: ::String
1328
+ attr_accessor metadata: ::Hash[::String, ::String]
1329
+ attr_accessor parameters: ::Hash[::String, ::String]
1330
+ attr_accessor client_token: ::String
1331
+ SENSITIVE: [:name, :description, :parameters]
1332
+ end
1333
+
1334
+ class CreateNotebookOutput
1335
+ attr_accessor id: ::String
1336
+ attr_accessor name: ::String
1337
+ attr_accessor owning_project_id: ::String
1338
+ attr_accessor domain_id: ::String
1339
+ attr_accessor cell_order: ::Array[Types::CellInformation]
1340
+ attr_accessor status: ("ACTIVE" | "ARCHIVED")
1341
+ attr_accessor description: ::String
1342
+ attr_accessor created_at: ::Time
1343
+ attr_accessor created_by: ::String
1344
+ attr_accessor updated_at: ::Time
1345
+ attr_accessor updated_by: ::String
1346
+ attr_accessor locked_by: ::String
1347
+ attr_accessor locked_at: ::Time
1348
+ attr_accessor lock_expires_at: ::Time
1349
+ attr_accessor compute_id: ::String
1350
+ attr_accessor metadata: ::Hash[::String, ::String]
1351
+ attr_accessor parameters: ::Hash[::String, ::String]
1352
+ attr_accessor environment_configuration: Types::EnvironmentConfig
1353
+ attr_accessor error: Types::NotebookError
1354
+ SENSITIVE: [:name, :description, :parameters]
1355
+ end
1356
+
1323
1357
  class CreateProjectFromProjectProfilePolicyGrantDetail
1324
1358
  attr_accessor include_child_domain_units: bool
1325
1359
  attr_accessor project_profiles: ::Array[::String]
@@ -1914,6 +1948,15 @@ module Aws::DataZone
1914
1948
  class DeleteListingOutput < Aws::EmptyStructure
1915
1949
  end
1916
1950
 
1951
+ class DeleteNotebookInput
1952
+ attr_accessor domain_identifier: ::String
1953
+ attr_accessor identifier: ::String
1954
+ SENSITIVE: []
1955
+ end
1956
+
1957
+ class DeleteNotebookOutput < Aws::EmptyStructure
1958
+ end
1959
+
1917
1960
  class DeleteProjectInput
1918
1961
  attr_accessor domain_identifier: ::String
1919
1962
  attr_accessor identifier: ::String
@@ -2954,6 +2997,56 @@ module Aws::DataZone
2954
2997
  SENSITIVE: []
2955
2998
  end
2956
2999
 
3000
+ class GetNotebookExportInput
3001
+ attr_accessor domain_identifier: ::String
3002
+ attr_accessor identifier: ::String
3003
+ SENSITIVE: []
3004
+ end
3005
+
3006
+ class GetNotebookExportOutput
3007
+ attr_accessor id: ::String
3008
+ attr_accessor domain_id: ::String
3009
+ attr_accessor owning_project_id: ::String
3010
+ attr_accessor notebook_id: ::String
3011
+ attr_accessor file_format: ("PDF" | "IPYNB")
3012
+ attr_accessor status: ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
3013
+ attr_accessor output_location: Types::OutputLocation
3014
+ attr_accessor error: Types::NotebookExportError
3015
+ attr_accessor completed_at: ::Time
3016
+ attr_accessor created_at: ::Time
3017
+ attr_accessor created_by: ::String
3018
+ SENSITIVE: []
3019
+ end
3020
+
3021
+ class GetNotebookInput
3022
+ attr_accessor domain_identifier: ::String
3023
+ attr_accessor identifier: ::String
3024
+ SENSITIVE: []
3025
+ end
3026
+
3027
+ class GetNotebookOutput
3028
+ attr_accessor id: ::String
3029
+ attr_accessor name: ::String
3030
+ attr_accessor owning_project_id: ::String
3031
+ attr_accessor domain_id: ::String
3032
+ attr_accessor cell_order: ::Array[Types::CellInformation]
3033
+ attr_accessor status: ("ACTIVE" | "ARCHIVED")
3034
+ attr_accessor description: ::String
3035
+ attr_accessor created_at: ::Time
3036
+ attr_accessor created_by: ::String
3037
+ attr_accessor updated_at: ::Time
3038
+ attr_accessor updated_by: ::String
3039
+ attr_accessor locked_by: ::String
3040
+ attr_accessor locked_at: ::Time
3041
+ attr_accessor lock_expires_at: ::Time
3042
+ attr_accessor compute_id: ::String
3043
+ attr_accessor metadata: ::Hash[::String, ::String]
3044
+ attr_accessor parameters: ::Hash[::String, ::String]
3045
+ attr_accessor environment_configuration: Types::EnvironmentConfig
3046
+ attr_accessor error: Types::NotebookError
3047
+ SENSITIVE: [:name, :description, :parameters]
3048
+ end
3049
+
2957
3050
  class GetNotebookRunInput
2958
3051
  attr_accessor domain_identifier: ::String
2959
3052
  attr_accessor identifier: ::String
@@ -3964,6 +4057,23 @@ module Aws::DataZone
3964
4057
  SENSITIVE: []
3965
4058
  end
3966
4059
 
4060
+ class ListNotebooksInput
4061
+ attr_accessor domain_identifier: ::String
4062
+ attr_accessor owning_project_identifier: ::String
4063
+ attr_accessor max_results: ::Integer
4064
+ attr_accessor sort_order: ("ASCENDING" | "DESCENDING")
4065
+ attr_accessor sort_by: ("CREATED_AT" | "UPDATED_AT")
4066
+ attr_accessor status: ("ACTIVE" | "ARCHIVED")
4067
+ attr_accessor next_token: ::String
4068
+ SENSITIVE: []
4069
+ end
4070
+
4071
+ class ListNotebooksOutput
4072
+ attr_accessor items: ::Array[Types::NotebookSummary]
4073
+ attr_accessor next_token: ::String
4074
+ SENSITIVE: []
4075
+ end
4076
+
3967
4077
  class ListNotificationsInput
3968
4078
  attr_accessor domain_identifier: ::String
3969
4079
  attr_accessor type: ("TASK" | "EVENT")
@@ -4388,6 +4498,16 @@ module Aws::DataZone
4388
4498
  SENSITIVE: []
4389
4499
  end
4390
4500
 
4501
+ class NotebookError
4502
+ attr_accessor message: ::String
4503
+ SENSITIVE: []
4504
+ end
4505
+
4506
+ class NotebookExportError
4507
+ attr_accessor message: ::String
4508
+ SENSITIVE: []
4509
+ end
4510
+
4391
4511
  class NotebookRunError
4392
4512
  attr_accessor message: ::String
4393
4513
  SENSITIVE: []
@@ -4410,6 +4530,20 @@ module Aws::DataZone
4410
4530
  SENSITIVE: []
4411
4531
  end
4412
4532
 
4533
+ class NotebookSummary
4534
+ attr_accessor id: ::String
4535
+ attr_accessor name: ::String
4536
+ attr_accessor owning_project_id: ::String
4537
+ attr_accessor domain_id: ::String
4538
+ attr_accessor status: ("ACTIVE" | "ARCHIVED")
4539
+ attr_accessor description: ::String
4540
+ attr_accessor created_at: ::Time
4541
+ attr_accessor created_by: ::String
4542
+ attr_accessor updated_at: ::Time
4543
+ attr_accessor updated_by: ::String
4544
+ SENSITIVE: [:name, :description]
4545
+ end
4546
+
4413
4547
  class NotificationOutput
4414
4548
  attr_accessor identifier: ::String
4415
4549
  attr_accessor domain_identifier: ::String
@@ -4457,6 +4591,17 @@ module Aws::DataZone
4457
4591
  SENSITIVE: []
4458
4592
  end
4459
4593
 
4594
+ class OutputLocation
4595
+ attr_accessor s3: Types::S3Destination
4596
+ attr_accessor unknown: untyped
4597
+ SENSITIVE: []
4598
+
4599
+ class S3 < OutputLocation
4600
+ end
4601
+ class Unknown < OutputLocation
4602
+ end
4603
+ end
4604
+
4460
4605
  class OverrideDomainUnitOwnersPolicyGrantDetail
4461
4606
  attr_accessor include_child_domain_units: bool
4462
4607
  SENSITIVE: []
@@ -5233,6 +5378,11 @@ module Aws::DataZone
5233
5378
  SENSITIVE: []
5234
5379
  end
5235
5380
 
5381
+ class S3Destination
5382
+ attr_accessor uri: ::String
5383
+ SENSITIVE: [:uri]
5384
+ end
5385
+
5236
5386
  class S3PropertiesInput
5237
5387
  attr_accessor s3_uri: ::String
5238
5388
  attr_accessor s3_access_grant_location_id: ::String
@@ -5462,6 +5612,17 @@ module Aws::DataZone
5462
5612
  SENSITIVE: []
5463
5613
  end
5464
5614
 
5615
+ class SourceLocation
5616
+ attr_accessor s3: ::String
5617
+ attr_accessor unknown: untyped
5618
+ SENSITIVE: [:s3]
5619
+
5620
+ class S3 < SourceLocation
5621
+ end
5622
+ class Unknown < SourceLocation
5623
+ end
5624
+ end
5625
+
5465
5626
  class SparkEmrPropertiesInput
5466
5627
  attr_accessor compute_arn: ::String
5467
5628
  attr_accessor instance_profile_arn: ::String
@@ -5588,6 +5749,50 @@ module Aws::DataZone
5588
5749
  SENSITIVE: []
5589
5750
  end
5590
5751
 
5752
+ class StartNotebookExportInput
5753
+ attr_accessor domain_identifier: ::String
5754
+ attr_accessor notebook_identifier: ::String
5755
+ attr_accessor owning_project_identifier: ::String
5756
+ attr_accessor file_format: ("PDF" | "IPYNB")
5757
+ attr_accessor client_token: ::String
5758
+ SENSITIVE: []
5759
+ end
5760
+
5761
+ class StartNotebookExportOutput
5762
+ attr_accessor id: ::String
5763
+ attr_accessor domain_id: ::String
5764
+ attr_accessor owning_project_id: ::String
5765
+ attr_accessor notebook_id: ::String
5766
+ attr_accessor file_format: ("PDF" | "IPYNB")
5767
+ attr_accessor status: ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
5768
+ attr_accessor created_at: ::Time
5769
+ attr_accessor created_by: ::String
5770
+ SENSITIVE: []
5771
+ end
5772
+
5773
+ class StartNotebookImportInput
5774
+ attr_accessor domain_identifier: ::String
5775
+ attr_accessor owning_project_identifier: ::String
5776
+ attr_accessor source_location: Types::SourceLocation
5777
+ attr_accessor name: ::String
5778
+ attr_accessor description: ::String
5779
+ attr_accessor client_token: ::String
5780
+ SENSITIVE: [:name, :description]
5781
+ end
5782
+
5783
+ class StartNotebookImportOutput
5784
+ attr_accessor notebook_id: ::String
5785
+ attr_accessor status: ("ACTIVE" | "ARCHIVED")
5786
+ attr_accessor domain_id: ::String
5787
+ attr_accessor owning_project_id: ::String
5788
+ attr_accessor name: ::String
5789
+ attr_accessor description: ::String
5790
+ attr_accessor source_location: Types::SourceLocation
5791
+ attr_accessor created_at: ::Time
5792
+ attr_accessor created_by: ::String
5793
+ SENSITIVE: [:name, :description]
5794
+ end
5795
+
5591
5796
  class StartNotebookRunInput
5592
5797
  attr_accessor domain_identifier: ::String
5593
5798
  attr_accessor owning_project_identifier: ::String
@@ -6298,6 +6503,43 @@ module Aws::DataZone
6298
6503
  SENSITIVE: [:group_name]
6299
6504
  end
6300
6505
 
6506
+ class UpdateNotebookInput
6507
+ attr_accessor domain_identifier: ::String
6508
+ attr_accessor identifier: ::String
6509
+ attr_accessor description: ::String
6510
+ attr_accessor status: ("ACTIVE" | "ARCHIVED")
6511
+ attr_accessor name: ::String
6512
+ attr_accessor cell_order: ::Array[Types::CellInformation]
6513
+ attr_accessor metadata: ::Hash[::String, ::String]
6514
+ attr_accessor parameters: ::Hash[::String, ::String]
6515
+ attr_accessor environment_configuration: Types::EnvironmentConfig
6516
+ attr_accessor client_token: ::String
6517
+ SENSITIVE: [:description, :name, :parameters]
6518
+ end
6519
+
6520
+ class UpdateNotebookOutput
6521
+ attr_accessor id: ::String
6522
+ attr_accessor name: ::String
6523
+ attr_accessor owning_project_id: ::String
6524
+ attr_accessor domain_id: ::String
6525
+ attr_accessor cell_order: ::Array[Types::CellInformation]
6526
+ attr_accessor status: ("ACTIVE" | "ARCHIVED")
6527
+ attr_accessor description: ::String
6528
+ attr_accessor created_at: ::Time
6529
+ attr_accessor created_by: ::String
6530
+ attr_accessor updated_at: ::Time
6531
+ attr_accessor updated_by: ::String
6532
+ attr_accessor locked_by: ::String
6533
+ attr_accessor locked_at: ::Time
6534
+ attr_accessor lock_expires_at: ::Time
6535
+ attr_accessor compute_id: ::String
6536
+ attr_accessor metadata: ::Hash[::String, ::String]
6537
+ attr_accessor parameters: ::Hash[::String, ::String]
6538
+ attr_accessor environment_configuration: Types::EnvironmentConfig
6539
+ attr_accessor error: Types::NotebookError
6540
+ SENSITIVE: [:name, :description, :parameters]
6541
+ end
6542
+
6301
6543
  class UpdateProjectInput
6302
6544
  attr_accessor domain_identifier: ::String
6303
6545
  attr_accessor identifier: ::String
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-datazone
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.76.0
4
+ version: 1.78.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -68,6 +68,7 @@ files:
68
68
  - lib/aws-sdk-datazone/waiters.rb
69
69
  - sig/client.rbs
70
70
  - sig/errors.rbs
71
+ - sig/params.rbs
71
72
  - sig/resource.rbs
72
73
  - sig/types.rbs
73
74
  - sig/waiters.rbs