aws-sdk-finspacedata 1.18.0 → 1.19.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7f87f3565f88ea8f8df60d84d2d69195d9684c8062d8948772cc986e71764526
4
- data.tar.gz: df9e5c0344e8d2370f9e67fcd4a9ebe6400fc7b366b812f180bc9d26fcd3e8a5
3
+ metadata.gz: 3e3128f3b3e5a995d9c5215ed20aeaf530e55de1d1ca4429a1f5f4104f3ced33
4
+ data.tar.gz: 8ba222ffb4a1e6ab712c465973db4f8c6a2de890d18d83609021178c494116e0
5
5
  SHA512:
6
- metadata.gz: 24bf36b4984ff17aea1e9ea2e132c8dbabb9c470f2c92037199df400b8c9272ffc42e87001f3edea9f4ae34d53d3746685994f9f9c1ee0dd38d4c386c0f39cc8
7
- data.tar.gz: 99e1230a718e407f0f95c58624f2ddf9835a2f5b956ede562d2ece9bd794f2cfcd20bebf0744be4d174cfcfad859941c598bebc498d9021d1c4734b17e6478f7
6
+ metadata.gz: 9f1f004a83a99cccfde6a9abce56b5087d794b879a5b90a47167adb9eff9f6f4cf6993be4d178a3660befa79871ac39f52ad01f7680d1d68056cf6e3c330148f
7
+ data.tar.gz: e43cadec5911ac8335ce36b68334434df2d0e58d7ba5c06b8f52241f015a8e2a50e90cdf2b88a367fa797a40047e117ca14f7e1306029ef2fee975959498f22f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.19.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.18.0 (2022-10-25)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.18.0
1
+ 1.19.0
@@ -2097,7 +2097,7 @@ module Aws::FinSpaceData
2097
2097
  params: params,
2098
2098
  config: config)
2099
2099
  context[:gem_name] = 'aws-sdk-finspacedata'
2100
- context[:gem_version] = '1.18.0'
2100
+ context[:gem_version] = '1.19.0'
2101
2101
  Seahorse::Client::Request.new(handlers, context)
2102
2102
  end
2103
2103
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::FinSpaceData
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://finspace-api-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://finspace-api-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://finspace-api.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://finspace-api.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2ZpbnNwYWNlLWFwaS1maXBzLntSZWdpb259
77
- LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3Bl
78
- cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0s
79
- eyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sg
80
- YXJlIGVuYWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBw
81
- b3J0IG9uZSBvciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlv
82
- bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVz
83
- ZUZJUFMifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25k
84
- aXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7
85
- ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3Vs
86
- dCJ9LCJzdXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMi
87
- Olt7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJj
88
- b25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9maW5z
89
- cGFjZS1hcGktZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1
90
- ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoi
91
- ZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBT
92
- IGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBv
93
- cnQgRklQUyIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJm
94
- biI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3Rh
95
- Y2sifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
96
- b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZu
97
- IjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9
98
- LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUiLCJydWxl
99
- cyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBz
100
- Oi8vZmluc3BhY2UtYXBpLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVh
101
- bFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7
102
- fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJy
103
- b3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24g
104
- ZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19
105
- LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8v
106
- Zmluc3BhY2UtYXBpLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3Vm
107
- Zml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJl
108
- bmRwb2ludCJ9XX1dfQ==
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -23,15 +23,6 @@ module Aws::FinSpaceData
23
23
  include Aws::Structure
24
24
  end
25
25
 
26
- # @note When making an API call, you may pass AssociateUserToPermissionGroupRequest
27
- # data as a hash:
28
- #
29
- # {
30
- # permission_group_id: "PermissionGroupId", # required
31
- # user_id: "UserId", # required
32
- # client_token: "ClientToken",
33
- # }
34
- #
35
26
  # @!attribute [rw] permission_group_id
36
27
  # The unique identifier for the permission group.
37
28
  # @return [String]
@@ -243,15 +234,6 @@ module Aws::FinSpaceData
243
234
 
244
235
  # The definition of a column in a tabular Dataset.
245
236
  #
246
- # @note When making an API call, you may pass ColumnDefinition
247
- # data as a hash:
248
- #
249
- # {
250
- # data_type: "STRING", # accepts STRING, CHAR, INTEGER, TINYINT, SMALLINT, BIGINT, FLOAT, DOUBLE, DATE, DATETIME, BOOLEAN, BINARY
251
- # column_name: "ColumnName",
252
- # column_description: "ColumnDescription",
253
- # }
254
- #
255
237
  # @!attribute [rw] data_type
