aws-sdk-finspacedata 1.8.0 → 1.9.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: ea0b0ac4c3e38e5e75092e67bc40467874ba7fabbbf2ed7b4019fc7bcd6c2434
4
- data.tar.gz: 535e3af4d120d45be80a1afbec9ca349a5e0591fe32c583acebba5e5df029636
3
+ metadata.gz: 68060bda6df18caac869ca93290c0f92958d6ba1a3c8df6038f622c775186e92
4
+ data.tar.gz: 84b3b03d44fd0d9853d39cd3f54357dfcd564e13feb89212ea584097cb603d91
5
5
  SHA512:
6
- metadata.gz: e67e11e174d6e641b8c3857067fc743352185a3580232c34768d4a6d6f3d92b78abf21dd867e71bf5614f7d9b0465e5ee6b48624ba459faf42d54e83fc68ff25
7
- data.tar.gz: d0c354aeb330d0fed073ec9a6cc31574b5b0d38ffa3a54099df52199d81f148ef94751551a68115199c9176a247bfbdd4ad44c6806947a4b0302b9fdfe073952
6
+ metadata.gz: 792522c0973e795325324851fb7ad8ebc957be457daa3de17a2ce6483b4f536e74d01b19df870f21a163d7ffd36d65c9817e4a2da7386e1c25829cd5d7c8e0c0
7
+ data.tar.gz: 4f73986a46a3f8ee6742c5be806bd05dacb8c515fe9ada59f74b34ab889360bd396c94327c4e86146cae70d940a47a723197b5015e95897a5f1c66b565abd659
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.9.0 (2021-12-20)
5
+ ------------------
6
+
7
+ * Feature - Make dataset description optional and allow s3 export for dataviews
8
+
4
9
  1.8.0 (2021-11-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.8.0
1
+ 1.9.0
@@ -464,6 +464,10 @@ module Aws::FinSpaceData
464
464
  # as_of_timestamp: 1,
465
465
  # destination_type_params: { # required
466
466
  # destination_type: "DataViewDestinationType", # required
467
+ # s3_destination_export_file_format: "PARQUET", # accepts PARQUET, DELIMITED_TEXT
468
+ # s3_destination_export_file_format_options: {
469
+ # "StringMapKey" => "StringMapValue",
470
+ # },
467
471
  # },
468
472
  # })
469
473
  #
@@ -499,7 +503,7 @@ module Aws::FinSpaceData
499
503
  #
500
504
  # * `NON_TABULAR` - Data is structured in a non-tabular format.
501
505
  #
502
- # @option params [required, String] :dataset_description
506
+ # @option params [String] :dataset_description
503
507
  # Description of a Dataset.
504
508
  #
505
509
  # @option params [Types::DatasetOwnerInfo] :owner_info
@@ -508,7 +512,7 @@ module Aws::FinSpaceData
508
512
  # @option params [required, Types::PermissionGroupParams] :permission_group_params
509
513
  # Permission group parameters for Dataset permissions.
510
514
  #
511
- # @option params [required, String] :alias
515
+ # @option params [String] :alias
512
516
  # The unique resource identifier for a Dataset.
513
517
  #
514
518
  # @option params [Types::SchemaUnion] :schema_definition
@@ -524,7 +528,7 @@ module Aws::FinSpaceData
524
528
  # client_token: "ClientToken",
525
529
  # dataset_title: "DatasetTitle", # required
526
530
  # kind: "TABULAR", # required, accepts TABULAR, NON_TABULAR
527
- # dataset_description: "DatasetDescription", # required
531
+ # dataset_description: "DatasetDescription",
528
532
  # owner_info: {
529
533
  # name: "OwnerName",
530
534
  # phone_number: "PhoneNumber",
@@ -538,7 +542,7 @@ module Aws::FinSpaceData
538
542
  # },
539
543
  # ],
540
544
  # },
541
- # alias: "AliasString", # required
545
+ # alias: "AliasString",
542
546
  # schema_definition: {
543
547
  # tabular_schema_config: {
544
548
  # columns: [
@@ -622,6 +626,7 @@ module Aws::FinSpaceData
622
626
  # * {Types::GetChangesetResponse#status #status} => String
623
627
  # * {Types::GetChangesetResponse#error_info #error_info} => Types::ChangesetErrorInfo
624
628
  # * {Types::GetChangesetResponse#active_until_timestamp #active_until_timestamp} => Integer
629
+ # * {Types::GetChangesetResponse#active_from_timestamp #active_from_timestamp} => Integer
625
630
  # * {Types::GetChangesetResponse#updates_changeset_id #updates_changeset_id} => String
626
631
  # * {Types::GetChangesetResponse#updated_by_changeset_id #updated_by_changeset_id} => String
627
632
  #
@@ -647,6 +652,7 @@ module Aws::FinSpaceData
647
652
  # resp.error_info.error_message #=> String
648
653
  # resp.error_info.error_category #=> String, one of "VALIDATION", "SERVICE_QUOTA_EXCEEDED", "ACCESS_DENIED", "RESOURCE_NOT_FOUND", "THROTTLING", "INTERNAL_SERVICE_EXCEPTION", "CANCELLED", "USER_RECOVERABLE"
649
654
  # resp.active_until_timestamp #=> Integer
655
+ # resp.active_from_timestamp #=> Integer
650
656
  # resp.updates_changeset_id #=> String
651
657
  # resp.updated_by_changeset_id #=> String
652
658
  #
@@ -705,6 +711,9 @@ module Aws::FinSpaceData
705
711
  # resp.data_view_id #=> String
706
712
  # resp.data_view_arn #=> String
707
713
  # resp.destination_type_params.destination_type #=> String
714
+ # resp.destination_type_params.s3_destination_export_file_format #=> String, one of "PARQUET", "DELIMITED_TEXT"
715
+ # resp.destination_type_params.s3_destination_export_file_format_options #=> Hash
716
+ # resp.destination_type_params.s3_destination_export_file_format_options["StringMapKey"] #=> String
708
717
  # resp.status #=> String, one of "RUNNING", "STARTING", "FAILED", "CANCELLED", "TIMEOUT", "SUCCESS", "PENDING", "FAILED_CLEANUP_FAILED"
709
718
  #
710
719
  # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2020-07-13/GetDataView AWS API Documentation
@@ -888,6 +897,7 @@ module Aws::FinSpaceData
888
897
  # resp.changesets[0].error_info.error_message #=> String
889
898
  # resp.changesets[0].error_info.error_category #=> String, one of "VALIDATION", "SERVICE_QUOTA_EXCEEDED", "ACCESS_DENIED", "RESOURCE_NOT_FOUND", "THROTTLING", "INTERNAL_SERVICE_EXCEPTION", "CANCELLED", "USER_RECOVERABLE"
890
899
  # resp.changesets[0].active_until_timestamp #=> Integer
900
+ # resp.changesets[0].active_from_timestamp #=> Integer
891
901
  # resp.changesets[0].updates_changeset_id #=> String
892
902
  # resp.changesets[0].updated_by_changeset_id #=> String
893
903
  # resp.next_token #=> String
@@ -943,6 +953,9 @@ module Aws::FinSpaceData
943
953
  # resp.data_views[0].error_info.error_message #=> String
944
954
  # resp.data_views[0].error_info.error_category #=> String, one of "VALIDATION", "SERVICE_QUOTA_EXCEEDED", "ACCESS_DENIED", "RESOURCE_NOT_FOUND", "THROTTLING", "INTERNAL_SERVICE_EXCEPTION", "CANCELLED", "USER_RECOVERABLE"
945
955
  # resp.data_views[0].destination_type_properties.destination_type #=> String
956
+ # resp.data_views[0].destination_type_properties.s3_destination_export_file_format #=> String, one of "PARQUET", "DELIMITED_TEXT"
957
+ # resp.data_views[0].destination_type_properties.s3_destination_export_file_format_options #=> Hash
958
+ # resp.data_views[0].destination_type_properties.s3_destination_export_file_format_options["StringMapKey"] #=> String
946
959
  # resp.data_views[0].auto_update #=> Boolean
947
960
  # resp.data_views[0].create_time #=> Integer
948
961
  # resp.data_views[0].last_modified_time #=> Integer
@@ -1087,7 +1100,7 @@ module Aws::FinSpaceData
1087
1100
  # @option params [String] :dataset_description
1088
1101
  # A description for the Dataset.
1089
1102
  #
1090
- # @option params [required, String] :alias
1103
+ # @option params [String] :alias
1091
1104
  # The unique resource identifier for a Dataset.
1092
1105
  #
1093
1106
  # @option params [Types::SchemaUnion] :schema_definition
@@ -1105,7 +1118,7 @@ module Aws::FinSpaceData
1105
1118
  # dataset_title: "DatasetTitle", # required
1106
1119
  # kind: "TABULAR", # required, accepts TABULAR, NON_TABULAR
1107
1120
  # dataset_description: "DatasetDescription",
1108
- # alias: "AliasString", # required
1121
+ # alias: "AliasString",
1109
1122
  # schema_definition: {
1110
1123
  # tabular_schema_config: {
1111
1124
  # columns: [
@@ -1146,7 +1159,7 @@ module Aws::FinSpaceData
1146
1159
  params: params,
1147
1160
  config: config)
