aws-sdk-finspacedata 1.25.0 → 1.26.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-finspacedata/client.rb +18 -12
- data/lib/aws-sdk-finspacedata/client_api.rb +1 -1
- data/lib/aws-sdk-finspacedata/types.rb +49 -49
- 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: 2e59d9a91b28e21c7c6bfec31f97dca676d57c24660bf23b729e1dd6dd8984a7
|
4
|
+
data.tar.gz: b5d18bf2d458d166b9a2ba72921361149b4e69aa3d7698aad5e840243a6a2d16
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e9d0ce3983d4df797f4b7c4f67ca804baec70611bd535aac9e9c0ebaa856e6b0244751f4853a7d6a7c86ad18a7de5d390e6938c2c1a1fc8200f330e5590da055
|
7
|
+
data.tar.gz: 4d7f284bc7147da86fb8fa03599c10f5cedd70d186c3e11e874bba8b3ee84d2efdca88e3032db32d580b2a62aabd843ee656b0a8560e8469e573478f4704131c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.26.0 (2023-09-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adding sensitive trait to attributes. Change max SessionDuration from 720 to 60. Correct "ApiAccess" attribute to "apiAccess" to maintain consistency between APIs.
|
8
|
+
|
4
9
|
1.25.0 (2023-09-19)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.26.0
|
@@ -390,8 +390,8 @@ module Aws::FinSpaceData
|
|
390
390
|
|
391
391
|
# @!group API Operations
|
392
392
|
|
393
|
-
# Adds a user
|
394
|
-
#
|
393
|
+
# Adds a user to a permission group to grant permissions for actions a
|
394
|
+
# user can perform in FinSpace.
|
395
395
|
#
|
396
396
|
# @option params [required, String] :permission_group_id
|
397
397
|
# The unique identifier for the permission group.
|
@@ -909,7 +909,7 @@ module Aws::FinSpaceData
|
|
909
909
|
# specified user.
|
910
910
|
#
|
911
911
|
# @option params [required, String] :user_id
|
912
|
-
# The unique identifier for the user
|
912
|
+
# The unique identifier for the user that you want to deactivate.
|
913
913
|
#
|
914
914
|
# @option params [String] :client_token
|
915
915
|
# A token that ensures idempotency. This token expires in 10 minutes.
|
@@ -941,7 +941,7 @@ module Aws::FinSpaceData
|
|
941
941
|
req.send_request(options)
|
942
942
|
end
|
943
943
|
|
944
|
-
# Removes a user
|
944
|
+
# Removes a user from a permission group.
|
945
945
|
#
|
946
946
|
# @option params [required, String] :permission_group_id
|
947
947
|
# The unique identifier for the permission group.
|
@@ -984,7 +984,7 @@ module Aws::FinSpaceData
|
|
984
984
|
# API.
|
985
985
|
#
|
986
986
|
# @option params [required, String] :user_id
|
987
|
-
# The unique identifier for the user
|
987
|
+
# The unique identifier for the user that you want to activate.
|
988
988
|
#
|
989
989
|
# @option params [String] :client_token
|
990
990
|
# A token that ensures idempotency. This token expires in 10 minutes.
|
@@ -1266,7 +1266,13 @@ module Aws::FinSpaceData
|
|
1266
1266
|
req.send_request(options)
|
1267
1267
|
end
|
1268
1268
|
|
1269
|
-
# Request programmatic credentials to use with FinSpace SDK.
|
1269
|
+
# Request programmatic credentials to use with FinSpace SDK. For more
|
1270
|
+
# information, see [Step 2. Access credentials programmatically using
|
1271
|
+
# IAM access key id and secret access key][1].
|
1272
|
+
#
|
1273
|
+
#
|
1274
|
+
#
|
1275
|
+
# [1]: https://docs.aws.amazon.com/finspace/latest/data-api/fs-using-the-finspace-api.html#accessing-credentials
|
1270
1276
|
#
|
1271
1277
|
# @option params [Integer] :duration_in_minutes
|
1272
1278
|
# The time duration in which the credentials remain valid.
|
@@ -1609,7 +1615,7 @@ module Aws::FinSpaceData
|
|
1609
1615
|
end
|
1610
1616
|
|
1611
1617
|
# Lists all the permission groups that are associated with a specific
|
1612
|
-
# user
|
1618
|
+
# user.
|
1613
1619
|
#
|
1614
1620
|
# @option params [required, String] :user_id
|
1615
1621
|
# The unique identifier for the user.
|
@@ -1650,7 +1656,7 @@ module Aws::FinSpaceData
|
|
1650
1656
|
req.send_request(options)
|
1651
1657
|
end
|
1652
1658
|
|
1653
|
-
# Lists all available
|
1659
|
+
# Lists all available users in FinSpace.
|
1654
1660
|
#
|
1655
1661
|
# @option params [String] :next_token
|
1656
1662
|
# A token that indicates where a results page should begin.
|
@@ -2033,11 +2039,11 @@ module Aws::FinSpaceData
|
|
2033
2039
|
req.send_request(options)
|
2034
2040
|
end
|
2035
2041
|
|
2036
|
-
# Modifies the details of the specified user
|
2037
|
-
#
|
2042
|
+
# Modifies the details of the specified user. You cannot update the
|
2043
|
+
# `userId` for a user.
|
2038
2044
|
#
|
2039
2045
|
# @option params [required, String] :user_id
|
2040
|
-
# The unique identifier for the user
|
2046
|
+
# The unique identifier for the user that you want to update.
|
2041
2047
|
#
|
2042
2048
|
# @option params [String] :type
|
2043
2049
|
# The option to indicate the type of user.
|
@@ -2117,7 +2123,7 @@ module Aws::FinSpaceData
|
|
2117
2123
|
params: params,
|
2118
2124
|
config: config)
|
2119
2125
|
context[:gem_name] = 'aws-sdk-finspacedata'
|
2120
|
-
context[:gem_version] = '1.
|
2126
|
+
context[:gem_version] = '1.26.0'
|
2121
2127
|
Seahorse::Client::Request.new(handlers, context)
|
2122
2128
|
end
|
2123
2129
|
|
@@ -281,7 +281,7 @@ module Aws::FinSpaceData
|
|
281
281
|
CreateUserRequest.add_member(:type, Shapes::ShapeRef.new(shape: UserType, required: true, location_name: "type"))
|
282
282
|
CreateUserRequest.add_member(:first_name, Shapes::ShapeRef.new(shape: FirstName, location_name: "firstName"))
|
283
283
|
CreateUserRequest.add_member(:last_name, Shapes::ShapeRef.new(shape: LastName, location_name: "lastName"))
|
284
|
-
CreateUserRequest.add_member(:api_access, Shapes::ShapeRef.new(shape: ApiAccess, location_name: "
|
284
|
+
CreateUserRequest.add_member(:api_access, Shapes::ShapeRef.new(shape: ApiAccess, location_name: "apiAccess"))
|
285
285
|
CreateUserRequest.add_member(:api_access_principal_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "apiAccessPrincipalArn"))
|
286
286
|
CreateUserRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
287
287
|
CreateUserRequest.struct_class = Types::CreateUserRequest
|
@@ -1051,7 +1051,7 @@ module Aws::FinSpaceData
|
|
1051
1051
|
end
|
1052
1052
|
|
1053
1053
|
# @!attribute [rw] user_id
|
1054
|
-
# The unique identifier for the user
|
1054
|
+
# The unique identifier for the user that you want to deactivate.
|
1055
1055
|
# @return [String]
|
1056
1056
|
#
|
1057
1057
|
# @!attribute [rw] client_token
|
@@ -1071,7 +1071,7 @@ module Aws::FinSpaceData
|
|
1071
1071
|
end
|
1072
1072
|
|
1073
1073
|
# @!attribute [rw] user_id
|
1074
|
-
# The unique identifier for the
|
1074
|
+
# The unique identifier for the deactivated user.
|
1075
1075
|
# @return [String]
|
1076
1076
|
#
|
1077
1077
|
# @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2020-07-13/DisableUserResponse AWS API Documentation
|
@@ -1120,7 +1120,7 @@ module Aws::FinSpaceData
|
|
1120
1120
|
end
|
1121
1121
|
|
1122
1122
|
# @!attribute [rw] user_id
|
1123
|
-
# The unique identifier for the user
|
1123
|
+
# The unique identifier for the user that you want to activate.
|
1124
1124
|
# @return [String]
|
1125
1125
|
#
|
1126
1126
|
# @!attribute [rw] client_token
|
@@ -1140,7 +1140,7 @@ module Aws::FinSpaceData
|
|
1140
1140
|
end
|
1141
1141
|
|
1142
1142
|
# @!attribute [rw] user_id
|
1143
|
-
# The unique identifier for the
|
1143
|
+
# The unique identifier for the active user.
|
1144
1144
|
# @return [String]
|
1145
1145
|
#
|
1146
1146
|
# @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2020-07-13/EnableUserResponse AWS API Documentation
|
@@ -1498,7 +1498,7 @@ module Aws::FinSpaceData
|
|
1498
1498
|
class GetExternalDataViewAccessDetailsResponse < Struct.new(
|
1499
1499
|
:credentials,
|
1500
1500
|
:s3_location)
|
1501
|
-
SENSITIVE = []
|
1501
|
+
SENSITIVE = [:credentials]
|
1502
1502
|
include Aws::Structure
|
1503
1503
|
end
|
1504
1504
|
|
@@ -1560,7 +1560,7 @@ module Aws::FinSpaceData
|
|
1560
1560
|
class GetProgrammaticAccessCredentialsResponse < Struct.new(
|
1561
1561
|
:credentials,
|
1562
1562
|
:duration_in_minutes)
|
1563
|
-
SENSITIVE = []
|
1563
|
+
SENSITIVE = [:credentials]
|
1564
1564
|
include Aws::Structure
|
1565
1565
|
end
|
1566
1566
|
|
@@ -1577,17 +1577,17 @@ module Aws::FinSpaceData
|
|
1577
1577
|
end
|
1578
1578
|
|
1579
1579
|
# @!attribute [rw] user_id
|
1580
|
-
# The unique identifier for the user
|
1580
|
+
# The unique identifier for the user that is retrieved.
|
1581
1581
|
# @return [String]
|
1582
1582
|
#
|
1583
1583
|
# @!attribute [rw] status
|
1584
|
-
# The current status of the user
|
1584
|
+
# The current status of the user.
|
1585
1585
|
#
|
1586
|
-
# * `CREATING` – The
|
1586
|
+
# * `CREATING` – The creation is in progress.
|
1587
1587
|
#
|
1588
|
-
# * `ENABLED` – The user
|
1588
|
+
# * `ENABLED` – The user is created and is currently active.
|
1589
1589
|
#
|
1590
|
-
# * `DISABLED` – The user
|
1590
|
+
# * `DISABLED` – The user is currently inactive.
|
1591
1591
|
# @return [String]
|
1592
1592
|
#
|
1593
1593
|
# @!attribute [rw] first_name
|
@@ -1636,22 +1636,22 @@ module Aws::FinSpaceData
|
|
1636
1636
|
# @return [String]
|
1637
1637
|
#
|
1638
1638
|
# @!attribute [rw] create_time
|
1639
|
-
# The timestamp at which the user
|
1640
|
-
#
|
1639
|
+
# The timestamp at which the user was created in FinSpace. The value
|
1640
|
+
# is determined as epoch time in milliseconds.
|
1641
1641
|
# @return [Integer]
|
1642
1642
|
#
|
1643
1643
|
# @!attribute [rw] last_enabled_time
|
1644
|
-
# Describes the last time the user
|
1644
|
+
# Describes the last time the user was activated. The value is
|
1645
1645
|
# determined as epoch time in milliseconds.
|
1646
1646
|
# @return [Integer]
|
1647
1647
|
#
|
1648
1648
|
# @!attribute [rw] last_disabled_time
|
1649
|
-
# Describes the last time the user
|
1649
|
+
# Describes the last time the user was deactivated. The value is
|
1650
1650
|
# determined as epoch time in milliseconds.
|
1651
1651
|
# @return [Integer]
|
1652
1652
|
#
|
1653
1653
|
# @!attribute [rw] last_modified_time
|
1654
|
-
# Describes the last time the user
|
1654
|
+
# Describes the last time the user details were updated. The value is
|
1655
1655
|
# determined as epoch time in milliseconds.
|
1656
1656
|
# @return [Integer]
|
1657
1657
|
#
|
@@ -2004,7 +2004,7 @@ module Aws::FinSpaceData
|
|
2004
2004
|
end
|
2005
2005
|
|
2006
2006
|
# @!attribute [rw] users
|
2007
|
-
# A list of all the
|
2007
|
+
# A list of all the users.
|
2008
2008
|
# @return [Array<Types::User>]
|
2009
2009
|
#
|
2010
2010
|
# @!attribute [rw] next_token
|
@@ -2075,12 +2075,12 @@ module Aws::FinSpaceData
|
|
2075
2075
|
# @return [Integer]
|
2076
2076
|
#
|
2077
2077
|
# @!attribute [rw] membership_status
|
2078
|
-
# Indicates the status of the user
|
2078
|
+
# Indicates the status of the user within a permission group.
|
2079
2079
|
#
|
2080
|
-
# * `ADDITION_IN_PROGRESS` – The user
|
2081
|
-
#
|
2080
|
+
# * `ADDITION_IN_PROGRESS` – The user is currently being added to the
|
2081
|
+
# permission group.
|
2082
2082
|
#
|
2083
|
-
# * `ADDITION_SUCCESS` – The user
|
2083
|
+
# * `ADDITION_SUCCESS` – The user is successfully added to the
|
2084
2084
|
# permission group.
|
2085
2085
|
#
|
2086
2086
|
# * `REMOVAL_IN_PROGRESS` – The user is currently being removed from
|
@@ -2101,7 +2101,7 @@ module Aws::FinSpaceData
|
|
2101
2101
|
include Aws::Structure
|
2102
2102
|
end
|
2103
2103
|
|
2104
|
-
# The structure of a permission group associated with a user
|
2104
|
+
# The structure of a permission group associated with a user.
|
2105
2105
|
#
|
2106
2106
|
# @!attribute [rw] permission_group_id
|
2107
2107
|
# The unique identifier for the permission group.
|
@@ -2112,12 +2112,12 @@ module Aws::FinSpaceData
|
|
2112
2112
|
# @return [String]
|
2113
2113
|
#
|
2114
2114
|
# @!attribute [rw] membership_status
|
2115
|
-
# Indicates the status of the user
|
2115
|
+
# Indicates the status of the user within a permission group.
|
2116
2116
|
#
|
2117
|
-
# * `ADDITION_IN_PROGRESS` – The user
|
2118
|
-
#
|
2117
|
+
# * `ADDITION_IN_PROGRESS` – The user is currently being added to the
|
2118
|
+
# permission group.
|
2119
2119
|
#
|
2120
|
-
# * `ADDITION_SUCCESS` – The user
|
2120
|
+
# * `ADDITION_SUCCESS` – The user is successfully added to the
|
2121
2121
|
# permission group.
|
2122
2122
|
#
|
2123
2123
|
# * `REMOVAL_IN_PROGRESS` – The user is currently being removed from
|
@@ -2188,8 +2188,8 @@ module Aws::FinSpaceData
|
|
2188
2188
|
# @return [String]
|
2189
2189
|
#
|
2190
2190
|
# @!attribute [rw] temporary_password
|
2191
|
-
# A randomly generated temporary password for the requested user
|
2192
|
-
#
|
2191
|
+
# A randomly generated temporary password for the requested user. This
|
2192
|
+
# password expires in 7 days.
|
2193
2193
|
# @return [String]
|
2194
2194
|
#
|
2195
2195
|
# @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2020-07-13/ResetUserPasswordResponse AWS API Documentation
|
@@ -2562,7 +2562,7 @@ module Aws::FinSpaceData
|
|
2562
2562
|
end
|
2563
2563
|
|
2564
2564
|
# @!attribute [rw] user_id
|
2565
|
-
# The unique identifier for the user
|
2565
|
+
# The unique identifier for the user that you want to update.
|
2566
2566
|
# @return [String]
|
2567
2567
|
#
|
2568
2568
|
# @!attribute [rw] type
|
@@ -2623,7 +2623,7 @@ module Aws::FinSpaceData
|
|
2623
2623
|
end
|
2624
2624
|
|
2625
2625
|
# @!attribute [rw] user_id
|
2626
|
-
# The unique identifier of the updated user
|
2626
|
+
# The unique identifier of the updated user.
|
2627
2627
|
# @return [String]
|
2628
2628
|
#
|
2629
2629
|
# @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2020-07-13/UpdateUserResponse AWS API Documentation
|
@@ -2634,20 +2634,20 @@ module Aws::FinSpaceData
|
|
2634
2634
|
include Aws::Structure
|
2635
2635
|
end
|
2636
2636
|
|
2637
|
-
# The details of the user
|
2637
|
+
# The details of the user.
|
2638
2638
|
#
|
2639
2639
|
# @!attribute [rw] user_id
|
2640
2640
|
# The unique identifier for the user.
|
2641
2641
|
# @return [String]
|
2642
2642
|
#
|
2643
2643
|
# @!attribute [rw] status
|
2644
|
-
# The current status of the user
|
2644
|
+
# The current status of the user.
|
2645
2645
|
#
|
2646
|
-
# * `CREATING` – The user
|
2646
|
+
# * `CREATING` – The user creation is in progress.
|
2647
2647
|
#
|
2648
|
-
# * `ENABLED` – The user
|
2648
|
+
# * `ENABLED` – The user is created and is currently active.
|
2649
2649
|
#
|
2650
|
-
# * `DISABLED` – The user
|
2650
|
+
# * `DISABLED` – The user is currently inactive.
|
2651
2651
|
# @return [String]
|
2652
2652
|
#
|
2653
2653
|
# @!attribute [rw] first_name
|
@@ -2692,22 +2692,22 @@ module Aws::FinSpaceData
|
|
2692
2692
|
# @return [String]
|
2693
2693
|
#
|
2694
2694
|
# @!attribute [rw] create_time
|
2695
|
-
# The timestamp at which the user
|
2696
|
-
#
|
2695
|
+
# The timestamp at which the user was created in FinSpace. The value
|
2696
|
+
# is determined as epoch time in milliseconds.
|
2697
2697
|
# @return [Integer]
|
2698
2698
|
#
|
2699
2699
|
# @!attribute [rw] last_enabled_time
|
2700
|
-
# Describes the last time the user
|
2700
|
+
# Describes the last time the user was activated. The value is
|
2701
2701
|
# determined as epoch time in milliseconds.
|
2702
2702
|
# @return [Integer]
|
2703
2703
|
#
|
2704
2704
|
# @!attribute [rw] last_disabled_time
|
2705
|
-
# Describes the last time the user
|
2705
|
+
# Describes the last time the user was deactivated. The value is
|
2706
2706
|
# determined as epoch time in milliseconds.
|
2707
2707
|
# @return [Integer]
|
2708
2708
|
#
|
2709
2709
|
# @!attribute [rw] last_modified_time
|
2710
|
-
# Describes the last time the user
|
2710
|
+
# Describes the last time the user was updated. The value is
|
2711
2711
|
# determined as epoch time in milliseconds.
|
2712
2712
|
# @return [Integer]
|
2713
2713
|
#
|
@@ -2736,20 +2736,20 @@ module Aws::FinSpaceData
|
|
2736
2736
|
include Aws::Structure
|
2737
2737
|
end
|
2738
2738
|
|
2739
|
-
# The structure of a user
|
2739
|
+
# The structure of a user associated with a permission group.
|
2740
2740
|
#
|
2741
2741
|
# @!attribute [rw] user_id
|
2742
2742
|
# The unique identifier for the user.
|
2743
2743
|
# @return [String]
|
2744
2744
|
#
|
2745
2745
|
# @!attribute [rw] status
|
2746
|
-
# The current status of the user
|
2746
|
+
# The current status of the user.
|
2747
2747
|
#
|
2748
|
-
# * `CREATING` – The user
|
2748
|
+
# * `CREATING` – The user creation is in progress.
|
2749
2749
|
#
|
2750
|
-
# * `ENABLED` – The user
|
2750
|
+
# * `ENABLED` – The user is created and is currently active.
|
2751
2751
|
#
|
2752
|
-
# * `DISABLED` – The user
|
2752
|
+
# * `DISABLED` – The user is currently inactive.
|
2753
2753
|
# @return [String]
|
2754
2754
|
#
|
2755
2755
|
# @!attribute [rw] first_name
|
@@ -2790,12 +2790,12 @@ module Aws::FinSpaceData
|
|
2790
2790
|
# @return [String]
|
2791
2791
|
#
|
2792
2792
|
# @!attribute [rw] membership_status
|
2793
|
-
# Indicates the status of the user
|
2793
|
+
# Indicates the status of the user within a permission group.
|
2794
2794
|
#
|
2795
|
-
# * `ADDITION_IN_PROGRESS` – The user
|
2796
|
-
#
|
2795
|
+
# * `ADDITION_IN_PROGRESS` – The user is currently being added to the
|
2796
|
+
# permission group.
|
2797
2797
|
#
|
2798
|
-
# * `ADDITION_SUCCESS` – The user
|
2798
|
+
# * `ADDITION_SUCCESS` – The user is successfully added to the
|
2799
2799
|
# permission group.
|
2800
2800
|
#
|
2801
2801
|
# * `REMOVAL_IN_PROGRESS` – The user is currently being removed from
|
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.26.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: 2023-09-
|
11
|
+
date: 2023-09-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|