aws-sdk-cleanrooms 1.36.0 → 1.38.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cleanrooms/client.rb +82 -2
- data/lib/aws-sdk-cleanrooms/client_api.rb +44 -0
- data/lib/aws-sdk-cleanrooms/types.rb +133 -6
- data/lib/aws-sdk-cleanrooms.rb +1 -1
- data/sig/client.rbs +23 -0
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +41 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8639e745f02537e5fc73c66ee00a6243b949718c72380afdf4c35b10475cd38a
|
4
|
+
data.tar.gz: 2281ee0f61b5d8af3946479f1c726a277228931e6301832495c935500a27695a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ded73c9f8039d29e9b52c43b0ee27d8523c34f0bebc4e05c840c2cf9c567755dfee0c6f6cb9bffa7a624a8d895a13b9cd1be870eded7cd8deda930cd4aad7ee4
|
7
|
+
data.tar.gz: be6721aac5e1e16d15681f5f7d02007c2f06d1096abc28df67583612059c4028255ca8f713c141643ea23a5451d42c2913b5d547ee47716588ef7b1e2ef4da9a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.38.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.37.0 (2024-12-02)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release allows customers and their partners to easily collaborate with data stored in Snowflake and Amazon Athena, without having to move or share their underlying data among collaborators.
|
13
|
+
|
4
14
|
1.36.0 (2024-11-07)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.38.0
|
@@ -257,11 +257,34 @@ module Aws::CleanRooms
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -989,7 +1012,7 @@ module Aws::CleanRooms
|
|
989
1012
|
# A description for the configured table.
|
990
1013
|
#
|
991
1014
|
# @option params [required, Types::TableReference] :table_reference
|
992
|
-
# A reference to the
|
1015
|
+
# A reference to the table being configured.
|
993
1016
|
#
|
994
1017
|
# @option params [required, Array<String>] :allowed_columns
|
995
1018
|
# The columns of the underlying table that can be used by collaborations
|
@@ -1019,6 +1042,27 @@ module Aws::CleanRooms
|
|
1019
1042
|
# table_name: "GlueTableName", # required
|
1020
1043
|
# database_name: "GlueDatabaseName", # required
|
1021
1044
|
# },
|
1045
|
+
# snowflake: {
|
1046
|
+
# secret_arn: "SecretsManagerArn", # required
|
1047
|
+
# account_identifier: "SnowflakeAccountIdentifier", # required
|
1048
|
+
# database_name: "SnowflakeDatabaseName", # required
|
1049
|
+
# table_name: "SnowflakeTableName", # required
|
1050
|
+
# schema_name: "SnowflakeSchemaName", # required
|
1051
|
+
# table_schema: { # required
|
1052
|
+
# v1: [
|
1053
|
+
# {
|
1054
|
+
# column_name: "ColumnName", # required
|
1055
|
+
# column_type: "ColumnTypeString", # required
|
1056
|
+
# },
|
1057
|
+
# ],
|
1058
|
+
# },
|
1059
|
+
# },
|
1060
|
+
# athena: {
|
1061
|
+
# work_group: "AthenaWorkGroup", # required
|
1062
|
+
# output_location: "AthenaOutputLocation",
|
1063
|
+
# database_name: "AthenaDatabaseName", # required
|
1064
|
+
# table_name: "AthenaTableName", # required
|
1065
|
+
# },
|
1022
1066
|
# },
|
1023
1067
|
# allowed_columns: ["ColumnName"], # required
|
1024
1068
|
# analysis_method: "DIRECT_QUERY", # required, accepts DIRECT_QUERY
|
@@ -1035,6 +1079,18 @@ module Aws::CleanRooms
|
|
1035
1079
|
# resp.configured_table.description #=> String
|
1036
1080
|
# resp.configured_table.table_reference.glue.table_name #=> String
|
1037
1081
|
# resp.configured_table.table_reference.glue.database_name #=> String
|
1082
|
+
# resp.configured_table.table_reference.snowflake.secret_arn #=> String
|
1083
|
+
# resp.configured_table.table_reference.snowflake.account_identifier #=> String
|
1084
|
+
# resp.configured_table.table_reference.snowflake.database_name #=> String
|
1085
|
+
# resp.configured_table.table_reference.snowflake.table_name #=> String
|
1086
|
+
# resp.configured_table.table_reference.snowflake.schema_name #=> String
|
1087
|
+
# resp.configured_table.table_reference.snowflake.table_schema.v1 #=> Array
|
1088
|
+
# resp.configured_table.table_reference.snowflake.table_schema.v1[0].column_name #=> String
|
1089
|
+
# resp.configured_table.table_reference.snowflake.table_schema.v1[0].column_type #=> String
|
1090
|
+
# resp.configured_table.table_reference.athena.work_group #=> String
|
1091
|
+
# resp.configured_table.table_reference.athena.output_location #=> String
|
1092
|
+
# resp.configured_table.table_reference.athena.database_name #=> String
|
1093
|
+
# resp.configured_table.table_reference.athena.table_name #=> String
|
1038
1094
|
# resp.configured_table.create_time #=> Time
|
1039
1095
|
# resp.configured_table.update_time #=> Time
|
1040
1096
|
# resp.configured_table.analysis_rule_types #=> Array
|
@@ -2325,6 +2381,18 @@ module Aws::CleanRooms
|
|
2325
2381
|
# resp.configured_table.description #=> String
|
2326
2382
|
# resp.configured_table.table_reference.glue.table_name #=> String
|
2327
2383
|
# resp.configured_table.table_reference.glue.database_name #=> String
|
2384
|
+
# resp.configured_table.table_reference.snowflake.secret_arn #=> String
|
2385
|
+
# resp.configured_table.table_reference.snowflake.account_identifier #=> String
|
2386
|
+
# resp.configured_table.table_reference.snowflake.database_name #=> String
|
2387
|
+
# resp.configured_table.table_reference.snowflake.table_name #=> String
|
2388
|
+
# resp.configured_table.table_reference.snowflake.schema_name #=> String
|
2389
|
+
# resp.configured_table.table_reference.snowflake.table_schema.v1 #=> Array
|
2390
|
+
# resp.configured_table.table_reference.snowflake.table_schema.v1[0].column_name #=> String
|
2391
|
+
# resp.configured_table.table_reference.snowflake.table_schema.v1[0].column_type #=> String
|
2392
|
+
# resp.configured_table.table_reference.athena.work_group #=> String
|
2393
|
+
# resp.configured_table.table_reference.athena.output_location #=> String
|
2394
|
+
# resp.configured_table.table_reference.athena.database_name #=> String
|
2395
|
+
# resp.configured_table.table_reference.athena.table_name #=> String
|
2328
2396
|
# resp.configured_table.create_time #=> Time
|
2329
2397
|
# resp.configured_table.update_time #=> Time
|
2330
2398
|
# resp.configured_table.analysis_rule_types #=> Array
|
@@ -4370,6 +4438,18 @@ module Aws::CleanRooms
|
|
4370
4438
|
# resp.configured_table.description #=> String
|
4371
4439
|
# resp.configured_table.table_reference.glue.table_name #=> String
|
4372
4440
|
# resp.configured_table.table_reference.glue.database_name #=> String
|
4441
|
+
# resp.configured_table.table_reference.snowflake.secret_arn #=> String
|
4442
|
+
# resp.configured_table.table_reference.snowflake.account_identifier #=> String
|
4443
|
+
# resp.configured_table.table_reference.snowflake.database_name #=> String
|
4444
|
+
# resp.configured_table.table_reference.snowflake.table_name #=> String
|
4445
|
+
# resp.configured_table.table_reference.snowflake.schema_name #=> String
|
4446
|
+
# resp.configured_table.table_reference.snowflake.table_schema.v1 #=> Array
|
4447
|
+
# resp.configured_table.table_reference.snowflake.table_schema.v1[0].column_name #=> String
|
4448
|
+
# resp.configured_table.table_reference.snowflake.table_schema.v1[0].column_type #=> String
|
4449
|
+
# resp.configured_table.table_reference.athena.work_group #=> String
|
4450
|
+
# resp.configured_table.table_reference.athena.output_location #=> String
|
4451
|
+
# resp.configured_table.table_reference.athena.database_name #=> String
|
4452
|
+
# resp.configured_table.table_reference.athena.table_name #=> String
|
4373
4453
|
# resp.configured_table.create_time #=> Time
|
4374
4454
|
# resp.configured_table.update_time #=> Time
|
4375
4455
|
# resp.configured_table.analysis_rule_types #=> Array
|
@@ -4967,7 +5047,7 @@ module Aws::CleanRooms
|
|
4967
5047
|
tracer: tracer
|
4968
5048
|
)
|
4969
5049
|
context[:gem_name] = 'aws-sdk-cleanrooms'
|
4970
|
-
context[:gem_version] = '1.
|
5050
|
+
context[:gem_version] = '1.38.0'
|
4971
5051
|
Seahorse::Client::Request.new(handlers, context)
|
4972
5052
|
end
|
4973
5053
|
|
@@ -67,6 +67,11 @@ module Aws::CleanRooms
|
|
67
67
|
AnalysisTemplateValidationType = Shapes::StringShape.new(name: 'AnalysisTemplateValidationType')
|
68
68
|
AnalysisType = Shapes::StringShape.new(name: 'AnalysisType')
|
69
69
|
AnalyticsEngine = Shapes::StringShape.new(name: 'AnalyticsEngine')
|
70
|
+
AthenaDatabaseName = Shapes::StringShape.new(name: 'AthenaDatabaseName')
|
71
|
+
AthenaOutputLocation = Shapes::StringShape.new(name: 'AthenaOutputLocation')
|
72
|
+
AthenaTableName = Shapes::StringShape.new(name: 'AthenaTableName')
|
73
|
+
AthenaTableReference = Shapes::StructureShape.new(name: 'AthenaTableReference')
|
74
|
+
AthenaWorkGroup = Shapes::StringShape.new(name: 'AthenaWorkGroup')
|
70
75
|
BatchGetCollaborationAnalysisTemplateError = Shapes::StructureShape.new(name: 'BatchGetCollaborationAnalysisTemplateError')
|
71
76
|
BatchGetCollaborationAnalysisTemplateErrorList = Shapes::ListShape.new(name: 'BatchGetCollaborationAnalysisTemplateErrorList')
|
72
77
|
BatchGetCollaborationAnalysisTemplateInput = Shapes::StructureShape.new(name: 'BatchGetCollaborationAnalysisTemplateInput')
|
@@ -432,7 +437,16 @@ module Aws::CleanRooms
|
|
432
437
|
SchemaSummaryList = Shapes::ListShape.new(name: 'SchemaSummaryList')
|
433
438
|
SchemaType = Shapes::StringShape.new(name: 'SchemaType')
|
434
439
|
SchemaTypeProperties = Shapes::UnionShape.new(name: 'SchemaTypeProperties')
|
440
|
+
SecretsManagerArn = Shapes::StringShape.new(name: 'SecretsManagerArn')
|
435
441
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
442
|
+
SnowflakeAccountIdentifier = Shapes::StringShape.new(name: 'SnowflakeAccountIdentifier')
|
443
|
+
SnowflakeDatabaseName = Shapes::StringShape.new(name: 'SnowflakeDatabaseName')
|
444
|
+
SnowflakeSchemaName = Shapes::StringShape.new(name: 'SnowflakeSchemaName')
|
445
|
+
SnowflakeTableName = Shapes::StringShape.new(name: 'SnowflakeTableName')
|
446
|
+
SnowflakeTableReference = Shapes::StructureShape.new(name: 'SnowflakeTableReference')
|
447
|
+
SnowflakeTableSchema = Shapes::UnionShape.new(name: 'SnowflakeTableSchema')
|
448
|
+
SnowflakeTableSchemaList = Shapes::ListShape.new(name: 'SnowflakeTableSchemaList')
|
449
|
+
SnowflakeTableSchemaV1 = Shapes::StructureShape.new(name: 'SnowflakeTableSchemaV1')
|
436
450
|
StartProtectedQueryInput = Shapes::StructureShape.new(name: 'StartProtectedQueryInput')
|
437
451
|
StartProtectedQueryOutput = Shapes::StructureShape.new(name: 'StartProtectedQueryOutput')
|
438
452
|
String = Shapes::StringShape.new(name: 'String')
|
@@ -637,6 +651,12 @@ module Aws::CleanRooms
|
|
637
651
|
|
638
652
|
AnalysisTemplateValidationStatusReasonList.member = Shapes::ShapeRef.new(shape: AnalysisTemplateValidationStatusReason)
|
639
653
|
|
654
|
+
AthenaTableReference.add_member(:work_group, Shapes::ShapeRef.new(shape: AthenaWorkGroup, required: true, location_name: "workGroup"))
|
655
|
+
AthenaTableReference.add_member(:output_location, Shapes::ShapeRef.new(shape: AthenaOutputLocation, location_name: "outputLocation"))
|
656
|
+
AthenaTableReference.add_member(:database_name, Shapes::ShapeRef.new(shape: AthenaDatabaseName, required: true, location_name: "databaseName"))
|
657
|
+
AthenaTableReference.add_member(:table_name, Shapes::ShapeRef.new(shape: AthenaTableName, required: true, location_name: "tableName"))
|
658
|
+
AthenaTableReference.struct_class = Types::AthenaTableReference
|
659
|
+
|
640
660
|
BatchGetCollaborationAnalysisTemplateError.add_member(:arn, Shapes::ShapeRef.new(shape: AnalysisTemplateArn, required: true, location_name: "arn"))
|
641
661
|
BatchGetCollaborationAnalysisTemplateError.add_member(:code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "code"))
|
642
662
|
BatchGetCollaborationAnalysisTemplateError.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
@@ -2033,6 +2053,26 @@ module Aws::CleanRooms
|
|
2033
2053
|
ServiceQuotaExceededException.add_member(:quota_value, Shapes::ShapeRef.new(shape: Double, required: true, location_name: "quotaValue"))
|
2034
2054
|
ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
|
2035
2055
|
|
2056
|
+
SnowflakeTableReference.add_member(:secret_arn, Shapes::ShapeRef.new(shape: SecretsManagerArn, required: true, location_name: "secretArn"))
|
2057
|
+
SnowflakeTableReference.add_member(:account_identifier, Shapes::ShapeRef.new(shape: SnowflakeAccountIdentifier, required: true, location_name: "accountIdentifier"))
|
2058
|
+
SnowflakeTableReference.add_member(:database_name, Shapes::ShapeRef.new(shape: SnowflakeDatabaseName, required: true, location_name: "databaseName"))
|
2059
|
+
SnowflakeTableReference.add_member(:table_name, Shapes::ShapeRef.new(shape: SnowflakeTableName, required: true, location_name: "tableName"))
|
2060
|
+
SnowflakeTableReference.add_member(:schema_name, Shapes::ShapeRef.new(shape: SnowflakeSchemaName, required: true, location_name: "schemaName"))
|
2061
|
+
SnowflakeTableReference.add_member(:table_schema, Shapes::ShapeRef.new(shape: SnowflakeTableSchema, required: true, location_name: "tableSchema"))
|
2062
|
+
SnowflakeTableReference.struct_class = Types::SnowflakeTableReference
|
2063
|
+
|
2064
|
+
SnowflakeTableSchema.add_member(:v1, Shapes::ShapeRef.new(shape: SnowflakeTableSchemaList, location_name: "v1"))
|
2065
|
+
SnowflakeTableSchema.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
2066
|
+
SnowflakeTableSchema.add_member_subclass(:v1, Types::SnowflakeTableSchema::V1)
|
2067
|
+
SnowflakeTableSchema.add_member_subclass(:unknown, Types::SnowflakeTableSchema::Unknown)
|
2068
|
+
SnowflakeTableSchema.struct_class = Types::SnowflakeTableSchema
|
2069
|
+
|
2070
|
+
SnowflakeTableSchemaList.member = Shapes::ShapeRef.new(shape: SnowflakeTableSchemaV1)
|
2071
|
+
|
2072
|
+
SnowflakeTableSchemaV1.add_member(:column_name, Shapes::ShapeRef.new(shape: ColumnName, required: true, location_name: "columnName"))
|
2073
|
+
SnowflakeTableSchemaV1.add_member(:column_type, Shapes::ShapeRef.new(shape: ColumnTypeString, required: true, location_name: "columnType"))
|
2074
|
+
SnowflakeTableSchemaV1.struct_class = Types::SnowflakeTableSchemaV1
|
2075
|
+
|
2036
2076
|
StartProtectedQueryInput.add_member(:type, Shapes::ShapeRef.new(shape: ProtectedQueryType, required: true, location_name: "type"))
|
2037
2077
|
StartProtectedQueryInput.add_member(:membership_identifier, Shapes::ShapeRef.new(shape: MembershipIdentifier, required: true, location: "uri", location_name: "membershipIdentifier"))
|
2038
2078
|
StartProtectedQueryInput.add_member(:sql_parameters, Shapes::ShapeRef.new(shape: ProtectedQuerySQLParameters, required: true, location_name: "sqlParameters"))
|
@@ -2046,8 +2086,12 @@ module Aws::CleanRooms
|
|
2046
2086
|
TableAliasList.member = Shapes::ShapeRef.new(shape: TableAlias)
|
2047
2087
|
|
2048
2088
|
TableReference.add_member(:glue, Shapes::ShapeRef.new(shape: GlueTableReference, location_name: "glue"))
|
2089
|
+
TableReference.add_member(:snowflake, Shapes::ShapeRef.new(shape: SnowflakeTableReference, location_name: "snowflake"))
|
2090
|
+
TableReference.add_member(:athena, Shapes::ShapeRef.new(shape: AthenaTableReference, location_name: "athena"))
|
2049
2091
|
TableReference.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
2050
2092
|
TableReference.add_member_subclass(:glue, Types::TableReference::Glue)
|
2093
|
+
TableReference.add_member_subclass(:snowflake, Types::TableReference::Snowflake)
|
2094
|
+
TableReference.add_member_subclass(:athena, Types::TableReference::Athena)
|
2051
2095
|
TableReference.add_member_subclass(:unknown, Types::TableReference::Unknown)
|
2052
2096
|
TableReference.struct_class = Types::TableReference
|
2053
2097
|
|
@@ -615,6 +615,35 @@ module Aws::CleanRooms
|
|
615
615
|
include Aws::Structure
|
616
616
|
end
|
617
617
|
|
618
|
+
# A reference to a table within Athena.
|
619
|
+
#
|
620
|
+
# @!attribute [rw] work_group
|
621
|
+
# The workgroup of the Athena table reference.
|
622
|
+
# @return [String]
|
623
|
+
#
|
624
|
+
# @!attribute [rw] output_location
|
625
|
+
# The output location for the Athena table.
|
626
|
+
# @return [String]
|
627
|
+
#
|
628
|
+
# @!attribute [rw] database_name
|
629
|
+
# The database name.
|
630
|
+
# @return [String]
|
631
|
+
#
|
632
|
+
# @!attribute [rw] table_name
|
633
|
+
# The table reference.
|
634
|
+
# @return [String]
|
635
|
+
#
|
636
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/AthenaTableReference AWS API Documentation
|
637
|
+
#
|
638
|
+
class AthenaTableReference < Struct.new(
|
639
|
+
:work_group,
|
640
|
+
:output_location,
|
641
|
+
:database_name,
|
642
|
+
:table_name)
|
643
|
+
SENSITIVE = []
|
644
|
+
include Aws::Structure
|
645
|
+
end
|
646
|
+
|
618
647
|
# Details of errors thrown by the call to retrieve multiple analysis
|
619
648
|
# templates within a collaboration by their identifiers.
|
620
649
|
#
|
@@ -1581,8 +1610,7 @@ module Aws::CleanRooms
|
|
1581
1610
|
include Aws::Structure
|
1582
1611
|
end
|
1583
1612
|
|
1584
|
-
# A column within a schema relation, derived from the underlying
|
1585
|
-
# table.
|
1613
|
+
# A column within a schema relation, derived from the underlying table.
|
1586
1614
|
#
|
1587
1615
|
# @!attribute [rw] name
|
1588
1616
|
# The name of the column.
|
@@ -1818,7 +1846,7 @@ module Aws::CleanRooms
|
|
1818
1846
|
# @return [String]
|
1819
1847
|
#
|
1820
1848
|
# @!attribute [rw] table_reference
|
1821
|
-
# The
|
1849
|
+
# The table that this configured table represents.
|
1822
1850
|
# @return [Types::TableReference]
|
1823
1851
|
#
|
1824
1852
|
# @!attribute [rw] create_time
|
@@ -2718,7 +2746,7 @@ module Aws::CleanRooms
|
|
2718
2746
|
# @return [String]
|
2719
2747
|
#
|
2720
2748
|
# @!attribute [rw] table_reference
|
2721
|
-
# A reference to the
|
2749
|
+
# A reference to the table being configured.
|
2722
2750
|
# @return [Types::TableReference]
|
2723
2751
|
#
|
2724
2752
|
# @!attribute [rw] allowed_columns
|
@@ -7124,6 +7152,92 @@ module Aws::CleanRooms
|
|
7124
7152
|
include Aws::Structure
|
7125
7153
|
end
|
7126
7154
|
|
7155
|
+
# A reference to a table within Snowflake.
|
7156
|
+
#
|
7157
|
+
# @!attribute [rw] secret_arn
|
7158
|
+
# The secret ARN of the Snowflake table reference.
|
7159
|
+
# @return [String]
|
7160
|
+
#
|
7161
|
+
# @!attribute [rw] account_identifier
|
7162
|
+
# The account identifier for the Snowflake table reference.
|
7163
|
+
# @return [String]
|
7164
|
+
#
|
7165
|
+
# @!attribute [rw] database_name
|
7166
|
+
# The name of the database the Snowflake table belongs to.
|
7167
|
+
# @return [String]
|
7168
|
+
#
|
7169
|
+
# @!attribute [rw] table_name
|
7170
|
+
# The name of the Snowflake table.
|
7171
|
+
# @return [String]
|
7172
|
+
#
|
7173
|
+
# @!attribute [rw] schema_name
|
7174
|
+
# The schema name of the Snowflake table reference.
|
7175
|
+
# @return [String]
|
7176
|
+
#
|
7177
|
+
# @!attribute [rw] table_schema
|
7178
|
+
# The schema of the Snowflake table.
|
7179
|
+
# @return [Types::SnowflakeTableSchema]
|
7180
|
+
#
|
7181
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/SnowflakeTableReference AWS API Documentation
|
7182
|
+
#
|
7183
|
+
class SnowflakeTableReference < Struct.new(
|
7184
|
+
:secret_arn,
|
7185
|
+
:account_identifier,
|
7186
|
+
:database_name,
|
7187
|
+
:table_name,
|
7188
|
+
:schema_name,
|
7189
|
+
:table_schema)
|
7190
|
+
SENSITIVE = []
|
7191
|
+
include Aws::Structure
|
7192
|
+
end
|
7193
|
+
|
7194
|
+
# The schema of a Snowflake table.
|
7195
|
+
#
|
7196
|
+
# @note SnowflakeTableSchema is a union - when making an API calls you must set exactly one of the members.
|
7197
|
+
#
|
7198
|
+
# @note SnowflakeTableSchema is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SnowflakeTableSchema corresponding to the set member.
|
7199
|
+
#
|
7200
|
+
# @!attribute [rw] v1
|
7201
|
+
# The schema of a Snowflake table.
|
7202
|
+
# @return [Array<Types::SnowflakeTableSchemaV1>]
|
7203
|
+
#
|
7204
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/SnowflakeTableSchema AWS API Documentation
|
7205
|
+
#
|
7206
|
+
class SnowflakeTableSchema < Struct.new(
|
7207
|
+
:v1,
|
7208
|
+
:unknown)
|
7209
|
+
SENSITIVE = []
|
7210
|
+
include Aws::Structure
|
7211
|
+
include Aws::Structure::Union
|
7212
|
+
|
7213
|
+
class V1 < SnowflakeTableSchema; end
|
7214
|
+
class Unknown < SnowflakeTableSchema; end
|
7215
|
+
end
|
7216
|
+
|
7217
|
+
# The Snowflake table schema.
|
7218
|
+
#
|
7219
|
+
# @!attribute [rw] column_name
|
7220
|
+
# The column name.
|
7221
|
+
# @return [String]
|
7222
|
+
#
|
7223
|
+
# @!attribute [rw] column_type
|
7224
|
+
# The column's data type. Supported data types: `ARRAY`, `BIGINT`,
|
7225
|
+
# `BOOLEAN`, `CHAR`, `DATE`, `DECIMAL`, `DOUBLE`, `DOUBLE PRECISION`,
|
7226
|
+
# `FLOAT`, `FLOAT4`, `INT`, `INTEGER`, `MAP`, `NUMERIC`, `NUMBER`,
|
7227
|
+
# `REAL`, `SMALLINT`, `STRING`, `TIMESTAMP`, `TIMESTAMP_LTZ`,
|
7228
|
+
# `TIMESTAMP_NTZ`, `DATETIME`, `TINYINT`, `VARCHAR`, `TEXT`,
|
7229
|
+
# `CHARACTER`.
|
7230
|
+
# @return [String]
|
7231
|
+
#
|
7232
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/SnowflakeTableSchemaV1 AWS API Documentation
|
7233
|
+
#
|
7234
|
+
class SnowflakeTableSchemaV1 < Struct.new(
|
7235
|
+
:column_name,
|
7236
|
+
:column_type)
|
7237
|
+
SENSITIVE = []
|
7238
|
+
include Aws::Structure
|
7239
|
+
end
|
7240
|
+
|
7127
7241
|
# @!attribute [rw] type
|
7128
7242
|
# The type of the protected query to be started.
|
7129
7243
|
# @return [String]
|
@@ -7169,8 +7283,7 @@ module Aws::CleanRooms
|
|
7169
7283
|
include Aws::Structure
|
7170
7284
|
end
|
7171
7285
|
|
7172
|
-
# A pointer to the dataset that underlies this table.
|
7173
|
-
# can only be an Glue table.
|
7286
|
+
# A pointer to the dataset that underlies this table.
|
7174
7287
|
#
|
7175
7288
|
# @note TableReference is a union - when making an API calls you must set exactly one of the members.
|
7176
7289
|
#
|
@@ -7181,16 +7294,30 @@ module Aws::CleanRooms
|
|
7181
7294
|
# reference.
|
7182
7295
|
# @return [Types::GlueTableReference]
|
7183
7296
|
#
|
7297
|
+
# @!attribute [rw] snowflake
|
7298
|
+
# If present, a reference to the Snowflake table referred to by this
|
7299
|
+
# table reference.
|
7300
|
+
# @return [Types::SnowflakeTableReference]
|
7301
|
+
#
|
7302
|
+
# @!attribute [rw] athena
|
7303
|
+
# If present, a reference to the Athena table referred to by this
|
7304
|
+
# table reference.
|
7305
|
+
# @return [Types::AthenaTableReference]
|
7306
|
+
#
|
7184
7307
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/TableReference AWS API Documentation
|
7185
7308
|
#
|
7186
7309
|
class TableReference < Struct.new(
|
7187
7310
|
:glue,
|
7311
|
+
:snowflake,
|
7312
|
+
:athena,
|
7188
7313
|
:unknown)
|
7189
7314
|
SENSITIVE = []
|
7190
7315
|
include Aws::Structure
|
7191
7316
|
include Aws::Structure::Union
|
7192
7317
|
|
7193
7318
|
class Glue < TableReference; end
|
7319
|
+
class Snowflake < TableReference; end
|
7320
|
+
class Athena < TableReference; end
|
7194
7321
|
class Unknown < TableReference; end
|
7195
7322
|
end
|
7196
7323
|
|
data/lib/aws-sdk-cleanrooms.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -228,6 +230,27 @@ module Aws
|
|
228
230
|
glue: {
|
229
231
|
table_name: ::String,
|
230
232
|
database_name: ::String
|
233
|
+
}?,
|
234
|
+
snowflake: {
|
235
|
+
secret_arn: ::String,
|
236
|
+
account_identifier: ::String,
|
237
|
+
database_name: ::String,
|
238
|
+
table_name: ::String,
|
239
|
+
schema_name: ::String,
|
240
|
+
table_schema: {
|
241
|
+
v1: Array[
|
242
|
+
{
|
243
|
+
column_name: ::String,
|
244
|
+
column_type: ::String
|
245
|
+
},
|
246
|
+
]?
|
247
|
+
}
|
248
|
+
}?,
|
249
|
+
athena: {
|
250
|
+
work_group: ::String,
|
251
|
+
output_location: ::String?,
|
252
|
+
database_name: ::String,
|
253
|
+
table_name: ::String
|
231
254
|
}?
|
232
255
|
},
|
233
256
|
allowed_columns: Array[::String],
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/types.rbs
CHANGED
@@ -172,6 +172,14 @@ module Aws::CleanRooms
|
|
172
172
|
SENSITIVE: []
|
173
173
|
end
|
174
174
|
|
175
|
+
class AthenaTableReference
|
176
|
+
attr_accessor work_group: ::String
|
177
|
+
attr_accessor output_location: ::String
|
178
|
+
attr_accessor database_name: ::String
|
179
|
+
attr_accessor table_name: ::String
|
180
|
+
SENSITIVE: []
|
181
|
+
end
|
182
|
+
|
175
183
|
class BatchGetCollaborationAnalysisTemplateError
|
176
184
|
attr_accessor arn: ::String
|
177
185
|
attr_accessor code: ::String
|
@@ -2002,6 +2010,33 @@ module Aws::CleanRooms
|
|
2002
2010
|
SENSITIVE: []
|
2003
2011
|
end
|
2004
2012
|
|
2013
|
+
class SnowflakeTableReference
|
2014
|
+
attr_accessor secret_arn: ::String
|
2015
|
+
attr_accessor account_identifier: ::String
|
2016
|
+
attr_accessor database_name: ::String
|
2017
|
+
attr_accessor table_name: ::String
|
2018
|
+
attr_accessor schema_name: ::String
|
2019
|
+
attr_accessor table_schema: Types::SnowflakeTableSchema
|
2020
|
+
SENSITIVE: []
|
2021
|
+
end
|
2022
|
+
|
2023
|
+
class SnowflakeTableSchema
|
2024
|
+
attr_accessor v1: ::Array[Types::SnowflakeTableSchemaV1]
|
2025
|
+
attr_accessor unknown: untyped
|
2026
|
+
SENSITIVE: []
|
2027
|
+
|
2028
|
+
class V1 < SnowflakeTableSchema
|
2029
|
+
end
|
2030
|
+
class Unknown < SnowflakeTableSchema
|
2031
|
+
end
|
2032
|
+
end
|
2033
|
+
|
2034
|
+
class SnowflakeTableSchemaV1
|
2035
|
+
attr_accessor column_name: ::String
|
2036
|
+
attr_accessor column_type: ::String
|
2037
|
+
SENSITIVE: []
|
2038
|
+
end
|
2039
|
+
|
2005
2040
|
class StartProtectedQueryInput
|
2006
2041
|
attr_accessor type: ("SQL")
|
2007
2042
|
attr_accessor membership_identifier: ::String
|
@@ -2018,11 +2053,17 @@ module Aws::CleanRooms
|
|
2018
2053
|
|
2019
2054
|
class TableReference
|
2020
2055
|
attr_accessor glue: Types::GlueTableReference
|
2056
|
+
attr_accessor snowflake: Types::SnowflakeTableReference
|
2057
|
+
attr_accessor athena: Types::AthenaTableReference
|
2021
2058
|
attr_accessor unknown: untyped
|
2022
2059
|
SENSITIVE: []
|
2023
2060
|
|
2024
2061
|
class Glue < TableReference
|
2025
2062
|
end
|
2063
|
+
class Snowflake < TableReference
|
2064
|
+
end
|
2065
|
+
class Athena < TableReference
|
2066
|
+
end
|
2026
2067
|
class Unknown < TableReference
|
2027
2068
|
end
|
2028
2069
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cleanrooms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.38.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|