1148
1161
  context[:gem_name] = 'aws-sdk-finspacedata'
1149
- context[:gem_version] = '1.8.0'
1162
+ context[:gem_version] = '1.9.0'
1150
1163
  Seahorse::Client::Request.new(handlers, context)
1151
1164
  end
1152
1165
 
@@ -59,6 +59,7 @@ module Aws::FinSpaceData
59
59
  Email = Shapes::StringShape.new(name: 'Email')
60
60
  ErrorCategory = Shapes::StringShape.new(name: 'ErrorCategory')
61
61
  ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
62
+ ExportFileFormat = Shapes::StringShape.new(name: 'ExportFileFormat')
62
63
  FormatParams = Shapes::MapShape.new(name: 'FormatParams')
63
64
  GetChangesetRequest = Shapes::StructureShape.new(name: 'GetChangesetRequest')
64
65
  GetChangesetResponse = Shapes::StructureShape.new(name: 'GetChangesetResponse')
@@ -90,6 +91,7 @@ module Aws::FinSpaceData
90
91
  ResourcePermission = Shapes::StructureShape.new(name: 'ResourcePermission')
91
92
  ResourcePermissionsList = Shapes::ListShape.new(name: 'ResourcePermissionsList')
92
93
  ResultLimit = Shapes::IntegerShape.new(name: 'ResultLimit')