256
238
  # Data type of a column.
257
239
  #
@@ -317,21 +299,6 @@ module Aws::FinSpaceData
317
299
 
318
300
  # The request for a CreateChangeset operation.
319
301
  #
320
- # @note When making an API call, you may pass CreateChangesetRequest
321
- # data as a hash:
322
- #
323
- # {
324
- # client_token: "ClientToken",
325
- # dataset_id: "DatasetId", # required
326
- # change_type: "REPLACE", # required, accepts REPLACE, APPEND, MODIFY
327
- # source_params: { # required
328
- # "StringMapKey" => "StringMapValue",
329
- # },
330
- # format_params: { # required
331
- # "StringMapKey" => "StringMapValue",
332
- # },
333
- # }
334
- #
335
302
  # @!attribute [rw] client_token
336
303
  # A token that ensures idempotency. This token expires in 10 minutes.
337
304
  #
@@ -448,25 +415,6 @@ module Aws::FinSpaceData
448
415
 
449
416
  # Request for creating a data view.
450
417
  #
451
- # @note When making an API call, you may pass CreateDataViewRequest
452
- # data as a hash:
453
- #
454
- # {
455
- # client_token: "ClientToken",
456
- # dataset_id: "DatasetId", # required
457
- # auto_update: false,
458
- # sort_columns: ["StringValueLength1to255"],
459
- # partition_columns: ["StringValueLength1to255"],
460
- # as_of_timestamp: 1,
461
- # destination_type_params: { # required
462
- # destination_type: "DataViewDestinationType", # required
463
- # s3_destination_export_file_format: "PARQUET", # accepts PARQUET, DELIMITED_TEXT
464
- # s3_destination_export_file_format_options: {
465
- # "StringMapKey" => "StringMapValue",
466
- # },
467
- # },
468
- # }
469
- #
470
418
  # @!attribute [rw] client_token
471
419
  # A token that ensures idempotency. This token expires in 10 minutes.
472
420
  #
@@ -535,42 +483,6 @@ module Aws::FinSpaceData
535
483
 
536
484
  # The request for a CreateDataset operation
537
485
  #
538
- # @note When making an API call, you may pass CreateDatasetRequest
539
- # data as a hash:
540
- #
541
- # {
542
- # client_token: "ClientToken",
543
- # dataset_title: "DatasetTitle", # required
544
- # kind: "TABULAR", # required, accepts TABULAR, NON_TABULAR
545
- # dataset_description: "DatasetDescription",
546
- # owner_info: {
547
- # name: "OwnerName",
548
- # phone_number: "PhoneNumber",
549
- # email: "Email",
550
- # },
551
- # permission_group_params: { # required
552
- # permission_group_id: "PermissionGroupId",
553
- # dataset_permissions: [
554
- # {
555
- # permission: "StringValueLength1to250",
556
- # },
557
- # ],
558
- # },
559
- # alias: "AliasString",
560
- # schema_definition: {
561
- # tabular_schema_config: {
562
- # columns: [
563
- # {
564
- # data_type: "STRING", # accepts STRING, CHAR, INTEGER, TINYINT, SMALLINT, BIGINT, FLOAT, DOUBLE, DATE, DATETIME, BOOLEAN, BINARY
565
- # column_name: "ColumnName",
566
- # column_description: "ColumnDescription",
567
- # },
568
- # ],
569
- # primary_key_columns: ["ColumnName"],
570
- # },
571
- # },
572
- # }
573
- #
574
486
  # @!attribute [rw] client_token
575
487
  # A token that ensures idempotency. This token expires in 10 minutes.
576
488
  #
@@ -639,16 +551,6 @@ module Aws::FinSpaceData
639
551
  include Aws::Structure
640
552
  end
641
553
 
642
- # @note When making an API call, you may pass CreatePermissionGroupRequest
643
- # data as a hash:
644
- #
645
- # {
646
- # name: "PermissionGroupName", # required
647
- # description: "PermissionGroupDescription",
648
- # application_permissions: ["CreateDataset"], # required, accepts CreateDataset, ManageClusters, ManageUsersAndGroups, ManageAttributeSets, ViewAuditData, AccessNotebooks, GetTemporaryCredentials
649
- # client_token: "ClientToken",
650
- # }
651
- #
652
554
  # @!attribute [rw] name
