aws-sdk-cleanrooms 1.35.0 → 1.37.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 +120 -2
- data/lib/aws-sdk-cleanrooms/client_api.rb +85 -0
- data/lib/aws-sdk-cleanrooms/types.rb +400 -8
- data/lib/aws-sdk-cleanrooms.rb +1 -1
- data/sig/client.rbs +54 -3
- data/sig/types.rbs +85 -0
- metadata +2 -2
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
|
@@ -633,6 +641,7 @@ module Aws::CleanRooms
|
|
633
641
|
attr_accessor name: ::String
|
634
642
|
attr_accessor description: ::String
|
635
643
|
attr_accessor creator_member_abilities: ::Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS")]
|
644
|
+
attr_accessor creator_ml_member_abilities: Types::MLMemberAbilities
|
636
645
|
attr_accessor creator_display_name: ::String
|
637
646
|
attr_accessor data_encryption_metadata: Types::DataEncryptionMetadata
|
638
647
|
attr_accessor query_log_status: ("ENABLED" | "DISABLED")
|
@@ -1530,9 +1539,21 @@ module Aws::CleanRooms
|
|
1530
1539
|
SENSITIVE: []
|
1531
1540
|
end
|
1532
1541
|
|
1542
|
+
class MLMemberAbilities
|
1543
|
+
attr_accessor custom_ml_member_abilities: ::Array[("CAN_RECEIVE_MODEL_OUTPUT" | "CAN_RECEIVE_INFERENCE_OUTPUT")]
|
1544
|
+
SENSITIVE: []
|
1545
|
+
end
|
1546
|
+
|
1547
|
+
class MLPaymentConfig
|
1548
|
+
attr_accessor model_training: Types::ModelTrainingPaymentConfig
|
1549
|
+
attr_accessor model_inference: Types::ModelInferencePaymentConfig
|
1550
|
+
SENSITIVE: []
|
1551
|
+
end
|
1552
|
+
|
1533
1553
|
class MemberSpecification
|
1534
1554
|
attr_accessor account_id: ::String
|
1535
1555
|
attr_accessor member_abilities: ::Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS")]
|
1556
|
+
attr_accessor ml_member_abilities: Types::MLMemberAbilities
|
1536
1557
|
attr_accessor display_name: ::String
|
1537
1558
|
attr_accessor payment_configuration: Types::PaymentConfiguration
|
1538
1559
|
SENSITIVE: []
|
@@ -1543,6 +1564,7 @@ module Aws::CleanRooms
|
|
1543
1564
|
attr_accessor status: ("INVITED" | "ACTIVE" | "LEFT" | "REMOVED")
|
1544
1565
|
attr_accessor display_name: ::String
|
1545
1566
|
attr_accessor abilities: ::Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS")]
|
1567
|
+
attr_accessor ml_abilities: Types::MLMemberAbilities
|
1546
1568
|
attr_accessor create_time: ::Time
|
1547
1569
|
attr_accessor update_time: ::Time
|
1548
1570
|
attr_accessor membership_id: ::String
|
@@ -1563,14 +1585,32 @@ module Aws::CleanRooms
|
|
1563
1585
|
attr_accessor update_time: ::Time
|
1564
1586
|
attr_accessor status: ("ACTIVE" | "REMOVED" | "COLLABORATION_DELETED")
|
1565
1587
|
attr_accessor member_abilities: ::Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS")]
|
1588
|
+
attr_accessor ml_member_abilities: Types::MLMemberAbilities
|
1566
1589
|
attr_accessor query_log_status: ("ENABLED" | "DISABLED")
|
1567
1590
|
attr_accessor default_result_configuration: Types::MembershipProtectedQueryResultConfiguration
|
1568
1591
|
attr_accessor payment_configuration: Types::MembershipPaymentConfiguration
|
1569
1592
|
SENSITIVE: []
|
1570
1593
|
end
|
1571
1594
|
|
1595
|
+
class MembershipMLPaymentConfig
|
1596
|
+
attr_accessor model_training: Types::MembershipModelTrainingPaymentConfig
|
1597
|
+
attr_accessor model_inference: Types::MembershipModelInferencePaymentConfig
|
1598
|
+
SENSITIVE: []
|
1599
|
+
end
|
1600
|
+
|
1601
|
+
class MembershipModelInferencePaymentConfig
|
1602
|
+
attr_accessor is_responsible: bool
|
1603
|
+
SENSITIVE: []
|
1604
|
+
end
|
1605
|
+
|
1606
|
+
class MembershipModelTrainingPaymentConfig
|
1607
|
+
attr_accessor is_responsible: bool
|
1608
|
+
SENSITIVE: []
|
1609
|
+
end
|
1610
|
+
|
1572
1611
|
class MembershipPaymentConfiguration
|
1573
1612
|
attr_accessor query_compute: Types::MembershipQueryComputePaymentConfig
|
1613
|
+
attr_accessor machine_learning: Types::MembershipMLPaymentConfig
|
1574
1614
|
SENSITIVE: []
|
1575
1615
|
end
|
1576
1616
|
|
@@ -1608,12 +1648,24 @@ module Aws::CleanRooms
|
|
1608
1648
|
attr_accessor update_time: ::Time
|
1609
1649
|
attr_accessor status: ("ACTIVE" | "REMOVED" | "COLLABORATION_DELETED")
|
1610
1650
|
attr_accessor member_abilities: ::Array[("CAN_QUERY" | "CAN_RECEIVE_RESULTS")]
|
1651
|
+
attr_accessor ml_member_abilities: Types::MLMemberAbilities
|
1611
1652
|
attr_accessor payment_configuration: Types::MembershipPaymentConfiguration
|
1612
1653
|
SENSITIVE: []
|
1613
1654
|
end
|
1614
1655
|
|
1656
|
+
class ModelInferencePaymentConfig
|
1657
|
+
attr_accessor is_responsible: bool
|
1658
|
+
SENSITIVE: []
|
1659
|
+
end
|
1660
|
+
|
1661
|
+
class ModelTrainingPaymentConfig
|
1662
|
+
attr_accessor is_responsible: bool
|
1663
|
+
SENSITIVE: []
|
1664
|
+
end
|
1665
|
+
|
1615
1666
|
class PaymentConfiguration
|
1616
1667
|
attr_accessor query_compute: Types::QueryComputePaymentConfig
|
1668
|
+
attr_accessor machine_learning: Types::MLPaymentConfig
|
1617
1669
|
SENSITIVE: []
|
1618
1670
|
end
|
1619
1671
|
|
@@ -1958,6 +2010,33 @@ module Aws::CleanRooms
|
|
1958
2010
|
SENSITIVE: []
|
1959
2011
|
end
|
1960
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
|
+
|
1961
2040
|
class StartProtectedQueryInput
|
1962
2041
|
attr_accessor type: ("SQL")
|
1963
2042
|
attr_accessor membership_identifier: ::String
|
@@ -1974,11 +2053,17 @@ module Aws::CleanRooms
|
|
1974
2053
|
|
1975
2054
|
class TableReference
|
1976
2055
|
attr_accessor glue: Types::GlueTableReference
|
2056
|
+
attr_accessor snowflake: Types::SnowflakeTableReference
|
2057
|
+
attr_accessor athena: Types::AthenaTableReference
|
1977
2058
|
attr_accessor unknown: untyped
|
1978
2059
|
SENSITIVE: []
|
1979
2060
|
|
1980
2061
|
class Glue < TableReference
|
1981
2062
|
end
|
2063
|
+
class Snowflake < TableReference
|
2064
|
+
end
|
2065
|
+
class Athena < TableReference
|
2066
|
+
end
|
1982
2067
|
class Unknown < TableReference
|
1983
2068
|
end
|
1984
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.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
|
+
date: 2024-12-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|