94
+ S3DestinationFormatOptions = Shapes::MapShape.new(name: 'S3DestinationFormatOptions')
93
95
  SchemaDefinition = Shapes::StructureShape.new(name: 'SchemaDefinition')
94
96
  SchemaUnion = Shapes::StructureShape.new(name: 'SchemaUnion')
95
97
  SessionDuration = Shapes::IntegerShape.new(name: 'SessionDuration')
@@ -132,6 +134,7 @@ module Aws::FinSpaceData
132
134
  ChangesetSummary.add_member(:status, Shapes::ShapeRef.new(shape: IngestionStatus, location_name: "status"))
133
135
  ChangesetSummary.add_member(:error_info, Shapes::ShapeRef.new(shape: ChangesetErrorInfo, location_name: "errorInfo"))
134
136
  ChangesetSummary.add_member(:active_until_timestamp, Shapes::ShapeRef.new(shape: TimestampEpoch, location_name: "activeUntilTimestamp", metadata: {"box"=>true}))
137
+ ChangesetSummary.add_member(:active_from_timestamp, Shapes::ShapeRef.new(shape: TimestampEpoch, location_name: "activeFromTimestamp", metadata: {"box"=>true}))
135
138
  ChangesetSummary.add_member(:updates_changeset_id, Shapes::ShapeRef.new(shape: ChangesetId, location_name: "updatesChangesetId"))