653
555
  # The name of the permission group.
654
556
  # @return [String]
@@ -717,19 +619,6 @@ module Aws::FinSpaceData
717
619
  include Aws::Structure
718
620
  end
719
621
 
720
- # @note When making an API call, you may pass CreateUserRequest
721
- # data as a hash:
722
- #
723
- # {
724
- # email_address: "Email", # required
725
- # type: "SUPER_USER", # required, accepts SUPER_USER, APP_USER
726
- # first_name: "FirstName",
727
- # last_name: "LastName",
728
- # api_access: "ENABLED", # accepts ENABLED, DISABLED
729
- # api_access_principal_arn: "RoleArn",
730
- # client_token: "ClientToken",
731
- # }
732
- #
733
622
  # @!attribute [rw] email_address
734
623
  # The email address of the user that you want to register. The email
735
624
  # address serves as a uniquer identifier for each user and cannot be
@@ -832,17 +721,6 @@ module Aws::FinSpaceData
832
721
 
833
722
  # Structure for the Dataview destination type parameters.
834
723
  #
835
- # @note When making an API call, you may pass DataViewDestinationTypeParams
836
- # data as a hash:
837
- #
838
- # {
839
- # destination_type: "DataViewDestinationType", # required
840
- # s3_destination_export_file_format: "PARQUET", # accepts PARQUET, DELIMITED_TEXT
841
- # s3_destination_export_file_format_options: {
842
- # "StringMapKey" => "StringMapValue",
843
- # },
844
- # }
845
- #
846
724
  # @!attribute [rw] destination_type
847
725
  # Destination type for a Dataview.
848
726
  #
@@ -1081,15 +959,6 @@ module Aws::FinSpaceData
1081
959
 
1082
960
  # A structure for Dataset owner info.
1083
961
  #
1084
- # @note When making an API call, you may pass DatasetOwnerInfo
1085
- # data as a hash:
1086
- #
1087
- # {
1088
- # name: "OwnerName",
1089
- # phone_number: "PhoneNumber",
1090
- # email: "Email",
1091
- # }
1092
- #
1093
962
  # @!attribute [rw] name
1094
963
  # The name of the Dataset owner.
1095
964
  # @return [String]
@@ -1114,14 +983,6 @@ module Aws::FinSpaceData
1114
983
 
1115
984
  # The request for a DeleteDataset operation.
1116
985
  #
1117
- # @note When making an API call, you may pass DeleteDatasetRequest
1118
- # data as a hash:
1119
- #
1120
- # {
1121
- # client_token: "ClientToken",
1122
- # dataset_id: "DatasetId", # required
1123
- # }
1124
- #
1125
986
  # @!attribute [rw] client_token
1126
987
  # A token that ensures idempotency. This token expires in 10 minutes.
1127
988
  #
@@ -1156,14 +1017,6 @@ module Aws::FinSpaceData
1156
1017
  include Aws::Structure
1157
1018
  end
1158
1019
 
1159
- # @note When making an API call, you may pass DeletePermissionGroupRequest
1160
- # data as a hash:
1161
- #
1162
- # {
1163
- # permission_group_id: "PermissionGroupId", # required
1164
- # client_token: "ClientToken",
1165
- # }
1166
- #
1167
1020
  # @!attribute [rw] permission_group_id
1168
1021
  # The unique identifier for the permission group that you want to
1169
1022
  # delete.
@@ -1197,14 +1050,6 @@ module Aws::FinSpaceData
1197
1050
  include Aws::Structure
1198
1051
  end
1199
1052
 
1200
- # @note When making an API call, you may pass DisableUserRequest
1201
- # data as a hash:
1202
- #
1203
- # {
1204
- # user_id: "UserId", # required
1205
- # client_token: "ClientToken",
1206
- # }
1207
- #
1208
1053
  # @!attribute [rw] user_id
1209
1054
  # The unique identifier for the user account that you want to disable.
1210
1055
  # @return [String]
@@ -1237,15 +1082,6 @@ module Aws::FinSpaceData
1237
1082
  include Aws::Structure
1238
1083
  end
1239
1084
 
1240
- # @note When making an API call, you may pass DisassociateUserFromPermissionGroupRequest
1241
- # data as a hash:
1242
- #
1243
- # {
1244
- # permission_group_id: "PermissionGroupId", # required
1245
- # user_id: "UserId", # required
1246
- # client_token: "ClientToken",
1247
- # }
1248
- #
1249
1085
  # @!attribute [rw] permission_group_id
