aws-sdk-cleanroomsml 1.1.0 → 1.3.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cleanroomsml/client.rb +16 -20
- data/lib/aws-sdk-cleanroomsml/client_api.rb +1 -12
- data/lib/aws-sdk-cleanroomsml/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-cleanroomsml/types.rb +38 -46
- data/lib/aws-sdk-cleanroomsml.rb +1 -1
- data/sig/client.rbs +446 -0
- data/sig/errors.rbs +31 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +491 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/client.rbs
ADDED
@@ -0,0 +1,446 @@
|
|
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 CleanRoomsML
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> instance
|
72
|
+
| (?Hash[Symbol, untyped]) -> instance
|
73
|
+
|
74
|
+
|
75
|
+
interface _CreateAudienceModelResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateAudienceModelResponse]
|
77
|
+
def audience_model_arn: () -> ::String
|
78
|
+
end
|
79
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#create_audience_model-instance_method
|
80
|
+
def create_audience_model: (
|
81
|
+
?description: ::String,
|
82
|
+
?kms_key_arn: ::String,
|
83
|
+
name: ::String,
|
84
|
+
?tags: Hash[::String, ::String],
|
85
|
+
?training_data_end_time: ::Time,
|
86
|
+
?training_data_start_time: ::Time,
|
87
|
+
training_dataset_arn: ::String
|
88
|
+
) -> _CreateAudienceModelResponseSuccess
|
89
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAudienceModelResponseSuccess
|
90
|
+
|
91
|
+
interface _CreateConfiguredAudienceModelResponseSuccess
|
92
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateConfiguredAudienceModelResponse]
|
93
|
+
def configured_audience_model_arn: () -> ::String
|
94
|
+
end
|
95
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#create_configured_audience_model-instance_method
|
96
|
+
def create_configured_audience_model: (
|
97
|
+
audience_model_arn: ::String,
|
98
|
+
?audience_size_config: {
|
99
|
+
audience_size_bins: Array[::Integer],
|
100
|
+
audience_size_type: ("ABSOLUTE" | "PERCENTAGE")
|
101
|
+
},
|
102
|
+
?child_resource_tag_on_create_policy: ("FROM_PARENT_RESOURCE" | "NONE"),
|
103
|
+
?description: ::String,
|
104
|
+
?min_matching_seed_size: ::Integer,
|
105
|
+
name: ::String,
|
106
|
+
output_config: {
|
107
|
+
destination: {
|
108
|
+
s3_destination: {
|
109
|
+
s3_uri: ::String
|
110
|
+
}
|
111
|
+
},
|
112
|
+
role_arn: ::String
|
113
|
+
},
|
114
|
+
shared_audience_metrics: Array[("ALL" | "NONE")],
|
115
|
+
?tags: Hash[::String, ::String]
|
116
|
+
) -> _CreateConfiguredAudienceModelResponseSuccess
|
117
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfiguredAudienceModelResponseSuccess
|
118
|
+
|
119
|
+
interface _CreateTrainingDatasetResponseSuccess
|
120
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateTrainingDatasetResponse]
|
121
|
+
def training_dataset_arn: () -> ::String
|
122
|
+
end
|
123
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#create_training_dataset-instance_method
|
124
|
+
def create_training_dataset: (
|
125
|
+
?description: ::String,
|
126
|
+
name: ::String,
|
127
|
+
role_arn: ::String,
|
128
|
+
?tags: Hash[::String, ::String],
|
129
|
+
training_data: Array[
|
130
|
+
{
|
131
|
+
input_config: {
|
132
|
+
data_source: {
|
133
|
+
glue_data_source: {
|
134
|
+
catalog_id: ::String?,
|
135
|
+
database_name: ::String,
|
136
|
+
table_name: ::String
|
137
|
+
}
|
138
|
+
},
|
139
|
+
schema: Array[
|
140
|
+
{
|
141
|
+
column_name: ::String,
|
142
|
+
column_types: Array[("USER_ID" | "ITEM_ID" | "TIMESTAMP" | "CATEGORICAL_FEATURE" | "NUMERICAL_FEATURE")]
|
143
|
+
},
|
144
|
+
]
|
145
|
+
},
|
146
|
+
type: ("INTERACTIONS")
|
147
|
+
},
|
148
|
+
]
|
149
|
+
) -> _CreateTrainingDatasetResponseSuccess
|
150
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTrainingDatasetResponseSuccess
|
151
|
+
|
152
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#delete_audience_generation_job-instance_method
|
153
|
+
def delete_audience_generation_job: (
|
154
|
+
audience_generation_job_arn: ::String
|
155
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
156
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
157
|
+
|
158
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#delete_audience_model-instance_method
|
159
|
+
def delete_audience_model: (
|
160
|
+
audience_model_arn: ::String
|
161
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
162
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
163
|
+
|
164
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#delete_configured_audience_model-instance_method
|
165
|
+
def delete_configured_audience_model: (
|
166
|
+
configured_audience_model_arn: ::String
|
167
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
168
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
169
|
+
|
170
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#delete_configured_audience_model_policy-instance_method
|
171
|
+
def delete_configured_audience_model_policy: (
|
172
|
+
configured_audience_model_arn: ::String
|
173
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
174
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
175
|
+
|
176
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#delete_training_dataset-instance_method
|
177
|
+
def delete_training_dataset: (
|
178
|
+
training_dataset_arn: ::String
|
179
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
180
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
181
|
+
|
182
|
+
interface _GetAudienceGenerationJobResponseSuccess
|
183
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAudienceGenerationJobResponse]
|
184
|
+
def audience_generation_job_arn: () -> ::String
|
185
|
+
def collaboration_id: () -> ::String
|
186
|
+
def configured_audience_model_arn: () -> ::String
|
187
|
+
def create_time: () -> ::Time
|
188
|
+
def description: () -> ::String
|
189
|
+
def include_seed_in_output: () -> bool
|
190
|
+
def metrics: () -> Types::AudienceQualityMetrics
|
191
|
+
def name: () -> ::String
|
192
|
+
def seed_audience: () -> Types::AudienceGenerationJobDataSource
|
193
|
+
def started_by: () -> ::String
|
194
|
+
def status: () -> ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED")
|
195
|
+
def status_details: () -> Types::StatusDetails
|
196
|
+
def tags: () -> ::Hash[::String, ::String]
|
197
|
+
def update_time: () -> ::Time
|
198
|
+
end
|
199
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#get_audience_generation_job-instance_method
|
200
|
+
def get_audience_generation_job: (
|
201
|
+
audience_generation_job_arn: ::String
|
202
|
+
) -> _GetAudienceGenerationJobResponseSuccess
|
203
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAudienceGenerationJobResponseSuccess
|
204
|
+
|
205
|
+
interface _GetAudienceModelResponseSuccess
|
206
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAudienceModelResponse]
|
207
|
+
def audience_model_arn: () -> ::String
|
208
|
+
def create_time: () -> ::Time
|
209
|
+
def description: () -> ::String
|
210
|
+
def kms_key_arn: () -> ::String
|
211
|
+
def name: () -> ::String
|
212
|
+
def status: () -> ("CREATE_PENDING" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "ACTIVE" | "DELETE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_FAILED")
|
213
|
+
def status_details: () -> Types::StatusDetails
|
214
|
+
def tags: () -> ::Hash[::String, ::String]
|
215
|
+
def training_data_end_time: () -> ::Time
|
216
|
+
def training_data_start_time: () -> ::Time
|
217
|
+
def training_dataset_arn: () -> ::String
|
218
|
+
def update_time: () -> ::Time
|
219
|
+
end
|
220
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#get_audience_model-instance_method
|
221
|
+
def get_audience_model: (
|
222
|
+
audience_model_arn: ::String
|
223
|
+
) -> _GetAudienceModelResponseSuccess
|
224
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAudienceModelResponseSuccess
|
225
|
+
|
226
|
+
interface _GetConfiguredAudienceModelResponseSuccess
|
227
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetConfiguredAudienceModelResponse]
|
228
|
+
def audience_model_arn: () -> ::String
|
229
|
+
def audience_size_config: () -> Types::AudienceSizeConfig
|
230
|
+
def child_resource_tag_on_create_policy: () -> ("FROM_PARENT_RESOURCE" | "NONE")
|
231
|
+
def configured_audience_model_arn: () -> ::String
|
232
|
+
def create_time: () -> ::Time
|
233
|
+
def description: () -> ::String
|
234
|
+
def min_matching_seed_size: () -> ::Integer
|
235
|
+
def name: () -> ::String
|
236
|
+
def output_config: () -> Types::ConfiguredAudienceModelOutputConfig
|
237
|
+
def shared_audience_metrics: () -> ::Array[("ALL" | "NONE")]
|
238
|
+
def status: () -> ("ACTIVE")
|
239
|
+
def tags: () -> ::Hash[::String, ::String]
|
240
|
+
def update_time: () -> ::Time
|
241
|
+
end
|
242
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#get_configured_audience_model-instance_method
|
243
|
+
def get_configured_audience_model: (
|
244
|
+
configured_audience_model_arn: ::String
|
245
|
+
) -> _GetConfiguredAudienceModelResponseSuccess
|
246
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfiguredAudienceModelResponseSuccess
|
247
|
+
|
248
|
+
interface _GetConfiguredAudienceModelPolicyResponseSuccess
|
249
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetConfiguredAudienceModelPolicyResponse]
|
250
|
+
def configured_audience_model_arn: () -> ::String
|
251
|
+
def configured_audience_model_policy: () -> ::String
|
252
|
+
def policy_hash: () -> ::String
|
253
|
+
end
|
254
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#get_configured_audience_model_policy-instance_method
|
255
|
+
def get_configured_audience_model_policy: (
|
256
|
+
configured_audience_model_arn: ::String
|
257
|
+
) -> _GetConfiguredAudienceModelPolicyResponseSuccess
|
258
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfiguredAudienceModelPolicyResponseSuccess
|
259
|
+
|
260
|
+
interface _GetTrainingDatasetResponseSuccess
|
261
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetTrainingDatasetResponse]
|
262
|
+
def create_time: () -> ::Time
|
263
|
+
def description: () -> ::String
|
264
|
+
def name: () -> ::String
|
265
|
+
def role_arn: () -> ::String
|
266
|
+
def status: () -> ("ACTIVE")
|
267
|
+
def tags: () -> ::Hash[::String, ::String]
|
268
|
+
def training_data: () -> ::Array[Types::Dataset]
|
269
|
+
def training_dataset_arn: () -> ::String
|
270
|
+
def update_time: () -> ::Time
|
271
|
+
end
|
272
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#get_training_dataset-instance_method
|
273
|
+
def get_training_dataset: (
|
274
|
+
training_dataset_arn: ::String
|
275
|
+
) -> _GetTrainingDatasetResponseSuccess
|
276
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTrainingDatasetResponseSuccess
|
277
|
+
|
278
|
+
interface _ListAudienceExportJobsResponseSuccess
|
279
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAudienceExportJobsResponse]
|
280
|
+
def audience_export_jobs: () -> ::Array[Types::AudienceExportJobSummary]
|
281
|
+
def next_token: () -> ::String
|
282
|
+
end
|
283
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#list_audience_export_jobs-instance_method
|
284
|
+
def list_audience_export_jobs: (
|
285
|
+
?audience_generation_job_arn: ::String,
|
286
|
+
?max_results: ::Integer,
|
287
|
+
?next_token: ::String
|
288
|
+
) -> _ListAudienceExportJobsResponseSuccess
|
289
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAudienceExportJobsResponseSuccess
|
290
|
+
|
291
|
+
interface _ListAudienceGenerationJobsResponseSuccess
|
292
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAudienceGenerationJobsResponse]
|
293
|
+
def audience_generation_jobs: () -> ::Array[Types::AudienceGenerationJobSummary]
|
294
|
+
def next_token: () -> ::String
|
295
|
+
end
|
296
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#list_audience_generation_jobs-instance_method
|
297
|
+
def list_audience_generation_jobs: (
|
298
|
+
?collaboration_id: ::String,
|
299
|
+
?configured_audience_model_arn: ::String,
|
300
|
+
?max_results: ::Integer,
|
301
|
+
?next_token: ::String
|
302
|
+
) -> _ListAudienceGenerationJobsResponseSuccess
|
303
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAudienceGenerationJobsResponseSuccess
|
304
|
+
|
305
|
+
interface _ListAudienceModelsResponseSuccess
|
306
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAudienceModelsResponse]
|
307
|
+
def audience_models: () -> ::Array[Types::AudienceModelSummary]
|
308
|
+
def next_token: () -> ::String
|
309
|
+
end
|
310
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#list_audience_models-instance_method
|
311
|
+
def list_audience_models: (
|
312
|
+
?max_results: ::Integer,
|
313
|
+
?next_token: ::String
|
314
|
+
) -> _ListAudienceModelsResponseSuccess
|
315
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAudienceModelsResponseSuccess
|
316
|
+
|
317
|
+
interface _ListConfiguredAudienceModelsResponseSuccess
|
318
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListConfiguredAudienceModelsResponse]
|
319
|
+
def configured_audience_models: () -> ::Array[Types::ConfiguredAudienceModelSummary]
|
320
|
+
def next_token: () -> ::String
|
321
|
+
end
|
322
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#list_configured_audience_models-instance_method
|
323
|
+
def list_configured_audience_models: (
|
324
|
+
?max_results: ::Integer,
|
325
|
+
?next_token: ::String
|
326
|
+
) -> _ListConfiguredAudienceModelsResponseSuccess
|
327
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfiguredAudienceModelsResponseSuccess
|
328
|
+
|
329
|
+
interface _ListTagsForResourceResponseSuccess
|
330
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
331
|
+
def tags: () -> ::Hash[::String, ::String]
|
332
|
+
end
|
333
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#list_tags_for_resource-instance_method
|
334
|
+
def list_tags_for_resource: (
|
335
|
+
resource_arn: ::String
|
336
|
+
) -> _ListTagsForResourceResponseSuccess
|
337
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
338
|
+
|
339
|
+
interface _ListTrainingDatasetsResponseSuccess
|
340
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTrainingDatasetsResponse]
|
341
|
+
def next_token: () -> ::String
|
342
|
+
def training_datasets: () -> ::Array[Types::TrainingDatasetSummary]
|
343
|
+
end
|
344
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#list_training_datasets-instance_method
|
345
|
+
def list_training_datasets: (
|
346
|
+
?max_results: ::Integer,
|
347
|
+
?next_token: ::String
|
348
|
+
) -> _ListTrainingDatasetsResponseSuccess
|
349
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTrainingDatasetsResponseSuccess
|
350
|
+
|
351
|
+
interface _PutConfiguredAudienceModelPolicyResponseSuccess
|
352
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutConfiguredAudienceModelPolicyResponse]
|
353
|
+
def configured_audience_model_policy: () -> ::String
|
354
|
+
def policy_hash: () -> ::String
|
355
|
+
end
|
356
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#put_configured_audience_model_policy-instance_method
|
357
|
+
def put_configured_audience_model_policy: (
|
358
|
+
configured_audience_model_arn: ::String,
|
359
|
+
configured_audience_model_policy: ::String,
|
360
|
+
?policy_existence_condition: ("POLICY_MUST_EXIST" | "POLICY_MUST_NOT_EXIST"),
|
361
|
+
?previous_policy_hash: ::String
|
362
|
+
) -> _PutConfiguredAudienceModelPolicyResponseSuccess
|
363
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutConfiguredAudienceModelPolicyResponseSuccess
|
364
|
+
|
365
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#start_audience_export_job-instance_method
|
366
|
+
def start_audience_export_job: (
|
367
|
+
audience_generation_job_arn: ::String,
|
368
|
+
audience_size: {
|
369
|
+
type: ("ABSOLUTE" | "PERCENTAGE"),
|
370
|
+
value: ::Integer
|
371
|
+
},
|
372
|
+
?description: ::String,
|
373
|
+
name: ::String
|
374
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
375
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
376
|
+
|
377
|
+
interface _StartAudienceGenerationJobResponseSuccess
|
378
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartAudienceGenerationJobResponse]
|
379
|
+
def audience_generation_job_arn: () -> ::String
|
380
|
+
end
|
381
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#start_audience_generation_job-instance_method
|
382
|
+
def start_audience_generation_job: (
|
383
|
+
?collaboration_id: ::String,
|
384
|
+
configured_audience_model_arn: ::String,
|
385
|
+
?description: ::String,
|
386
|
+
?include_seed_in_output: bool,
|
387
|
+
name: ::String,
|
388
|
+
seed_audience: {
|
389
|
+
data_source: {
|
390
|
+
s3_uri: ::String
|
391
|
+
},
|
392
|
+
role_arn: ::String
|
393
|
+
},
|
394
|
+
?tags: Hash[::String, ::String]
|
395
|
+
) -> _StartAudienceGenerationJobResponseSuccess
|
396
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartAudienceGenerationJobResponseSuccess
|
397
|
+
|
398
|
+
interface _TagResourceResponseSuccess
|
399
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
400
|
+
end
|
401
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#tag_resource-instance_method
|
402
|
+
def tag_resource: (
|
403
|
+
resource_arn: ::String,
|
404
|
+
tags: Hash[::String, ::String]
|
405
|
+
) -> _TagResourceResponseSuccess
|
406
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
407
|
+
|
408
|
+
interface _UntagResourceResponseSuccess
|
409
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
410
|
+
end
|
411
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#untag_resource-instance_method
|
412
|
+
def untag_resource: (
|
413
|
+
resource_arn: ::String,
|
414
|
+
tag_keys: Array[::String]
|
415
|
+
) -> _UntagResourceResponseSuccess
|
416
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
417
|
+
|
418
|
+
interface _UpdateConfiguredAudienceModelResponseSuccess
|
419
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConfiguredAudienceModelResponse]
|
420
|
+
def configured_audience_model_arn: () -> ::String
|
421
|
+
end
|
422
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Client.html#update_configured_audience_model-instance_method
|
423
|
+
def update_configured_audience_model: (
|
424
|
+
?audience_model_arn: ::String,
|
425
|
+
?audience_size_config: {
|
426
|
+
audience_size_bins: Array[::Integer],
|
427
|
+
audience_size_type: ("ABSOLUTE" | "PERCENTAGE")
|
428
|
+
},
|
429
|
+
configured_audience_model_arn: ::String,
|
430
|
+
?description: ::String,
|
431
|
+
?min_matching_seed_size: ::Integer,
|
432
|
+
?output_config: {
|
433
|
+
destination: {
|
434
|
+
s3_destination: {
|
435
|
+
s3_uri: ::String
|
436
|
+
}
|
437
|
+
},
|
438
|
+
role_arn: ::String
|
439
|
+
},
|
440
|
+
?shared_audience_metrics: Array[("ALL" | "NONE")]
|
441
|
+
) -> _UpdateConfiguredAudienceModelResponseSuccess
|
442
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfiguredAudienceModelResponseSuccess
|
443
|
+
end
|
444
|
+
end
|
445
|
+
end
|
446
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,31 @@
|
|
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 CleanRoomsML
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class AccessDeniedException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class ConflictException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,79 @@
|
|
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 CleanRoomsML
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CleanRoomsML/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> void
|
72
|
+
| (?Hash[Symbol, untyped]) -> void
|
73
|
+
|
74
|
+
def client: () -> Client
|
75
|
+
|
76
|
+
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|