136
139
  ChangesetSummary.add_member(:updated_by_changeset_id, Shapes::ShapeRef.new(shape: ChangesetId, location_name: "updatedByChangesetId"))
137
140
  ChangesetSummary.struct_class = Types::ChangesetSummary
@@ -175,10 +178,10 @@ module Aws::FinSpaceData
175
178
  CreateDatasetRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
176
179
  CreateDatasetRequest.add_member(:dataset_title, Shapes::ShapeRef.new(shape: DatasetTitle, required: true, location_name: "datasetTitle"))
177
180
  CreateDatasetRequest.add_member(:kind, Shapes::ShapeRef.new(shape: DatasetKind, required: true, location_name: "kind"))
178
- CreateDatasetRequest.add_member(:dataset_description, Shapes::ShapeRef.new(shape: DatasetDescription, required: true, location_name: "datasetDescription"))
181
+ CreateDatasetRequest.add_member(:dataset_description, Shapes::ShapeRef.new(shape: DatasetDescription, location_name: "datasetDescription"))
179
182
  CreateDatasetRequest.add_member(:owner_info, Shapes::ShapeRef.new(shape: DatasetOwnerInfo, location_name: "ownerInfo"))
180
183
  CreateDatasetRequest.add_member(:permission_group_params, Shapes::ShapeRef.new(shape: PermissionGroupParams, required: true, location_name: "permissionGroupParams"))
181
- CreateDatasetRequest.add_member(:alias, Shapes::ShapeRef.new(shape: AliasString, required: true, location_name: "alias"))
184
+ CreateDatasetRequest.add_member(:alias, Shapes::ShapeRef.new(shape: AliasString, location_name: "alias"))
182
185
  CreateDatasetRequest.add_member(:schema_definition, Shapes::ShapeRef.new(shape: SchemaUnion, location_name: "schemaDefinition"))
183
186
  CreateDatasetRequest.struct_class = Types::CreateDatasetRequest
184
187
 
@@ -191,6 +194,8 @@ module Aws::FinSpaceData
191
194
  Credentials.struct_class = Types::Credentials
192
195
 
193
196
  DataViewDestinationTypeParams.add_member(:destination_type, Shapes::ShapeRef.new(shape: DataViewDestinationType, required: true, location_name: "destinationType"))
197
+ DataViewDestinationTypeParams.add_member(:s3_destination_export_file_format, Shapes::ShapeRef.new(shape: ExportFileFormat, location_name: "s3DestinationExportFileFormat"))
198
+ DataViewDestinationTypeParams.add_member(:s3_destination_export_file_format_options, Shapes::ShapeRef.new(shape: S3DestinationFormatOptions, location_name: "s3DestinationExportFileFormatOptions"))
194
199
  DataViewDestinationTypeParams.struct_class = Types::DataViewDestinationTypeParams
195
200
 
196
201
  DataViewErrorInfo.add_member(:error_message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "errorMessage"))
@@ -256,6 +261,7 @@ module Aws::FinSpaceData
256
261
  GetChangesetResponse.add_member(:status, Shapes::ShapeRef.new(shape: IngestionStatus, location_name: "status"))
257
262
  GetChangesetResponse.add_member(:error_info, Shapes::ShapeRef.new(shape: ChangesetErrorInfo, location_name: "errorInfo"))
258
263
  GetChangesetResponse.add_member(:active_until_timestamp, Shapes::ShapeRef.new(shape: TimestampEpoch, location_name: "activeUntilTimestamp", metadata: {"box"=>true}))