1250
1086
  # The unique identifier for the permission group.
1251
1087
  # @return [String]
@@ -1283,14 +1119,6 @@ module Aws::FinSpaceData
1283
1119
  include Aws::Structure
1284
1120
  end
1285
1121
 
1286
- # @note When making an API call, you may pass EnableUserRequest
1287
- # data as a hash:
1288
- #
1289
- # {
1290
- # user_id: "UserId", # required
1291
- # client_token: "ClientToken",
1292
- # }
1293
- #
1294
1122
  # @!attribute [rw] user_id
1295
1123
  # The unique identifier for the user account that you want to enable.
1296
1124
  # @return [String]
@@ -1325,14 +1153,6 @@ module Aws::FinSpaceData
1325
1153
 
1326
1154
  # Request to describe a changeset.
1327
1155
  #
1328
- # @note When making an API call, you may pass GetChangesetRequest
1329
- # data as a hash:
1330
- #
1331
- # {
1332
- # dataset_id: "DatasetId", # required
1333
- # changeset_id: "ChangesetId", # required
1334
- # }
1335
- #
1336
1156
  # @!attribute [rw] dataset_id
1337
1157
  # The unique identifier for the FinSpace Dataset where the Changeset
1338
1158
  # is created.
@@ -1446,14 +1266,6 @@ module Aws::FinSpaceData
1446
1266
  # Request for retrieving a data view detail. Grouped / accessible within
1447
1267
  # a dataset by its dataset id.
1448
1268
  #
1449
- # @note When making an API call, you may pass GetDataViewRequest
1450
- # data as a hash:
1451
- #
1452
- # {
1453
- # data_view_id: "DataViewId", # required
1454
- # dataset_id: "DatasetId", # required
1455
- # }
1456
- #
1457
1269
  # @!attribute [rw] data_view_id
1458
1270
  # The unique identifier for the Dataview.
1459
1271
  # @return [String]
@@ -1567,13 +1379,6 @@ module Aws::FinSpaceData
1567
1379
 
1568
1380
  # Request for the GetDataset operation.
1569
1381
  #
1570
- # @note When making an API call, you may pass GetDatasetRequest
1571
- # data as a hash:
1572
- #
1573
- # {
1574
- # dataset_id: "StringValueLength1to255", # required
1575
- # }
1576
- #
1577
1382
  # @!attribute [rw] dataset_id
1578
1383
  # The unique identifier for a Dataset.
1579
1384
  # @return [String]
@@ -1662,14 +1467,6 @@ module Aws::FinSpaceData
1662
1467
  include Aws::Structure
1663
1468
  end
1664
1469
 
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
1470
  # @!attribute [rw] data_view_id
1674
1471
  # The unique identifier for the Dataview that you want to access.
1675
1472
  # @return [String]
@@ -1705,13 +1502,6 @@ module Aws::FinSpaceData
1705
1502
  include Aws::Structure
1706
1503
  end
1707
1504
 
1708
- # @note When making an API call, you may pass GetPermissionGroupRequest
1709
- # data as a hash:
1710
- #
1711
- # {
1712
- # permission_group_id: "PermissionGroupId", # required
1713
- # }
1714
- #
1715
1505
  # @!attribute [rw] permission_group_id
1716
1506
  # The unique identifier for the permission group.
1717
1507
  # @return [String]
@@ -1738,14 +1528,6 @@ module Aws::FinSpaceData
1738
1528
 
1739
1529
  # Request for GetProgrammaticAccessCredentials operation
1740
1530
  #
1741
- # @note When making an API call, you may pass GetProgrammaticAccessCredentialsRequest
1742
- # data as a hash:
1743
- #
1744
- # {
1745
- # duration_in_minutes: 1,
1746
- # environment_id: "IdType", # required
1747
- # }
1748
- #
1749
1531
  # @!attribute [rw] duration_in_minutes
1750
1532
  # The time duration in which the credentials remain valid.
1751
1533
  # @return [Integer]
@@ -1782,13 +1564,6 @@ module Aws::FinSpaceData
1782
1564
  include Aws::Structure
1783
1565
  end
1784
1566
 
1785
- # @note When making an API call, you may pass GetUserRequest
1786
- # data as a hash:
1787
- #
1788
- # {
1789
- # user_id: "UserId", # required
1790
- # }
1791
- #
1792
1567
  # @!attribute [rw] user_id
