aws-sdk-cleanrooms 1.36.0 → 1.37.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '08a2046271f4ffe61f022767fcc83aeeab223137f0ef60d6bfbeb072e6a78634'
4
- data.tar.gz: 31043e38b2f2aaaa5a6fb8d284c3856db7f4e8335b073940148c4ec12c26060b
3
+ metadata.gz: 20375ec42c8a186f57943e6ba22d1def9130eaa71aa2ff759e4e7b55ab387226
4
+ data.tar.gz: f240293dd123147a54c202459b9d4b891787db49b485293eb71afc8ef71d4613
5
5
  SHA512:
6
- metadata.gz: '09981b231422c0cbe8235479090a2e1dfc7c12f85d27726dbc61d547ebea426d8bc7072fc05b46014a64ff338a72c2bf88df96e05e10f78fe028fcdc219af9d1'
7
- data.tar.gz: bd532627caf14073db9702b740a67355e6b8adfee43efbf0694015c7b5d65617e86f45c6fed4abb4433c3ff60d6ec7d56cbb499c602f50757e47664aafd2096b
6
+ metadata.gz: 793c1a214eaaf4d3ca7f3db76c48ef9a64fc9d9581855ac83c15cd8fecbdeb994632dd29fdd1b50ab4da790b4f608c75e5f20c5984c57ec05662667fd2f4ccc8
7
+ data.tar.gz: faa88d04408519256657e7f5bd1488951d1708e8c26df5702b1e6ff30e5aa6ec184be23be7eb81af7ac654861af7a1579e94f18b35fb1e37f921c994ea6347a2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.37.0 (2024-12-02)
5
+ ------------------
6
+
7
+ * 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.
8
+
4
9
  1.36.0 (2024-11-07)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.36.0
1
+ 1.37.0
@@ -989,7 +989,7 @@ module Aws::CleanRooms
989
989
  # A description for the configured table.
990
990
  #
991
991
  # @option params [required, Types::TableReference] :table_reference
992
- # A reference to the Glue table being configured.
992
+ # A reference to the table being configured.
993
993
  #
994
994
  # @option params [required, Array<String>] :allowed_columns
995
995
  # The columns of the underlying table that can be used by collaborations
@@ -1019,6 +1019,27 @@ module Aws::CleanRooms
1019
1019
  # table_name: "GlueTableName", # required
1020
1020
  # database_name: "GlueDatabaseName", # required
1021
1021
  # },
1022
+ # snowflake: {
1023
+ # secret_arn: "SecretsManagerArn", # required
1024
+ # account_identifier: "SnowflakeAccountIdentifier", # required
1025
+ # database_name: "SnowflakeDatabaseName", # required
1026
+ # table_name: "SnowflakeTableName", # required
1027
+ # schema_name: "SnowflakeSchemaName", # required
1028
+ # table_schema: { # required
1029
+ # v1: [
1030
+ # {
1031
+ # column_name: "ColumnName", # required
1032
+ # column_type: "ColumnTypeString", # required
1033
+ # },
1034
+ # ],
1035
+ # },
1036
+ # },
1037
+ # athena: {
1038
+ # work_group: "AthenaWorkGroup", # required
1039
+ # output_location: "AthenaOutputLocation",
1040
+ # database_name: "AthenaDatabaseName", # required
1041
+ # table_name: "AthenaTableName", # required
1042
+ # },
1022
1043
  # },
1023
1044
  # allowed_columns: ["ColumnName"], # required
1024
1045
  # analysis_method: "DIRECT_QUERY", # required, accepts DIRECT_QUERY
@@ -1035,6 +1056,18 @@ module Aws::CleanRooms
1035
1056
  # resp.configured_table.description #=> String
1036
1057
  # resp.configured_table.table_reference.glue.table_name #=> String
1037
1058
  # resp.configured_table.table_reference.glue.database_name #=> String
1059
+ # resp.configured_table.table_reference.snowflake.secret_arn #=> String
1060
+ # resp.configured_table.table_reference.snowflake.account_identifier #=> String
1061
+ # resp.configured_table.table_reference.snowflake.database_name #=> String
1062
+ # resp.configured_table.table_reference.snowflake.table_name #=> String
1063
+ # resp.configured_table.table_reference.snowflake.schema_name #=> String
1064
+ # resp.configured_table.table_reference.snowflake.table_schema.v1 #=> Array
1065
+ # resp.configured_table.table_reference.snowflake.table_schema.v1[0].column_name #=> String
1066
+ # resp.configured_table.table_reference.snowflake.table_schema.v1[0].column_type #=> String
1067
+ # resp.configured_table.table_reference.athena.work_group #=> String
1068
+ # resp.configured_table.table_reference.athena.output_location #=> String
1069
+ # resp.configured_table.table_reference.athena.database_name #=> String
1070
+ # resp.configured_table.table_reference.athena.table_name #=> String
1038
1071
  # resp.configured_table.create_time #=> Time