264
+ GetChangesetResponse.add_member(:active_from_timestamp, Shapes::ShapeRef.new(shape: TimestampEpoch, location_name: "activeFromTimestamp", metadata: {"box"=>true}))
259
265
  GetChangesetResponse.add_member(:updates_changeset_id, Shapes::ShapeRef.new(shape: ChangesetId, location_name: "updatesChangesetId"))
260
266
  GetChangesetResponse.add_member(:updated_by_changeset_id, Shapes::ShapeRef.new(shape: ChangesetId, location_name: "updatedByChangesetId"))
261
267
  GetChangesetResponse.struct_class = Types::GetChangesetResponse
@@ -355,6 +361,9 @@ module Aws::FinSpaceData
355
361
 
356
362
  ResourcePermissionsList.member = Shapes::ShapeRef.new(shape: ResourcePermission)
357
363
 
364
+ S3DestinationFormatOptions.key = Shapes::ShapeRef.new(shape: StringMapKey)
365
+ S3DestinationFormatOptions.value = Shapes::ShapeRef.new(shape: StringMapValue)
366
+
358
367
  SchemaDefinition.add_member(:columns, Shapes::ShapeRef.new(shape: ColumnList, location_name: "columns"))
359
368
  SchemaDefinition.add_member(:primary_key_columns, Shapes::ShapeRef.new(shape: ColumnNameList, location_name: "primaryKeyColumns"))
360
369
  SchemaDefinition.struct_class = Types::SchemaDefinition
@@ -385,7 +394,7 @@ module Aws::FinSpaceData
385
394
  UpdateDatasetRequest.add_member(:dataset_title, Shapes::ShapeRef.new(shape: DatasetTitle, required: true, location_name: "datasetTitle"))
386
395
  UpdateDatasetRequest.add_member(:kind, Shapes::ShapeRef.new(shape: DatasetKind, required: true, location_name: "kind"))
387
396
  UpdateDatasetRequest.add_member(:dataset_description, Shapes::ShapeRef.new(shape: DatasetDescription, location_name: "datasetDescription"))
388
- UpdateDatasetRequest.add_member(:alias, Shapes::ShapeRef.new(shape: AliasString, required: true, location_name: "alias"))
397
+ UpdateDatasetRequest.add_member(:alias, Shapes::ShapeRef.new(shape: AliasString, location_name: "alias"))
389
398
  UpdateDatasetRequest.add_member(:schema_definition, Shapes::ShapeRef.new(shape: SchemaUnion, location_name: "schemaDefinition"))
390
399
  UpdateDatasetRequest.struct_class = Types::UpdateDatasetRequest
391
400
 
@@ -130,6 +130,10 @@ module Aws::FinSpaceData
130
130
  # November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
131
131
  # @return [Integer]
132
132
  #
133
+ # @!attribute [rw] active_from_timestamp
134
+ # Milliseconds since UTC epoch
135
+ # @return [Integer]
136
+ #
133
137
  # @!attribute [rw] updates_changeset_id
134
138
  # The unique identifier of the Changeset that is updated.
135
139
  # @return [String]
@@ -151,6 +155,7 @@ module Aws::FinSpaceData
151
155
  :status,
152
156
  :error_info,
153
157
  :active_until_timestamp,
158
+ :active_from_timestamp,
154
159
  :updates_changeset_id,
155
160
  :updated_by_changeset_id)
156
161
  SENSITIVE = []
@@ -341,6 +346,10 @@ module Aws::FinSpaceData
341
346
  # as_of_timestamp: 1,
342
347
  # destination_type_params: { # required
343
348
  # destination_type: "DataViewDestinationType", # required
349
+ # s3_destination_export_file_format: "PARQUET", # accepts PARQUET, DELIMITED_TEXT
350
+ # s3_destination_export_file_format_options: {
351
+ # "StringMapKey" => "StringMapValue",
352
+ # },
344
353
  # },
345
354
  # }
346
355
  #