1793
1568
  # The unique identifier of the user to get data for.
1794
1569
  # @return [String]
@@ -1905,13 +1680,6 @@ module Aws::FinSpaceData
1905
1680
  include Aws::Structure
1906
1681
  end
1907
1682
 
1908
- # @note When making an API call, you may pass GetWorkingLocationRequest
1909
- # data as a hash:
1910
- #
1911
- # {
1912
- # location_type: "INGESTION", # accepts INGESTION, SAGEMAKER
1913
- # }
1914
- #
1915
1683
  # @!attribute [rw] location_type
1916
1684
  # Specify the type of the working location.
1917
1685
  #
@@ -1983,15 +1751,6 @@ module Aws::FinSpaceData
1983
1751
 
1984
1752
  # Request to ListChangesetsRequest. It exposes minimal query filters.
1985
1753
  #
1986
- # @note When making an API call, you may pass ListChangesetsRequest
1987
- # data as a hash:
1988
- #
1989
- # {
1990
- # dataset_id: "DatasetId", # required
1991
- # max_results: 1,
1992
- # next_token: "PaginationToken",
1993
- # }
1994
- #
1995
1754
  # @!attribute [rw] dataset_id
1996
1755
  # The unique identifier for the FinSpace Dataset to which the
1997
1756
  # Changeset belongs.
@@ -2037,15 +1796,6 @@ module Aws::FinSpaceData
2037
1796
 
2038
1797
  # Request for a list data views.
2039
1798
  #
2040
- # @note When making an API call, you may pass ListDataViewsRequest
2041
- # data as a hash:
2042
- #
2043
- # {
2044
- # dataset_id: "DatasetId", # required
2045
- # next_token: "PaginationToken",
2046
- # max_results: 1,
2047
- # }
2048
- #
2049
1799
  # @!attribute [rw] dataset_id
2050
1800
  # The unique identifier of the Dataset for which to retrieve
2051
1801
  # Dataviews.
@@ -2088,14 +1838,6 @@ module Aws::FinSpaceData
2088
1838
 
2089
1839
  # Request for the ListDatasets operation.
2090
1840
  #
2091
- # @note When making an API call, you may pass ListDatasetsRequest
2092
- # data as a hash:
2093
- #
2094
- # {
2095
- # next_token: "PaginationToken",
2096
- # max_results: 1,
2097
- # }
2098
- #
2099
1841
  # @!attribute [rw] next_token
2100
1842
  # A token that indicates where a results page should begin.
2101
1843
  # @return [String]
@@ -2132,15 +1874,6 @@ module Aws::FinSpaceData
2132
1874
  include Aws::Structure
2133
1875
  end
2134
1876
 
2135
- # @note When making an API call, you may pass ListPermissionGroupsByUserRequest
2136
- # data as a hash:
2137
- #
2138
- # {
2139
- # user_id: "UserId", # required
2140
- # next_token: "PaginationToken",
2141
- # max_results: 1, # required
2142
- # }
2143
- #
2144
1877
  # @!attribute [rw] user_id
2145
1878
  # The unique identifier for the user.
2146
1879
  # @return [String]
@@ -2180,14 +1913,6 @@ module Aws::FinSpaceData
2180
1913
  include Aws::Structure
2181
1914
  end
2182
1915
 
2183
- # @note When making an API call, you may pass ListPermissionGroupsRequest
2184
- # data as a hash:
2185
- #
2186
- # {
2187
- # next_token: "PaginationToken",
2188
- # max_results: 1, # required
2189
- # }
2190
- #
2191
1916
  # @!attribute [rw] next_token
2192
1917
  # A token that indicates where a results page should begin.
2193
1918
  # @return [String]
@@ -2222,15 +1947,6 @@ module Aws::FinSpaceData
2222
1947
  include Aws::Structure
2223
1948
  end
2224
1949
 
2225
- # @note When making an API call, you may pass ListUsersByPermissionGroupRequest
2226
- # data as a hash:
2227
- #
2228
- # {
2229
- # permission_group_id: "PermissionGroupId", # required
2230
- # next_token: "PaginationToken",
2231
- # max_results: 1, # required
2232
- # }
2233
- #
2234
1950
  # @!attribute [rw] permission_group_id
2235
1951
  # The unique identifier for the permission group.
2236
1952
  # @return [String]