1039
1072
  # resp.configured_table.update_time #=> Time
1040
1073
  # resp.configured_table.analysis_rule_types #=> Array
@@ -2325,6 +2358,18 @@ module Aws::CleanRooms
2325
2358
  # resp.configured_table.description #=> String
2326
2359
  # resp.configured_table.table_reference.glue.table_name #=> String
2327
2360
  # resp.configured_table.table_reference.glue.database_name #=> String
2361
+ # resp.configured_table.table_reference.snowflake.secret_arn #=> String
2362
+ # resp.configured_table.table_reference.snowflake.account_identifier #=> String
2363
+ # resp.configured_table.table_reference.snowflake.database_name #=> String
2364
+ # resp.configured_table.table_reference.snowflake.table_name #=> String
2365
+ # resp.configured_table.table_reference.snowflake.schema_name #=> String
2366
+ # resp.configured_table.table_reference.snowflake.table_schema.v1 #=> Array
2367
+ # resp.configured_table.table_reference.snowflake.table_schema.v1[0].column_name #=> String
2368
+ # resp.configured_table.table_reference.snowflake.table_schema.v1[0].column_type #=> String
2369
+ # resp.configured_table.table_reference.athena.work_group #=> String
2370
+ # resp.configured_table.table_reference.athena.output_location #=> String
2371
+ # resp.configured_table.table_reference.athena.database_name #=> String
2372
+ # resp.configured_table.table_reference.athena.table_name #=> String
2328
2373
  # resp.configured_table.create_time #=> Time
2329
2374
  # resp.configured_table.update_time #=> Time
2330
2375
  # resp.configured_table.analysis_rule_types #=> Array
@@ -4370,6 +4415,18 @@ module Aws::CleanRooms
4370
4415
  # resp.configured_table.description #=> String
4371
4416
  # resp.configured_table.table_reference.glue.table_name #=> String
4372
4417
  # resp.configured_table.table_reference.glue.database_name #=> String
4418
+ # resp.configured_table.table_reference.snowflake.secret_arn #=> String
4419
+ # resp.configured_table.table_reference.snowflake.account_identifier #=> String
4420
+ # resp.configured_table.table_reference.snowflake.database_name #=> String
4421
+ # resp.configured_table.table_reference.snowflake.table_name #=> String
4422
+ # resp.configured_table.table_reference.snowflake.schema_name #=> String
4423
+ # resp.configured_table.table_reference.snowflake.table_schema.v1 #=> Array
4424
+ # resp.configured_table.table_reference.snowflake.table_schema.v1[0].column_name #=> String
4425
+ # resp.configured_table.table_reference.snowflake.table_schema.v1[0].column_type #=> String
4426
+ # resp.configured_table.table_reference.athena.work_group #=> String
4427
+ # resp.configured_table.table_reference.athena.output_location #=> String
4428
+ # resp.configured_table.table_reference.athena.database_name #=> String
4429
+ # resp.configured_table.table_reference.athena.table_name #=> String
4373
4430
  # resp.configured_table.create_time #=> Time
4374
4431
  # resp.configured_table.update_time #=> Time
4375
4432
  # resp.configured_table.analysis_rule_types #=> Array
@@ -4967,7 +5024,7 @@ module Aws::CleanRooms
4967
5024
  tracer: tracer
4968
5025
  )
4969
5026
  context[:gem_name] = 'aws-sdk-cleanrooms'
4970
- context[:gem_version] = '1.36.0'
5027
+ context[:gem_version] = '1.37.0'
4971
5028
  Seahorse::Client::Request.new(handlers, context)
4972
5029
  end
4973
5030
 
@@ -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 Glue
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 Glue table that this configured table represents.
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 Glue table being configured.
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. Currently, this
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
 
@@ -55,7 +55,7 @@ module Aws::CleanRooms
55
55
  autoload :EndpointProvider, 'aws-sdk-cleanrooms/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-cleanrooms/endpoints'
57
57
 
58
- GEM_VERSION = '1.36.0'
58
+ GEM_VERSION = '1.37.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -228,6 +228,27 @@ module Aws
228
228
  glue: {
229
229
  table_name: ::String,
230
230
  database_name: ::String
231
+ }?,
232
+ snowflake: {
233
+ secret_arn: ::String,
234
+ account_identifier: ::String,
235
+ database_name: ::String,
236
+ table_name: ::String,
237
+ schema_name: ::String,
238
+ table_schema: {
239
+ v1: Array[
240
+ {
241
+ column_name: ::String,
242
+ column_type: ::String
243
+ },
244
+ ]?
245
+ }
246
+ }?,
247
+ athena: {
248
+ work_group: ::String,
249
+ output_location: ::String?,
250
+ database_name: ::String,
251
+ table_name: ::String
231
252
  }?
232
253
  },
233
254
  allowed_columns: Array[::String],
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.36.0
4
+ version: 1.37.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: 2024-11-07 00:00:00.000000000 Z
11
+ date: 2024-12-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core