@@ -419,7 +428,7 @@ module Aws::FinSpaceData
419
428
  # client_token: "ClientToken",
420
429
  # dataset_title: "DatasetTitle", # required
421
430
  # kind: "TABULAR", # required, accepts TABULAR, NON_TABULAR
422
- # dataset_description: "DatasetDescription", # required
431
+ # dataset_description: "DatasetDescription",
423
432
  # owner_info: {
424
433
  # name: "OwnerName",
425
434
  # phone_number: "PhoneNumber",
@@ -433,7 +442,7 @@ module Aws::FinSpaceData
433
442
  # },
434
443
  # ],
435
444
  # },
436
- # alias: "AliasString", # required
445
+ # alias: "AliasString",
437
446
  # schema_definition: {
438
447
  # tabular_schema_config: {
439
448
  # columns: [
@@ -547,6 +556,10 @@ module Aws::FinSpaceData
547
556
  #
548
557
  # {
549
558
  # destination_type: "DataViewDestinationType", # required
559
+ # s3_destination_export_file_format: "PARQUET", # accepts PARQUET, DELIMITED_TEXT
560
+ # s3_destination_export_file_format_options: {
561
+ # "StringMapKey" => "StringMapValue",
562
+ # },
550
563
  # }
551
564
  #
552
565
  # @!attribute [rw] destination_type
@@ -557,10 +570,19 @@ module Aws::FinSpaceData
557
570
  # ^
558
571
  # @return [String]
559
572
  #
573
+ # @!attribute [rw] s3_destination_export_file_format
574
+ # Data View Export File Format
575
+ # @return [String]
576
+ #
577
+ # @!attribute [rw] s3_destination_export_file_format_options
578
+ # @return [Hash<String,String>]
579
+ #
560
580
  # @see http://docs.aws.amazon.com/goto/WebAPI/finspace-2020-07-13/DataViewDestinationTypeParams AWS API Documentation
561
581
  #
562
582
  class DataViewDestinationTypeParams < Struct.new(
563
- :destination_type)
583
+ :destination_type,
584
+ :s3_destination_export_file_format,
585
+ :s3_destination_export_file_format_options)
564
586
  SENSITIVE = []
565
587
  include Aws::Structure
566
588
  end
@@ -928,6 +950,10 @@ module Aws::FinSpaceData
928
950
  # November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
929
951
  # @return [Integer]
930
952
  #
953
+ # @!attribute [rw] active_from_timestamp
954
+ # Milliseconds since UTC epoch
955
+ # @return [Integer]
956
+ #
931
957
  # @!attribute [rw] updates_changeset_id
932
958
  # The unique identifier of the Changeset that is being updated.
933
959
  # @return [String]
@@ -949,6 +975,7 @@ module Aws::FinSpaceData
949
975
  :status,
950
976
  :error_info,
951
977
  :active_until_timestamp,
978
+ :active_from_timestamp,
952
979
  :updates_changeset_id,
953
980
  :updated_by_changeset_id)
954
981
  SENSITIVE = []
@@ -1665,7 +1692,7 @@ module Aws::FinSpaceData
1665
1692
  # dataset_title: "DatasetTitle", # required
1666
1693
  # kind: "TABULAR", # required, accepts TABULAR, NON_TABULAR
1667
1694
  # dataset_description: "DatasetDescription",
1668
- # alias: "AliasString", # required
1695
+ # alias: "AliasString",
1669
1696
  # schema_definition: {
1670
1697
  # tabular_schema_config: {
1671
1698
  # columns: [
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-finspacedata/customizations'
48
48
  # @!group service
49
49
  module Aws::FinSpaceData
50
50
 
51
- GEM_VERSION = '1.8.0'
51
+ GEM_VERSION = '1.9.0'
52
52
 
53
53
  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.8.0
4
+ version: 1.9.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: 2021-11-30 00:00:00.000000000 Z
11
+ date: 2021-12-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core