aws-sdk-datazone 1.77.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
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.77.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