@@ -2270,14 +1986,6 @@ module Aws::FinSpaceData
2270
1986
  include Aws::Structure
2271
1987
  end
2272
1988
 
2273
- # @note When making an API call, you may pass ListUsersRequest
2274
- # data as a hash:
2275
- #
2276
- # {
2277
- # next_token: "PaginationToken",
2278
- # max_results: 1, # required
2279
- # }
2280
- #
2281
1989
  # @!attribute [rw] next_token
2282
1990
  # A token that indicates where a results page should begin.
2283
1991
  # @return [String]
@@ -2436,18 +2144,6 @@ module Aws::FinSpaceData
2436
2144
  # \{"permission": "AddDatasetData"\}, \{"permission":
2437
2145
  # "EditDatasetMetadata"\}, \{"permission": "DeleteDataset"\} ] \} `
2438
2146
  #
2439
- # @note When making an API call, you may pass PermissionGroupParams
2440
- # data as a hash:
2441
- #
2442
- # {
2443
- # permission_group_id: "PermissionGroupId",
2444
- # dataset_permissions: [
2445
- # {
2446
- # permission: "StringValueLength1to250",
2447
- # },
2448
- # ],
2449
- # }
2450
- #
2451
2147
  # @!attribute [rw] permission_group_id
2452
2148
  # The unique identifier for the `PermissionGroup`.
2453
2149
  # @return [String]
@@ -2465,14 +2161,6 @@ module Aws::FinSpaceData
2465
2161
  include Aws::Structure
2466
2162
  end
2467
2163
 
2468
- # @note When making an API call, you may pass ResetUserPasswordRequest
2469
- # data as a hash:
2470
- #
2471
- # {
2472
- # user_id: "UserId", # required
2473
- # client_token: "ClientToken",
2474
- # }
2475
- #
2476
2164
  # @!attribute [rw] user_id
2477
2165
  # The unique identifier of the user that a temporary password is
2478
2166
  # requested for.
@@ -2557,13 +2245,6 @@ module Aws::FinSpaceData
2557
2245
  #
2558
2246
  # [1]: https://docs.aws.amazon.com/finspace/latest/userguide/managing-user-permissions.html#supported-dataset-permissions
2559
2247
  #
2560
- # @note When making an API call, you may pass ResourcePermission
2561
- # data as a hash:
2562
- #
2563
- # {
2564
- # permission: "StringValueLength1to250",
2565
- # }
2566
- #
2567
2248
  # @!attribute [rw] permission
2568
2249
  # Permission for a resource.
2569
2250
  # @return [String]
@@ -2598,20 +2279,6 @@ module Aws::FinSpaceData
2598
2279
 
2599
2280
  # Definition for a schema on a tabular Dataset.
2600
2281
  #
2601
- # @note When making an API call, you may pass SchemaDefinition
2602
- # data as a hash:
2603
- #
2604
- # {
2605
- # columns: [
2606
- # {
2607
- # data_type: "STRING", # accepts STRING, CHAR, INTEGER, TINYINT, SMALLINT, BIGINT, FLOAT, DOUBLE, DATE, DATETIME, BOOLEAN, BINARY
2608
- # column_name: "ColumnName",
2609
- # column_description: "ColumnDescription",
2610
- # },
2611
- # ],
2612
- # primary_key_columns: ["ColumnName"],
2613
- # }
2614
- #
2615
2282
  # @!attribute [rw] columns
2616
2283
  # List of column definitions.
2617
2284
  # @return [Array<Types::ColumnDefinition>]
@@ -2631,22 +2298,6 @@ module Aws::FinSpaceData
2631
2298
 
2632
2299
  # A union of schema types.
2633
2300
  #
2634
- # @note When making an API call, you may pass SchemaUnion
2635
- # data as a hash:
2636
- #
2637
- # {
2638
- # tabular_schema_config: {
2639
- # columns: [
2640
- # {
2641
- # data_type: "STRING", # accepts STRING, CHAR, INTEGER, TINYINT, SMALLINT, BIGINT, FLOAT, DOUBLE, DATE, DATETIME, BOOLEAN, BINARY
2642
- # column_name: "ColumnName",
2643
- # column_description: "ColumnDescription",
2644
- # },
2645
- # ],
2646
- # primary_key_columns: ["ColumnName"],
2647
- # },
2648
- # }
2649
- #
2650
2301
  # @!attribute [rw] tabular_schema_config
2651
2302
  # The configuration for a schema on a tabular Dataset.
