aws-sdk-finspacedata 1.16.0 → 1.17.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-finspacedata/client.rb +61 -3
- data/lib/aws-sdk-finspacedata/client_api.rb +40 -0
- data/lib/aws-sdk-finspacedata/types.rb +117 -3
- data/lib/aws-sdk-finspacedata.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dcbebb6db6faba8e5da5ffe0b4d13289ce68d505e48ce3fcc3b50dc9c06bdfca
|
4
|
+
data.tar.gz: aa0365c9ee24b059a3151532778f3fcfe4a133ea6e74faeb5e7696c9bddbddb2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '01188ba7914670643dad9d50f01d92c1f0b4ef6470239b913f04eeab1670be8b078e7a7a23f4d6dd801f0848be437b80c470ca8a0f9f3743ba7cd6a887b971a9'
|
7
|
+
data.tar.gz: 7cc3a23d78adc5b4ffd86607d558429a0d38f57ce95a66aa916a5a1fcd65d18bd35c3d1267751638031f6b3d47feed7c9270871bdaac3087abd9881c4a958fc1
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.17.0
|
@@ -667,13 +667,20 @@ module Aws::FinSpaceData
|
|
667
667
|
# The option to indicate FinSpace application permissions that are
|
668
668
|
# granted to a specific group.
|
669
669
|
#
|
670
|
+
# When assigning application permissions, be aware that the permission
|
671
|
+
# `ManageUsersAndGroups` allows users to grant themselves or others
|
672
|
+
# access to any functionality in their FinSpace environment's
|
673
|
+
# application. It should only be granted to trusted users.
|
674
|
+
#
|
670
675
|
# * `CreateDataset` – Group members can create new datasets.
|
671
676
|
#
|
672
677
|
# * `ManageClusters` – Group members can manage Apache Spark clusters
|
673
678
|
# from FinSpace notebooks.
|
674
679
|
#
|
675
680
|
# * `ManageUsersAndGroups` – Group members can manage users and
|
676
|
-
# permission groups.
|
681
|
+
# permission groups. This is a privileged permission that allows users
|
682
|
+
# to grant themselves or others access to any functionality in the
|
683
|
+
# application. It should only be granted to trusted users.
|
677
684
|
#
|
678
685
|
# * `ManageAttributeSets` – Group members can manage attribute sets.
|
679
686
|
#
|
@@ -1143,6 +1150,50 @@ module Aws::FinSpaceData
|
|
1143
1150
|
req.send_request(options)
|
1144
1151
|
end
|
1145
1152
|
|
1153
|
+
# Returns the credentials to access the external Dataview from an S3
|
1154
|
+
# location. To call this API:
|
1155
|
+
#
|
1156
|
+
# * You must retrieve the programmatic credentials.
|
1157
|
+
#
|
1158
|
+
# * You must be a member of a FinSpace user group, where the dataset
|
1159
|
+
# that you want to access has `Read Dataset Data` permissions.
|
1160
|
+
#
|
1161
|
+
# @option params [required, String] :data_view_id
|
1162
|
+
# The unique identifier for the Dataview that you want to access.
|
1163
|
+
#
|
1164
|
+
# @option params [required, String] :dataset_id
|
1165
|
+
# The unique identifier for the Dataset.
|
1166
|
+
#
|
1167
|
+
# @return [Types::GetExternalDataViewAccessDetailsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1168
|
+
#
|
1169
|
+
# * {Types::GetExternalDataViewAccessDetailsResponse#credentials #credentials} => Types::AwsCredentials
|
1170
|
+
# * {Types::GetExternalDataViewAccessDetailsResponse#s3_location #s3_location} => Types::S3Location
|
1171
|
+
#
|
1172
|
+
# @example Request syntax with placeholder values
|
1173
|
+
#
|
1174
|
+
# resp = client.get_external_data_view_access_details({
|
1175
|
+
# data_view_id: "DataViewId", # required
|
1176
|
+
# dataset_id: "DatasetId", # required
|
1177
|
+
# })
|
1178
|
+
#
|
1179
|
+
# @example Response structure
|
1180
|
+
#
|
1181
|
+
# resp.credentials.access_key_id #=> String
|
1182
|
+
# resp.credentials.secret_access_key #=> String
|
1183
|
+
# resp.credentials.session_token #=> String
|
1184
|
+
# resp.credentials.expiration #=> Integer
|
1185
|
+
# resp.s3_location.bucket #=> String
|
1186
|
+
# resp.s3_location.key #=> String
|
1187
|
+
#
|
1188
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2020-07-13/GetExternalDataViewAccessDetails AWS API Documentation
|
1189
|
+
#
|
1190
|
+
# @overload get_external_data_view_access_details(params = {})
|
1191
|
+
# @param [Hash] params ({})
|
1192
|
+
def get_external_data_view_access_details(params = {}, options = {})
|
1193
|
+
req = build_request(:get_external_data_view_access_details, params)
|
1194
|
+
req.send_request(options)
|
1195
|
+
end
|
1196
|
+
|
1146
1197
|
# Retrieves the details of a specific permission group.
|
1147
1198
|
#
|
1148
1199
|
# @option params [required, String] :permission_group_id
|
@@ -1887,13 +1938,20 @@ module Aws::FinSpaceData
|
|
1887
1938
|
# The permissions that are granted to a specific group for accessing the
|
1888
1939
|
# FinSpace application.
|
1889
1940
|
#
|
1941
|
+
# When assigning application permissions, be aware that the permission
|
1942
|
+
# `ManageUsersAndGroups` allows users to grant themselves or others
|
1943
|
+
# access to any functionality in their FinSpace environment's
|
1944
|
+
# application. It should only be granted to trusted users.
|
1945
|
+
#
|
1890
1946
|
# * `CreateDataset` – Group members can create new datasets.
|
1891
1947
|
#
|
1892
1948
|
# * `ManageClusters` – Group members can manage Apache Spark clusters
|
1893
1949
|
# from FinSpace notebooks.
|
1894
1950
|
#
|
1895
1951
|
# * `ManageUsersAndGroups` – Group members can manage users and
|
1896
|
-
# permission groups.
|
1952
|
+
# permission groups. This is a privileged permission that allows users
|
1953
|
+
# to grant themselves or others access to any functionality in the
|
1954
|
+
# application. It should only be granted to trusted users.
|
1897
1955
|
#
|
1898
1956
|
# * `ManageAttributeSets` – Group members can manage attribute sets.
|
1899
1957
|
#
|
@@ -2022,7 +2080,7 @@ module Aws::FinSpaceData
|
|
2022
2080
|
params: params,
|
2023
2081
|
config: config)
|
2024
2082
|
context[:gem_name] = 'aws-sdk-finspacedata'
|
2025
|
-
context[:gem_version] = '1.
|
2083
|
+
context[:gem_version] = '1.17.0'
|
2026
2084
|
Seahorse::Client::Request.new(handlers, context)
|
2027
2085
|
end
|
2028
2086
|
|
@@ -14,12 +14,14 @@ module Aws::FinSpaceData
|
|
14
14
|
include Seahorse::Model
|
15
15
|
|
16
16
|
AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
|
17
|
+
AccessKeyId = Shapes::StringShape.new(name: 'AccessKeyId')
|
17
18
|
AliasString = Shapes::StringShape.new(name: 'AliasString')
|
18
19
|
ApiAccess = Shapes::StringShape.new(name: 'ApiAccess')
|
19
20
|
ApplicationPermission = Shapes::StringShape.new(name: 'ApplicationPermission')
|
20
21
|
ApplicationPermissionList = Shapes::ListShape.new(name: 'ApplicationPermissionList')
|
21
22
|
AssociateUserToPermissionGroupRequest = Shapes::StructureShape.new(name: 'AssociateUserToPermissionGroupRequest')
|
22
23
|
AssociateUserToPermissionGroupResponse = Shapes::StructureShape.new(name: 'AssociateUserToPermissionGroupResponse')
|
24
|
+
AwsCredentials = Shapes::StructureShape.new(name: 'AwsCredentials')
|
23
25
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
24
26
|
ChangeType = Shapes::StringShape.new(name: 'ChangeType')
|
25
27
|
ChangesetArn = Shapes::StringShape.new(name: 'ChangesetArn')
|
@@ -85,6 +87,8 @@ module Aws::FinSpaceData
|
|
85
87
|
GetDataViewResponse = Shapes::StructureShape.new(name: 'GetDataViewResponse')
|
86
88
|
GetDatasetRequest = Shapes::StructureShape.new(name: 'GetDatasetRequest')
|
87
89
|
GetDatasetResponse = Shapes::StructureShape.new(name: 'GetDatasetResponse')
|
90
|
+
GetExternalDataViewAccessDetailsRequest = Shapes::StructureShape.new(name: 'GetExternalDataViewAccessDetailsRequest')
|
91
|
+
GetExternalDataViewAccessDetailsResponse = Shapes::StructureShape.new(name: 'GetExternalDataViewAccessDetailsResponse')
|
88
92
|
GetPermissionGroupRequest = Shapes::StructureShape.new(name: 'GetPermissionGroupRequest')
|
89
93
|
GetPermissionGroupResponse = Shapes::StructureShape.new(name: 'GetPermissionGroupResponse')
|
90
94
|
GetProgrammaticAccessCredentialsRequest = Shapes::StructureShape.new(name: 'GetProgrammaticAccessCredentialsRequest')
|
@@ -133,10 +137,15 @@ module Aws::FinSpaceData
|
|
133
137
|
ResourcePermissionsList = Shapes::ListShape.new(name: 'ResourcePermissionsList')
|
134
138
|
ResultLimit = Shapes::IntegerShape.new(name: 'ResultLimit')
|
135
139
|
RoleArn = Shapes::StringShape.new(name: 'RoleArn')
|
140
|
+
S3BucketName = Shapes::StringShape.new(name: 'S3BucketName')
|
136
141
|
S3DestinationFormatOptions = Shapes::MapShape.new(name: 'S3DestinationFormatOptions')
|
142
|
+
S3Key = Shapes::StringShape.new(name: 'S3Key')
|
143
|
+
S3Location = Shapes::StructureShape.new(name: 'S3Location')
|
137
144
|
SchemaDefinition = Shapes::StructureShape.new(name: 'SchemaDefinition')
|
138
145
|
SchemaUnion = Shapes::StructureShape.new(name: 'SchemaUnion')
|
146
|
+
SecretAccessKey = Shapes::StringShape.new(name: 'SecretAccessKey')
|
139
147
|
SessionDuration = Shapes::IntegerShape.new(name: 'SessionDuration')
|
148
|
+
SessionToken = Shapes::StringShape.new(name: 'SessionToken')
|
140
149
|
SortColumnList = Shapes::ListShape.new(name: 'SortColumnList')
|
141
150
|
SourceParams = Shapes::MapShape.new(name: 'SourceParams')
|
142
151
|
StatusCode = Shapes::IntegerShape.new(name: 'StatusCode')
|
@@ -182,6 +191,12 @@ module Aws::FinSpaceData
|
|
182
191
|
AssociateUserToPermissionGroupResponse.add_member(:status_code, Shapes::ShapeRef.new(shape: StatusCode, location: "statusCode", location_name: "statusCode"))
|
183
192
|
AssociateUserToPermissionGroupResponse.struct_class = Types::AssociateUserToPermissionGroupResponse
|
184
193
|
|
194
|
+
AwsCredentials.add_member(:access_key_id, Shapes::ShapeRef.new(shape: AccessKeyId, location_name: "accessKeyId"))
|
195
|
+
AwsCredentials.add_member(:secret_access_key, Shapes::ShapeRef.new(shape: SecretAccessKey, location_name: "secretAccessKey"))
|
196
|
+
AwsCredentials.add_member(:session_token, Shapes::ShapeRef.new(shape: SessionToken, location_name: "sessionToken"))
|
197
|
+
AwsCredentials.add_member(:expiration, Shapes::ShapeRef.new(shape: TimestampEpoch, location_name: "expiration"))
|
198
|
+
AwsCredentials.struct_class = Types::AwsCredentials
|
199
|
+
|
185
200
|
ChangesetErrorInfo.add_member(:error_message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "errorMessage"))
|
186
201
|
ChangesetErrorInfo.add_member(:error_category, Shapes::ShapeRef.new(shape: ErrorCategory, location_name: "errorCategory"))
|
187
202
|
ChangesetErrorInfo.struct_class = Types::ChangesetErrorInfo
|
@@ -414,6 +429,14 @@ module Aws::FinSpaceData
|
|
414
429
|
GetDatasetResponse.add_member(:status, Shapes::ShapeRef.new(shape: DatasetStatus, location_name: "status"))
|
415
430
|
GetDatasetResponse.struct_class = Types::GetDatasetResponse
|
416
431
|
|
432
|
+
GetExternalDataViewAccessDetailsRequest.add_member(:data_view_id, Shapes::ShapeRef.new(shape: DataViewId, required: true, location: "uri", location_name: "dataviewId"))
|
433
|
+
GetExternalDataViewAccessDetailsRequest.add_member(:dataset_id, Shapes::ShapeRef.new(shape: DatasetId, required: true, location: "uri", location_name: "datasetId"))
|
434
|
+
GetExternalDataViewAccessDetailsRequest.struct_class = Types::GetExternalDataViewAccessDetailsRequest
|
435
|
+
|
436
|
+
GetExternalDataViewAccessDetailsResponse.add_member(:credentials, Shapes::ShapeRef.new(shape: AwsCredentials, location_name: "credentials"))
|
437
|
+
GetExternalDataViewAccessDetailsResponse.add_member(:s3_location, Shapes::ShapeRef.new(shape: S3Location, location_name: "s3Location"))
|
438
|
+
GetExternalDataViewAccessDetailsResponse.struct_class = Types::GetExternalDataViewAccessDetailsResponse
|
439
|
+
|
417
440
|
GetPermissionGroupRequest.add_member(:permission_group_id, Shapes::ShapeRef.new(shape: PermissionGroupId, required: true, location: "uri", location_name: "permissionGroupId"))
|
418
441
|
GetPermissionGroupRequest.struct_class = Types::GetPermissionGroupRequest
|
419
442
|
|
@@ -564,6 +587,10 @@ module Aws::FinSpaceData
|
|
564
587
|
S3DestinationFormatOptions.key = Shapes::ShapeRef.new(shape: StringMapKey)
|
565
588
|
S3DestinationFormatOptions.value = Shapes::ShapeRef.new(shape: StringMapValue)
|
566
589
|
|
590
|
+
S3Location.add_member(:bucket, Shapes::ShapeRef.new(shape: S3BucketName, required: true, location_name: "bucket"))
|
591
|
+
S3Location.add_member(:key, Shapes::ShapeRef.new(shape: S3Key, required: true, location_name: "key"))
|
592
|
+
S3Location.struct_class = Types::S3Location
|
593
|
+
|
567
594
|
SchemaDefinition.add_member(:columns, Shapes::ShapeRef.new(shape: ColumnList, location_name: "columns"))
|
568
595
|
SchemaDefinition.add_member(:primary_key_columns, Shapes::ShapeRef.new(shape: ColumnNameList, location_name: "primaryKeyColumns"))
|
569
596
|
SchemaDefinition.struct_class = Types::SchemaDefinition
|
@@ -876,6 +903,19 @@ module Aws::FinSpaceData
|
|
876
903
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
877
904
|
end)
|
878
905
|
|
906
|
+
api.add_operation(:get_external_data_view_access_details, Seahorse::Model::Operation.new.tap do |o|
|
907
|
+
o.name = "GetExternalDataViewAccessDetails"
|
908
|
+
o.http_method = "POST"
|
909
|
+
o.http_request_uri = "/datasets/{datasetId}/dataviewsv2/{dataviewId}/external-access-details"
|
910
|
+
o.input = Shapes::ShapeRef.new(shape: GetExternalDataViewAccessDetailsRequest)
|
911
|
+
o.output = Shapes::ShapeRef.new(shape: GetExternalDataViewAccessDetailsResponse)
|
912
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
913
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
914
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
915
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
916
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
917
|
+
end)
|
918
|
+
|
879
919
|
api.add_operation(:get_permission_group, Seahorse::Model::Operation.new.tap do |o|
|
880
920
|
o.name = "GetPermissionGroup"
|
881
921
|
o.http_method = "GET"
|
@@ -69,6 +69,36 @@ module Aws::FinSpaceData
|
|
69
69
|
include Aws::Structure
|
70
70
|
end
|
71
71
|
|
72
|
+
# The credentials required to access the external Dataview from the S3
|
73
|
+
# location.
|
74
|
+
#
|
75
|
+
# @!attribute [rw] access_key_id
|
76
|
+
# The unique identifier for the security credentials.
|
77
|
+
# @return [String]
|
78
|
+
#
|
79
|
+
# @!attribute [rw] secret_access_key
|
80
|
+
# The secret access key that can be used to sign requests.
|
81
|
+
# @return [String]
|
82
|
+
#
|
83
|
+
# @!attribute [rw] session_token
|
84
|
+
# The token that users must pass to use the credentials.
|
85
|
+
# @return [String]
|
86
|
+
#
|
87
|
+
# @!attribute [rw] expiration
|
88
|
+
# The Epoch time when the current credentials expire.
|
89
|
+
# @return [Integer]
|
90
|
+
#
|
91
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2020-07-13/AwsCredentials AWS API Documentation
|
92
|
+
#
|
93
|
+
class AwsCredentials < Struct.new(
|
94
|
+
:access_key_id,
|
95
|
+
:secret_access_key,
|
96
|
+
:session_token,
|
97
|
+
:expiration)
|
98
|
+
SENSITIVE = [:secret_access_key, :session_token]
|
99
|
+
include Aws::Structure
|
100
|
+
end
|
101
|
+
|
72
102
|
# The structure with error messages.
|
73
103
|
#
|
74
104
|
# @!attribute [rw] error_message
|
@@ -631,13 +661,20 @@ module Aws::FinSpaceData
|
|
631
661
|
# The option to indicate FinSpace application permissions that are
|
632
662
|
# granted to a specific group.
|
633
663
|
#
|
664
|
+
# When assigning application permissions, be aware that the permission
|
665
|
+
# `ManageUsersAndGroups` allows users to grant themselves or others
|
666
|
+
# access to any functionality in their FinSpace environment's
|
667
|
+
# application. It should only be granted to trusted users.
|
668
|
+
#
|
634
669
|
# * `CreateDataset` – Group members can create new datasets.
|
635
670
|
#
|
636
671
|
# * `ManageClusters` – Group members can manage Apache Spark clusters
|
637
672
|
# from FinSpace notebooks.
|
638
673
|
#
|
639
674
|
# * `ManageUsersAndGroups` – Group members can manage users and
|
640
|
-
# permission groups.
|
675
|
+
# permission groups. This is a privileged permission that allows
|
676
|
+
# users to grant themselves or others access to any functionality in
|
677
|
+
# the application. It should only be granted to trusted users.
|
641
678
|
#
|
642
679
|
# * `ManageAttributeSets` – Group members can manage attribute sets.
|
643
680
|
#
|
@@ -1625,6 +1662,49 @@ module Aws::FinSpaceData
|
|
1625
1662
|
include Aws::Structure
|
1626
1663
|
end
|
1627
1664
|
|
1665
|
+
# @note When making an API call, you may pass GetExternalDataViewAccessDetailsRequest
|
1666
|
+
# data as a hash:
|
1667
|
+
#
|
1668
|
+
# {
|
1669
|
+
# data_view_id: "DataViewId", # required
|
1670
|
+
# dataset_id: "DatasetId", # required
|
1671
|
+
# }
|
1672
|
+
#
|
1673
|
+
# @!attribute [rw] data_view_id
|
1674
|
+
# The unique identifier for the Dataview that you want to access.
|
1675
|
+
# @return [String]
|
1676
|
+
#
|
1677
|
+
# @!attribute [rw] dataset_id
|
1678
|
+
# The unique identifier for the Dataset.
|
1679
|
+
# @return [String]
|
1680
|
+
#
|
1681
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2020-07-13/GetExternalDataViewAccessDetailsRequest AWS API Documentation
|
1682
|
+
#
|
1683
|
+
class GetExternalDataViewAccessDetailsRequest < Struct.new(
|
1684
|
+
:data_view_id,
|
1685
|
+
:dataset_id)
|
1686
|
+
SENSITIVE = []
|
1687
|
+
include Aws::Structure
|
1688
|
+
end
|
1689
|
+
|
1690
|
+
# @!attribute [rw] credentials
|
1691
|
+
# The credentials required to access the external Dataview from the S3
|
1692
|
+
# location.
|
1693
|
+
# @return [Types::AwsCredentials]
|
1694
|
+
#
|
1695
|
+
# @!attribute [rw] s3_location
|
1696
|
+
# The location where the external Dataview is stored.
|
1697
|
+
# @return [Types::S3Location]
|
1698
|
+
#
|
1699
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2020-07-13/GetExternalDataViewAccessDetailsResponse AWS API Documentation
|
1700
|
+
#
|
1701
|
+
class GetExternalDataViewAccessDetailsResponse < Struct.new(
|
1702
|
+
:credentials,
|
1703
|
+
:s3_location)
|
1704
|
+
SENSITIVE = []
|
1705
|
+
include Aws::Structure
|
1706
|
+
end
|
1707
|
+
|
1628
1708
|
# @note When making an API call, you may pass GetPermissionGroupRequest
|
1629
1709
|
# data as a hash:
|
1630
1710
|
#
|
@@ -2250,13 +2330,20 @@ module Aws::FinSpaceData
|
|
2250
2330
|
# Indicates the permissions that are granted to a specific group for
|
2251
2331
|
# accessing the FinSpace application.
|
2252
2332
|
#
|
2333
|
+
# When assigning application permissions, be aware that the permission
|
2334
|
+
# `ManageUsersAndGroups` allows users to grant themselves or others
|
2335
|
+
# access to any functionality in their FinSpace environment's
|
2336
|
+
# application. It should only be granted to trusted users.
|
2337
|
+
#
|
2253
2338
|
# * `CreateDataset` – Group members can create new datasets.
|
2254
2339
|
#
|
2255
2340
|
# * `ManageClusters` – Group members can manage Apache Spark clusters
|
2256
2341
|
# from FinSpace notebooks.
|
2257
2342
|
#
|
2258
2343
|
# * `ManageUsersAndGroups` – Group members can manage users and
|
2259
|
-
# permission groups.
|
2344
|
+
# permission groups. This is a privileged permission that allows
|
2345
|
+
# users to grant themselves or others access to any functionality in
|
2346
|
+
# the application. It should only be granted to trusted users.
|
2260
2347
|
#
|
2261
2348
|
# * `ManageAttributeSets` – Group members can manage attribute sets.
|
2262
2349
|
#
|
@@ -2489,6 +2576,26 @@ module Aws::FinSpaceData
|
|
2489
2576
|
include Aws::Structure
|
2490
2577
|
end
|
2491
2578
|
|
2579
|
+
# The location of an external Dataview in an S3 bucket.
|
2580
|
+
#
|
2581
|
+
# @!attribute [rw] bucket
|
2582
|
+
# The name of the S3 bucket.
|
2583
|
+
# @return [String]
|
2584
|
+
#
|
2585
|
+
# @!attribute [rw] key
|
2586
|
+
# The path of the folder, within the S3 bucket that contains the
|
2587
|
+
# Dataset.
|
2588
|
+
# @return [String]
|
2589
|
+
#
|
2590
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2020-07-13/S3Location AWS API Documentation
|
2591
|
+
#
|
2592
|
+
class S3Location < Struct.new(
|
2593
|
+
:bucket,
|
2594
|
+
:key)
|
2595
|
+
SENSITIVE = []
|
2596
|
+
include Aws::Structure
|
2597
|
+
end
|
2598
|
+
|
2492
2599
|
# Definition for a schema on a tabular Dataset.
|
2493
2600
|
#
|
2494
2601
|
# @note When making an API call, you may pass SchemaDefinition
|
@@ -2796,13 +2903,20 @@ module Aws::FinSpaceData
|
|
2796
2903
|
# The permissions that are granted to a specific group for accessing
|
2797
2904
|
# the FinSpace application.
|
2798
2905
|
#
|
2906
|
+
# When assigning application permissions, be aware that the permission
|
2907
|
+
# `ManageUsersAndGroups` allows users to grant themselves or others
|
2908
|
+
# access to any functionality in their FinSpace environment's
|
2909
|
+
# application. It should only be granted to trusted users.
|
2910
|
+
#
|
2799
2911
|
# * `CreateDataset` – Group members can create new datasets.
|
2800
2912
|
#
|
2801
2913
|
# * `ManageClusters` – Group members can manage Apache Spark clusters
|
2802
2914
|
# from FinSpace notebooks.
|
2803
2915
|
#
|
2804
2916
|
# * `ManageUsersAndGroups` – Group members can manage users and
|
2805
|
-
# permission groups.
|
2917
|
+
# permission groups. This is a privileged permission that allows
|
2918
|
+
# users to grant themselves or others access to any functionality in
|
2919
|
+
# the application. It should only be granted to trusted users.
|
2806
2920
|
#
|
2807
2921
|
# * `ManageAttributeSets` – Group members can manage attribute sets.
|
2808
2922
|
#
|
data/lib/aws-sdk-finspacedata.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-finspacedata
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.17.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: 2022-06-
|
11
|
+
date: 2022-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|