2652
2303
  # @return [Types::SchemaDefinition]
@@ -2667,21 +2318,6 @@ module Aws::FinSpaceData
2667
2318
 
2668
2319
  # Request to update an existing changeset.
2669
2320
  #
2670
- # @note When making an API call, you may pass UpdateChangesetRequest
2671
- # data as a hash:
2672
- #
2673
- # {
2674
- # client_token: "ClientToken",
2675
- # dataset_id: "DatasetId", # required
2676
- # changeset_id: "ChangesetId", # required
2677
- # source_params: { # required
2678
- # "StringMapKey" => "StringMapValue",
2679
- # },
2680
- # format_params: { # required
2681
- # "StringMapKey" => "StringMapValue",
2682
- # },
2683
- # }
2684
- #
2685
2321
  # @!attribute [rw] client_token
2686
2322
  # A token that ensures idempotency. This token expires in 10 minutes.
2687
2323
  #
@@ -2789,30 +2425,6 @@ module Aws::FinSpaceData
2789
2425
 
2790
2426
  # The request for an UpdateDataset operation
2791
2427
  #
2792
- # @note When making an API call, you may pass UpdateDatasetRequest
2793
- # data as a hash:
2794
- #
2795
- # {
2796
- # client_token: "ClientToken",
2797
- # dataset_id: "DatasetId", # required
2798
- # dataset_title: "DatasetTitle", # required
2799
- # kind: "TABULAR", # required, accepts TABULAR, NON_TABULAR
2800
- # dataset_description: "DatasetDescription",
2801
- # alias: "AliasString",
2802
- # schema_definition: {
2803
- # tabular_schema_config: {
2804
- # columns: [
2805
- # {
2806
- # data_type: "STRING", # accepts STRING, CHAR, INTEGER, TINYINT, SMALLINT, BIGINT, FLOAT, DOUBLE, DATE, DATETIME, BOOLEAN, BINARY
2807
- # column_name: "ColumnName",
2808
- # column_description: "ColumnDescription",
2809
- # },
2810
- # ],
2811
- # primary_key_columns: ["ColumnName"],
2812
- # },
2813
- # },
2814
- # }
2815
- #
2816
2428
  # @!attribute [rw] client_token
2817
2429
  # A token that ensures idempotency. This token expires in 10 minutes.
2818
2430
  #
@@ -2876,17 +2488,6 @@ module Aws::FinSpaceData
2876
2488
  include Aws::Structure
2877
2489
  end
2878
2490
 
2879
- # @note When making an API call, you may pass UpdatePermissionGroupRequest
2880
- # data as a hash:
2881
- #
2882
- # {
2883
- # permission_group_id: "PermissionGroupId", # required
2884
- # name: "PermissionGroupName",
2885
- # description: "PermissionGroupDescription",
2886
- # application_permissions: ["CreateDataset"], # accepts CreateDataset, ManageClusters, ManageUsersAndGroups, ManageAttributeSets, ViewAuditData, AccessNotebooks, GetTemporaryCredentials
2887
- # client_token: "ClientToken",
2888
- # }
2889
- #
2890
2491
  # @!attribute [rw] permission_group_id
2891
2492
  # The unique identifier for the permission group to update.
2892
2493
  # @return [String]
@@ -2960,19 +2561,6 @@ module Aws::FinSpaceData
2960
2561
  include Aws::Structure
2961
2562
  end
2962
2563
 
2963
- # @note When making an API call, you may pass UpdateUserRequest
2964
- # data as a hash:
2965
- #
2966
- # {
2967
- # user_id: "UserId", # required
2968
- # type: "SUPER_USER", # accepts SUPER_USER, APP_USER
2969
- # first_name: "FirstName",
2970
- # last_name: "LastName",
2971
- # api_access: "ENABLED", # accepts ENABLED, DISABLED
2972
- # api_access_principal_arn: "RoleArn",
2973
- # client_token: "ClientToken",
2974
- # }
2975
- #
2976
2564
  # @!attribute [rw] user_id
2977
2565
  # The unique identifier for the user account to update.
2978
2566
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-finspacedata/customizations'
52
52
  # @!group service
53
53
  module Aws::FinSpaceData
54
54
 
55
- GEM_VERSION = '1.18.0'
55
+ GEM_VERSION = '1.19.0'
56
56
 
57
57
  end
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.18.0
4
+ version: 1.19.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-10-25 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core