aws-sdk-quicksight 1.77.0 → 1.78.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: 96d3de4059f20711ec73dbb23a450b872549a3698870c42cb3af833be8e9a9a2
4
- data.tar.gz: 0521c3d20993b2d0beb45a4127f9c72a5510a881b546b57f4af22eb443f1cd4d
3
+ metadata.gz: 2cb85f00b56f24761049a73d242def4d3a645aeba42425f4784784bb84fc59d4
4
+ data.tar.gz: f6e8825d6599d95f7a8ec2358876960e360f4d313e659190dd8f4ef54c2dc537
5
5
  SHA512:
6
- metadata.gz: 8133777d81a1d85a444d47ecf134181e1fb964dc38975e1fd216dbab742a8fa01a6d258898ee573ae57863d6e27d1c0dcfad4f94db3a3d7360a791d08110e851
7
- data.tar.gz: 79a4c83580cd4a6d32b0d1f96eb50cb012c449a2294d0d281dacc8a4c8dfd249224621c2d75d854c4ffd001fa3665166ce63b3d661d42a095b9bb793e1373327
6
+ metadata.gz: a3a554397fed4cab6da6c82158fc1d135a06f1a5a725c217f1d717eb5fbdb97eb8907b28ee6dbca4ac9e4ccd94dde5f0041d28efccf408835c9829aa46062950
7
+ data.tar.gz: 9708925137a392f48e3c70d69fc592d9d36d217d1013b2ca537f2e8de7dee53b3358f41a988bc6eb47135ef35e7169bb1c88dd525de02e9adaffa36cc14df991
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.78.0 (2023-04-07)
5
+ ------------------
6
+
7
+ * Feature - This release has two changes: adding the OR condition to tag-based RLS rules in CreateDataSet and UpdateDataSet; adding RefreshSchedule and Incremental RefreshProperties operations for users to programmatically configure SPICE dataset ingestions.
8
+
4
9
  1.77.0 (2023-03-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.77.0
1
+ 1.78.0
@@ -1114,6 +1114,9 @@ module Aws::QuickSight
1114
1114
  # match_all_value: "SessionTagValue",
1115
1115
  # },
1116
1116
  # ],
1117
+ # tag_rule_configurations: [
1118
+ # ["SessionTagKey"],
1119
+ # ],
1117
1120
  # },
1118
1121
  # column_level_permission_rules: [
1119
1122
  # {
@@ -1906,6 +1909,63 @@ module Aws::QuickSight
1906
1909
  req.send_request(options)
1907
1910
  end
1908
1911
 
1912
+ # Creates a refresh schedule for a dataset. You can create up to 5
1913
+ # different schedules for a single dataset.
1914
+ #
1915
+ # @option params [required, String] :data_set_id
1916
+ # The ID of the dataset.
1917
+ #
1918
+ # @option params [required, String] :aws_account_id
1919
+ # The Amazon Web Services account ID.
1920
+ #
1921
+ # @option params [required, Types::RefreshSchedule] :schedule
1922
+ # The refresh schedule.
1923
+ #
1924
+ # @return [Types::CreateRefreshScheduleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1925
+ #
1926
+ # * {Types::CreateRefreshScheduleResponse#status #status} => Integer
1927
+ # * {Types::CreateRefreshScheduleResponse#request_id #request_id} => String
1928
+ # * {Types::CreateRefreshScheduleResponse#schedule_id #schedule_id} => String
1929
+ # * {Types::CreateRefreshScheduleResponse#arn #arn} => String
1930
+ #
1931
+ # @example Request syntax with placeholder values
1932
+ #
1933
+ # resp = client.create_refresh_schedule({
1934
+ # data_set_id: "ResourceId", # required
1935
+ # aws_account_id: "AwsAccountId", # required
1936
+ # schedule: { # required
1937
+ # schedule_id: "String", # required
1938
+ # schedule_frequency: { # required
1939
+ # interval: "MINUTE15", # required, accepts MINUTE15, MINUTE30, HOURLY, DAILY, WEEKLY, MONTHLY
1940
+ # refresh_on_day: {
1941
+ # day_of_week: "SUNDAY", # accepts SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY
1942
+ # day_of_month: "DayOfMonth",
1943
+ # },
1944
+ # timezone: "String",
1945
+ # time_of_the_day: "String",
1946
+ # },
1947
+ # start_after_date_time: Time.now,
1948
+ # refresh_type: "INCREMENTAL_REFRESH", # required, accepts INCREMENTAL_REFRESH, FULL_REFRESH
1949
+ # arn: "Arn",
1950
+ # },
1951
+ # })
1952
+ #
1953
+ # @example Response structure
1954
+ #
1955
+ # resp.status #=> Integer
1956
+ # resp.request_id #=> String
1957
+ # resp.schedule_id #=> String
1958
+ # resp.arn #=> String
1959
+ #
1960
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateRefreshSchedule AWS API Documentation
1961
+ #
1962
+ # @overload create_refresh_schedule(params = {})
1963
+ # @param [Hash] params ({})
1964
+ def create_refresh_schedule(params = {}, options = {})
1965
+ req = build_request(:create_refresh_schedule, params)
1966
+ req.send_request(options)
1967
+ end
1968
+
1909
1969
  # Creates a template either from a `TemplateDefinition` or from an
1910
1970
  # existing Amazon QuickSight analysis or template. You can use the
1911
1971
  # resulting template to create additional dashboards, templates, or
@@ -2467,6 +2527,40 @@ module Aws::QuickSight
2467
2527
  req.send_request(options)
2468
2528
  end
2469
2529
 
2530
+ # Deletes the dataset refresh properties of the dataset.
2531
+ #
2532
+ # @option params [required, String] :aws_account_id
2533
+ # The Amazon Web Services account ID.
2534
+ #
2535
+ # @option params [required, String] :data_set_id
2536
+ # The ID of the dataset.
2537
+ #
2538
+ # @return [Types::DeleteDataSetRefreshPropertiesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2539
+ #
2540
+ # * {Types::DeleteDataSetRefreshPropertiesResponse#request_id #request_id} => String
2541
+ # * {Types::DeleteDataSetRefreshPropertiesResponse#status #status} => Integer
2542
+ #
2543
+ # @example Request syntax with placeholder values
2544
+ #
2545
+ # resp = client.delete_data_set_refresh_properties({
2546
+ # aws_account_id: "AwsAccountId", # required
2547
+ # data_set_id: "ResourceId", # required
2548
+ # })
2549
+ #
2550
+ # @example Response structure
2551
+ #
2552
+ # resp.request_id #=> String
2553
+ # resp.status #=> Integer
2554
+ #
2555
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteDataSetRefreshProperties AWS API Documentation
2556
+ #
2557
+ # @overload delete_data_set_refresh_properties(params = {})
2558
+ # @param [Hash] params ({})
2559
+ def delete_data_set_refresh_properties(params = {}, options = {})
2560
+ req = build_request(:delete_data_set_refresh_properties, params)
2561
+ req.send_request(options)
2562
+ end
2563
+
2470
2564
  # Deletes the data source permanently. This operation breaks all the
2471
2565
  # datasets that reference the deleted data source.
2472
2566
  #
@@ -2756,6 +2850,48 @@ module Aws::QuickSight
2756
2850
  req.send_request(options)
2757
2851
  end
2758
2852
 
2853
+ # Deletes a refresh schedule from a dataset.
2854
+ #
2855
+ # @option params [required, String] :data_set_id
2856
+ # The ID of the dataset.
2857
+ #
2858
+ # @option params [required, String] :aws_account_id
2859
+ # The Amazon Web Services account ID.
2860
+ #
2861
+ # @option params [required, String] :schedule_id
2862
+ # The ID of the refresh schedule.
2863
+ #
2864
+ # @return [Types::DeleteRefreshScheduleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2865
+ #
2866
+ # * {Types::DeleteRefreshScheduleResponse#status #status} => Integer
2867
+ # * {Types::DeleteRefreshScheduleResponse#request_id #request_id} => String
2868
+ # * {Types::DeleteRefreshScheduleResponse#schedule_id #schedule_id} => String
2869
+ # * {Types::DeleteRefreshScheduleResponse#arn #arn} => String
2870
+ #
2871
+ # @example Request syntax with placeholder values
2872
+ #
2873
+ # resp = client.delete_refresh_schedule({
2874
+ # data_set_id: "ResourceId", # required
2875
+ # aws_account_id: "AwsAccountId", # required
2876
+ # schedule_id: "String", # required
2877
+ # })
2878
+ #
2879
+ # @example Response structure
2880
+ #
2881
+ # resp.status #=> Integer
2882
+ # resp.request_id #=> String
2883
+ # resp.schedule_id #=> String
2884
+ # resp.arn #=> String
2885
+ #
2886
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteRefreshSchedule AWS API Documentation
2887
+ #
2888
+ # @overload delete_refresh_schedule(params = {})
2889
+ # @param [Hash] params ({})
2890
+ def delete_refresh_schedule(params = {}, options = {})
2891
+ req = build_request(:delete_refresh_schedule, params)
2892
+ req.send_request(options)
2893
+ end
2894
+
2759
2895
  # Deletes a template.
2760
2896
  #
2761
2897
  # @option params [required, String] :aws_account_id
@@ -3651,6 +3787,9 @@ module Aws::QuickSight
3651
3787
  # resp.data_set.row_level_permission_tag_configuration.tag_rules[0].column_name #=> String
3652
3788
  # resp.data_set.row_level_permission_tag_configuration.tag_rules[0].tag_multi_value_delimiter #=> String
3653
3789
  # resp.data_set.row_level_permission_tag_configuration.tag_rules[0].match_all_value #=> String
3790
+ # resp.data_set.row_level_permission_tag_configuration.tag_rule_configurations #=> Array
3791
+ # resp.data_set.row_level_permission_tag_configuration.tag_rule_configurations[0] #=> Array
3792
+ # resp.data_set.row_level_permission_tag_configuration.tag_rule_configurations[0][0] #=> String
3654
3793
  # resp.data_set.column_level_permission_rules #=> Array
3655
3794
  # resp.data_set.column_level_permission_rules[0].principals #=> Array
3656
3795
  # resp.data_set.column_level_permission_rules[0].principals[0] #=> String
@@ -3717,6 +3856,44 @@ module Aws::QuickSight
3717
3856
  req.send_request(options)
3718
3857
  end
3719
3858
 
3859
+ # Describes the refresh properties of a dataset.
3860
+ #
3861
+ # @option params [required, String] :aws_account_id
3862
+ # The Amazon Web Services account ID.
3863
+ #
3864
+ # @option params [required, String] :data_set_id
3865
+ # The ID of the dataset.
3866
+ #
3867
+ # @return [Types::DescribeDataSetRefreshPropertiesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3868
+ #
3869
+ # * {Types::DescribeDataSetRefreshPropertiesResponse#request_id #request_id} => String
3870
+ # * {Types::DescribeDataSetRefreshPropertiesResponse#status #status} => Integer
3871
+ # * {Types::DescribeDataSetRefreshPropertiesResponse#data_set_refresh_properties #data_set_refresh_properties} => Types::DataSetRefreshProperties
3872
+ #
3873
+ # @example Request syntax with placeholder values
3874
+ #
3875
+ # resp = client.describe_data_set_refresh_properties({
3876
+ # aws_account_id: "AwsAccountId", # required
3877
+ # data_set_id: "ResourceId", # required
3878
+ # })
3879
+ #
3880
+ # @example Response structure
3881
+ #
3882
+ # resp.request_id #=> String
3883
+ # resp.status #=> Integer
3884
+ # resp.data_set_refresh_properties.refresh_configuration.incremental_refresh.lookback_window.column_name #=> String
3885
+ # resp.data_set_refresh_properties.refresh_configuration.incremental_refresh.lookback_window.size #=> Integer
3886
+ # resp.data_set_refresh_properties.refresh_configuration.incremental_refresh.lookback_window.size_unit #=> String, one of "HOUR", "DAY", "WEEK"
3887
+ #
3888
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeDataSetRefreshProperties AWS API Documentation
3889
+ #
3890
+ # @overload describe_data_set_refresh_properties(params = {})
3891
+ # @param [Hash] params ({})
3892
+ def describe_data_set_refresh_properties(params = {}, options = {})
3893
+ req = build_request(:describe_data_set_refresh_properties, params)
3894
+ req.send_request(options)
3895
+ end
3896
+
3720
3897
  # Describes a data source.
3721
3898
  #
3722
3899
  # @option params [required, String] :aws_account_id
@@ -4225,7 +4402,7 @@ module Aws::QuickSight
4225
4402
  # resp.ingestion.arn #=> String
4226
4403
  # resp.ingestion.ingestion_id #=> String
4227
4404
  # resp.ingestion.ingestion_status #=> String, one of "INITIALIZED", "QUEUED", "RUNNING", "FAILED", "COMPLETED", "CANCELLED"
4228
- # resp.ingestion.error_info.type #=> String, one of "FAILURE_TO_ASSUME_ROLE", "INGESTION_SUPERSEDED", "INGESTION_CANCELED", "DATA_SET_DELETED", "DATA_SET_NOT_SPICE", "S3_UPLOADED_FILE_DELETED", "S3_MANIFEST_ERROR", "DATA_TOLERANCE_EXCEPTION", "SPICE_TABLE_NOT_FOUND", "DATA_SET_SIZE_LIMIT_EXCEEDED", "ROW_SIZE_LIMIT_EXCEEDED", "ACCOUNT_CAPACITY_LIMIT_EXCEEDED", "CUSTOMER_ERROR", "DATA_SOURCE_NOT_FOUND", "IAM_ROLE_NOT_AVAILABLE", "CONNECTION_FAILURE", "SQL_TABLE_NOT_FOUND", "PERMISSION_DENIED", "SSL_CERTIFICATE_VALIDATION_FAILURE", "OAUTH_TOKEN_FAILURE", "SOURCE_API_LIMIT_EXCEEDED_FAILURE", "PASSWORD_AUTHENTICATION_FAILURE", "SQL_SCHEMA_MISMATCH_ERROR", "INVALID_DATE_FORMAT", "INVALID_DATAPREP_SYNTAX", "SOURCE_RESOURCE_LIMIT_EXCEEDED", "SQL_INVALID_PARAMETER_VALUE", "QUERY_TIMEOUT", "SQL_NUMERIC_OVERFLOW", "UNRESOLVABLE_HOST", "UNROUTABLE_HOST", "SQL_EXCEPTION", "S3_FILE_INACCESSIBLE", "IOT_FILE_NOT_FOUND", "IOT_DATA_SET_FILE_EMPTY", "INVALID_DATA_SOURCE_CONFIG", "DATA_SOURCE_AUTH_FAILED", "DATA_SOURCE_CONNECTION_FAILED", "FAILURE_TO_PROCESS_JSON_FILE", "INTERNAL_SERVICE_ERROR", "REFRESH_SUPPRESSED_BY_EDIT", "PERMISSION_NOT_FOUND", "ELASTICSEARCH_CURSOR_NOT_ENABLED", "CURSOR_NOT_ENABLED"
4405
+ # resp.ingestion.error_info.type #=> String, one of "FAILURE_TO_ASSUME_ROLE", "INGESTION_SUPERSEDED", "INGESTION_CANCELED", "DATA_SET_DELETED", "DATA_SET_NOT_SPICE", "S3_UPLOADED_FILE_DELETED", "S3_MANIFEST_ERROR", "DATA_TOLERANCE_EXCEPTION", "SPICE_TABLE_NOT_FOUND", "DATA_SET_SIZE_LIMIT_EXCEEDED", "ROW_SIZE_LIMIT_EXCEEDED", "ACCOUNT_CAPACITY_LIMIT_EXCEEDED", "CUSTOMER_ERROR", "DATA_SOURCE_NOT_FOUND", "IAM_ROLE_NOT_AVAILABLE", "CONNECTION_FAILURE", "SQL_TABLE_NOT_FOUND", "PERMISSION_DENIED", "SSL_CERTIFICATE_VALIDATION_FAILURE", "OAUTH_TOKEN_FAILURE", "SOURCE_API_LIMIT_EXCEEDED_FAILURE", "PASSWORD_AUTHENTICATION_FAILURE", "SQL_SCHEMA_MISMATCH_ERROR", "INVALID_DATE_FORMAT", "INVALID_DATAPREP_SYNTAX", "SOURCE_RESOURCE_LIMIT_EXCEEDED", "SQL_INVALID_PARAMETER_VALUE", "QUERY_TIMEOUT", "SQL_NUMERIC_OVERFLOW", "UNRESOLVABLE_HOST", "UNROUTABLE_HOST", "SQL_EXCEPTION", "S3_FILE_INACCESSIBLE", "IOT_FILE_NOT_FOUND", "IOT_DATA_SET_FILE_EMPTY", "INVALID_DATA_SOURCE_CONFIG", "DATA_SOURCE_AUTH_FAILED", "DATA_SOURCE_CONNECTION_FAILED", "FAILURE_TO_PROCESS_JSON_FILE", "INTERNAL_SERVICE_ERROR", "REFRESH_SUPPRESSED_BY_EDIT", "PERMISSION_NOT_FOUND", "ELASTICSEARCH_CURSOR_NOT_ENABLED", "CURSOR_NOT_ENABLED", "DUPLICATE_COLUMN_NAMES_FOUND"
4229
4406
  # resp.ingestion.error_info.message #=> String
4230
4407
  # resp.ingestion.row_info.rows_ingested #=> Integer
4231
4408
  # resp.ingestion.row_info.rows_dropped #=> Integer
@@ -4329,6 +4506,56 @@ module Aws::QuickSight
4329
4506
  req.send_request(options)
4330
4507
  end
4331
4508
 
4509
+ # Provides a summary of a refresh schedule.
4510
+ #
4511
+ # @option params [required, String] :aws_account_id
4512
+ # The Amazon Web Services account ID.
4513
+ #
4514
+ # @option params [required, String] :data_set_id
4515
+ # The ID of the dataset.
4516
+ #
4517
+ # @option params [required, String] :schedule_id
4518
+ # The ID of the refresh schedule.
4519
+ #
4520
+ # @return [Types::DescribeRefreshScheduleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4521
+ #
4522
+ # * {Types::DescribeRefreshScheduleResponse#refresh_schedule #refresh_schedule} => Types::RefreshSchedule
4523
+ # * {Types::DescribeRefreshScheduleResponse#status #status} => Integer
4524
+ # * {Types::DescribeRefreshScheduleResponse#request_id #request_id} => String
4525
+ # * {Types::DescribeRefreshScheduleResponse#arn #arn} => String
4526
+ #
4527
+ # @example Request syntax with placeholder values
4528
+ #
4529
+ # resp = client.describe_refresh_schedule({
4530
+ # aws_account_id: "AwsAccountId", # required
4531
+ # data_set_id: "ResourceId", # required
4532
+ # schedule_id: "String", # required
4533
+ # })
4534
+ #
4535
+ # @example Response structure
4536
+ #
4537
+ # resp.refresh_schedule.schedule_id #=> String
4538
+ # resp.refresh_schedule.schedule_frequency.interval #=> String, one of "MINUTE15", "MINUTE30", "HOURLY", "DAILY", "WEEKLY", "MONTHLY"
4539
+ # resp.refresh_schedule.schedule_frequency.refresh_on_day.day_of_week #=> String, one of "SUNDAY", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY"
4540
+ # resp.refresh_schedule.schedule_frequency.refresh_on_day.day_of_month #=> String
4541
+ # resp.refresh_schedule.schedule_frequency.timezone #=> String
4542
+ # resp.refresh_schedule.schedule_frequency.time_of_the_day #=> String
4543
+ # resp.refresh_schedule.start_after_date_time #=> Time
4544
+ # resp.refresh_schedule.refresh_type #=> String, one of "INCREMENTAL_REFRESH", "FULL_REFRESH"
4545
+ # resp.refresh_schedule.arn #=> String
4546
+ # resp.status #=> Integer
4547
+ # resp.request_id #=> String
4548
+ # resp.arn #=> String
4549
+ #
4550
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeRefreshSchedule AWS API Documentation
4551
+ #
4552
+ # @overload describe_refresh_schedule(params = {})
4553
+ # @param [Hash] params ({})
4554
+ def describe_refresh_schedule(params = {}, options = {})
4555
+ req = build_request(:describe_refresh_schedule, params)
4556
+ req.send_request(options)
4557
+ end
4558
+
4332
4559
  # Describes a template's metadata.
4333
4560
  #
4334
4561
  # @option params [required, String] :aws_account_id
@@ -5189,7 +5416,7 @@ module Aws::QuickSight
5189
5416
  # permissions profile to the user with the ` UpdateUser ` API operation.
5190
5417
  # Use ` RegisterUser ` API operation to add a new user with a custom
5191
5418
  # permission profile attached. For more information, see the following
5192
- # sections in the *Amazon QuickSight User Guide*\:
5419
+ # sections in the *Amazon QuickSight User Guide*:
5193
5420
  #
5194
5421
  # * [Embedding Analytics][1]
5195
5422
  #
@@ -6018,7 +6245,7 @@ module Aws::QuickSight
6018
6245
  # resp.ingestions[0].arn #=> String
6019
6246
  # resp.ingestions[0].ingestion_id #=> String
6020
6247
  # resp.ingestions[0].ingestion_status #=> String, one of "INITIALIZED", "QUEUED", "RUNNING", "FAILED", "COMPLETED", "CANCELLED"
6021
- # resp.ingestions[0].error_info.type #=> String, one of "FAILURE_TO_ASSUME_ROLE", "INGESTION_SUPERSEDED", "INGESTION_CANCELED", "DATA_SET_DELETED", "DATA_SET_NOT_SPICE", "S3_UPLOADED_FILE_DELETED", "S3_MANIFEST_ERROR", "DATA_TOLERANCE_EXCEPTION", "SPICE_TABLE_NOT_FOUND", "DATA_SET_SIZE_LIMIT_EXCEEDED", "ROW_SIZE_LIMIT_EXCEEDED", "ACCOUNT_CAPACITY_LIMIT_EXCEEDED", "CUSTOMER_ERROR", "DATA_SOURCE_NOT_FOUND", "IAM_ROLE_NOT_AVAILABLE", "CONNECTION_FAILURE", "SQL_TABLE_NOT_FOUND", "PERMISSION_DENIED", "SSL_CERTIFICATE_VALIDATION_FAILURE", "OAUTH_TOKEN_FAILURE", "SOURCE_API_LIMIT_EXCEEDED_FAILURE", "PASSWORD_AUTHENTICATION_FAILURE", "SQL_SCHEMA_MISMATCH_ERROR", "INVALID_DATE_FORMAT", "INVALID_DATAPREP_SYNTAX", "SOURCE_RESOURCE_LIMIT_EXCEEDED", "SQL_INVALID_PARAMETER_VALUE", "QUERY_TIMEOUT", "SQL_NUMERIC_OVERFLOW", "UNRESOLVABLE_HOST", "UNROUTABLE_HOST", "SQL_EXCEPTION", "S3_FILE_INACCESSIBLE", "IOT_FILE_NOT_FOUND", "IOT_DATA_SET_FILE_EMPTY", "INVALID_DATA_SOURCE_CONFIG", "DATA_SOURCE_AUTH_FAILED", "DATA_SOURCE_CONNECTION_FAILED", "FAILURE_TO_PROCESS_JSON_FILE", "INTERNAL_SERVICE_ERROR", "REFRESH_SUPPRESSED_BY_EDIT", "PERMISSION_NOT_FOUND", "ELASTICSEARCH_CURSOR_NOT_ENABLED", "CURSOR_NOT_ENABLED"
6248
+ # resp.ingestions[0].error_info.type #=> String, one of "FAILURE_TO_ASSUME_ROLE", "INGESTION_SUPERSEDED", "INGESTION_CANCELED", "DATA_SET_DELETED", "DATA_SET_NOT_SPICE", "S3_UPLOADED_FILE_DELETED", "S3_MANIFEST_ERROR", "DATA_TOLERANCE_EXCEPTION", "SPICE_TABLE_NOT_FOUND", "DATA_SET_SIZE_LIMIT_EXCEEDED", "ROW_SIZE_LIMIT_EXCEEDED", "ACCOUNT_CAPACITY_LIMIT_EXCEEDED", "CUSTOMER_ERROR", "DATA_SOURCE_NOT_FOUND", "IAM_ROLE_NOT_AVAILABLE", "CONNECTION_FAILURE", "SQL_TABLE_NOT_FOUND", "PERMISSION_DENIED", "SSL_CERTIFICATE_VALIDATION_FAILURE", "OAUTH_TOKEN_FAILURE", "SOURCE_API_LIMIT_EXCEEDED_FAILURE", "PASSWORD_AUTHENTICATION_FAILURE", "SQL_SCHEMA_MISMATCH_ERROR", "INVALID_DATE_FORMAT", "INVALID_DATAPREP_SYNTAX", "SOURCE_RESOURCE_LIMIT_EXCEEDED", "SQL_INVALID_PARAMETER_VALUE", "QUERY_TIMEOUT", "SQL_NUMERIC_OVERFLOW", "UNRESOLVABLE_HOST", "UNROUTABLE_HOST", "SQL_EXCEPTION", "S3_FILE_INACCESSIBLE", "IOT_FILE_NOT_FOUND", "IOT_DATA_SET_FILE_EMPTY", "INVALID_DATA_SOURCE_CONFIG", "DATA_SOURCE_AUTH_FAILED", "DATA_SOURCE_CONNECTION_FAILED", "FAILURE_TO_PROCESS_JSON_FILE", "INTERNAL_SERVICE_ERROR", "REFRESH_SUPPRESSED_BY_EDIT", "PERMISSION_NOT_FOUND", "ELASTICSEARCH_CURSOR_NOT_ENABLED", "CURSOR_NOT_ENABLED", "DUPLICATE_COLUMN_NAMES_FOUND"
6022
6249
  # resp.ingestions[0].error_info.message #=> String
6023
6250
  # resp.ingestions[0].row_info.rows_ingested #=> Integer
6024
6251
  # resp.ingestions[0].row_info.rows_dropped #=> Integer
@@ -6103,6 +6330,52 @@ module Aws::QuickSight
6103
6330
  req.send_request(options)
6104
6331
  end
6105
6332
 
6333
+ # Lists the refresh schedules of a dataset. Each dataset can have up to
6334
+ # 5 schedules.
6335
+ #
6336
+ # @option params [required, String] :aws_account_id
6337
+ # The Amazon Web Services account ID.
6338
+ #
6339
+ # @option params [required, String] :data_set_id
6340
+ # The ID of the dataset.
6341
+ #
6342
+ # @return [Types::ListRefreshSchedulesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6343
+ #
6344
+ # * {Types::ListRefreshSchedulesResponse#refresh_schedules #refresh_schedules} => Array<Types::RefreshSchedule>
6345
+ # * {Types::ListRefreshSchedulesResponse#status #status} => Integer
6346
+ # * {Types::ListRefreshSchedulesResponse#request_id #request_id} => String
6347
+ #
6348
+ # @example Request syntax with placeholder values
6349
+ #
6350
+ # resp = client.list_refresh_schedules({
6351
+ # aws_account_id: "AwsAccountId", # required
6352
+ # data_set_id: "ResourceId", # required
6353
+ # })
6354
+ #
6355
+ # @example Response structure
6356
+ #
6357
+ # resp.refresh_schedules #=> Array
6358
+ # resp.refresh_schedules[0].schedule_id #=> String
6359
+ # resp.refresh_schedules[0].schedule_frequency.interval #=> String, one of "MINUTE15", "MINUTE30", "HOURLY", "DAILY", "WEEKLY", "MONTHLY"
6360
+ # resp.refresh_schedules[0].schedule_frequency.refresh_on_day.day_of_week #=> String, one of "SUNDAY", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY"
6361
+ # resp.refresh_schedules[0].schedule_frequency.refresh_on_day.day_of_month #=> String
6362
+ # resp.refresh_schedules[0].schedule_frequency.timezone #=> String
6363
+ # resp.refresh_schedules[0].schedule_frequency.time_of_the_day #=> String
6364
+ # resp.refresh_schedules[0].start_after_date_time #=> Time
6365
+ # resp.refresh_schedules[0].refresh_type #=> String, one of "INCREMENTAL_REFRESH", "FULL_REFRESH"
6366
+ # resp.refresh_schedules[0].arn #=> String
6367
+ # resp.status #=> Integer
6368
+ # resp.request_id #=> String
6369
+ #
6370
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListRefreshSchedules AWS API Documentation
6371
+ #
6372
+ # @overload list_refresh_schedules(params = {})
6373
+ # @param [Hash] params ({})
6374
+ def list_refresh_schedules(params = {}, options = {})
6375
+ req = build_request(:list_refresh_schedules, params)
6376
+ req.send_request(options)
6377
+ end
6378
+
6106
6379
  # Lists the tags assigned to a resource.
6107
6380
  #
6108
6381
  # @option params [required, String] :resource_arn
@@ -6589,6 +6862,54 @@ module Aws::QuickSight
6589
6862
  req.send_request(options)
6590
6863
  end
6591
6864
 
6865
+ # Creates or updates the dataset refresh properties for the dataset.
6866
+ #
6867
+ # @option params [required, String] :aws_account_id
6868
+ # The Amazon Web Services account ID.
6869
+ #
6870
+ # @option params [required, String] :data_set_id
6871
+ # The ID of the dataset.
6872
+ #
6873
+ # @option params [required, Types::DataSetRefreshProperties] :data_set_refresh_properties
6874
+ # The dataset refresh properties.
6875
+ #
6876
+ # @return [Types::PutDataSetRefreshPropertiesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6877
+ #
6878
+ # * {Types::PutDataSetRefreshPropertiesResponse#request_id #request_id} => String
6879
+ # * {Types::PutDataSetRefreshPropertiesResponse#status #status} => Integer
6880
+ #
6881
+ # @example Request syntax with placeholder values
6882
+ #
6883
+ # resp = client.put_data_set_refresh_properties({
6884
+ # aws_account_id: "AwsAccountId", # required
6885
+ # data_set_id: "ResourceId", # required
6886
+ # data_set_refresh_properties: { # required
6887
+ # refresh_configuration: { # required
6888
+ # incremental_refresh: { # required
6889
+ # lookback_window: { # required
6890
+ # column_name: "String", # required
6891
+ # size: 1, # required
6892
+ # size_unit: "HOUR", # required, accepts HOUR, DAY, WEEK
6893
+ # },
6894
+ # },
6895
+ # },
6896
+ # },
6897
+ # })
6898
+ #
6899
+ # @example Response structure
6900
+ #
6901
+ # resp.request_id #=> String
6902
+ # resp.status #=> Integer
6903
+ #
6904
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PutDataSetRefreshProperties AWS API Documentation
6905
+ #
6906
+ # @overload put_data_set_refresh_properties(params = {})
6907
+ # @param [Hash] params ({})
6908
+ def put_data_set_refresh_properties(params = {}, options = {})
6909
+ req = build_request(:put_data_set_refresh_properties, params)
6910
+ req.send_request(options)
6911
+ end
6912
+
6592
6913
  # Creates an Amazon QuickSight user whose identity is associated with
6593
6914
  # the Identity and Access Management (IAM) identity or role specified in
6594
6915
  # the request. When you register a new user from the Amazon QuickSight
@@ -6609,9 +6930,9 @@ module Aws::QuickSight
6609
6930
  # Amazon QuickSight supports several ways of managing the identity of
6610
6931
  # users. This parameter accepts two values:
6611
6932
  #
6612
- # * `IAM`\: A user whose identity maps to an existing IAM user or role.
6933
+ # * `IAM`: A user whose identity maps to an existing IAM user or role.
6613
6934
  #
6614
- # * `QUICKSIGHT`\: A user whose identity is owned and managed internally
6935
+ # * `QUICKSIGHT`: A user whose identity is owned and managed internally
6615
6936
  # by Amazon QuickSight.
6616
6937
  #
6617
6938
  # @option params [required, String] :email
@@ -6621,17 +6942,17 @@ module Aws::QuickSight
6621
6942
  # The Amazon QuickSight role for the user. The user role can be one of
6622
6943
  # the following:
6623
6944
  #
6624
- # * `READER`\: A user who has read-only access to dashboards.
6945
+ # * `READER`: A user who has read-only access to dashboards.
6625
6946
  #
6626
- # * `AUTHOR`\: A user who can create data sources, datasets, analyses,
6947
+ # * `AUTHOR`: A user who can create data sources, datasets, analyses,
6627
6948
  # and dashboards.
6628
6949
  #
6629
- # * `ADMIN`\: A user who is an author, who can also manage Amazon
6950
+ # * `ADMIN`: A user who is an author, who can also manage Amazon
6630
6951
  # QuickSight settings.
6631
6952
  #
6632
- # * `RESTRICTED_READER`\: This role isn't currently available for use.
6953
+ # * `RESTRICTED_READER`: This role isn't currently available for use.
6633
6954
  #
6634
- # * `RESTRICTED_AUTHOR`\: This role isn't currently available for use.
6955
+ # * `RESTRICTED_AUTHOR`: This role isn't currently available for use.
6635
6956
  #
6636
6957
  # @option params [String] :iam_arn
6637
6958
  # The ARN of the IAM user or role that you are registering with Amazon
@@ -6699,12 +7020,12 @@ module Aws::QuickSight
6699
7020
  # Identity and Access Management(IAM) role. The type of supported
6700
7021
  # external login provider can be one of the following.
6701
7022
  #
6702
- # * `COGNITO`\: Amazon Cognito. The provider URL is
7023
+ # * `COGNITO`: Amazon Cognito. The provider URL is
6703
7024
  # cognito-identity.amazonaws.com. When choosing the `COGNITO` provider
6704
7025
  # type, don’t use the "CustomFederationProviderUrl" parameter which
6705
7026
  # is only needed when the external provider is custom.
6706
7027
  #
6707
- # * `CUSTOM_OIDC`\: Custom OpenID Connect (OIDC) provider. When choosing
7028
+ # * `CUSTOM_OIDC`: Custom OpenID Connect (OIDC) provider. When choosing
6708
7029
  # `CUSTOM_OIDC` type, use the `CustomFederationProviderUrl` parameter
6709
7030
  # to provide the custom OIDC provider URL.
6710
7031
  #
@@ -7971,6 +8292,9 @@ module Aws::QuickSight
7971
8292
  # match_all_value: "SessionTagValue",
7972
8293
  # },
7973
8294
  # ],
8295
+ # tag_rule_configurations: [
8296
+ # ["SessionTagKey"],
8297
+ # ],
7974
8298
  # },
7975
8299
  # column_level_permission_rules: [
7976
8300
  # {
@@ -8738,6 +9062,62 @@ module Aws::QuickSight
8738
9062
  req.send_request(options)
8739
9063
  end
8740
9064
 
9065
+ # Updates a refresh schedule for a dataset.
9066
+ #
9067
+ # @option params [required, String] :data_set_id
9068
+ # The ID of the dataset.
9069
+ #
9070
+ # @option params [required, String] :aws_account_id
9071
+ # The Amazon Web Services account ID.
9072
+ #
9073
+ # @option params [required, Types::RefreshSchedule] :schedule
9074
+ # The refresh schedule.
9075
+ #
9076
+ # @return [Types::UpdateRefreshScheduleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9077
+ #
9078
+ # * {Types::UpdateRefreshScheduleResponse#status #status} => Integer
9079
+ # * {Types::UpdateRefreshScheduleResponse#request_id #request_id} => String
9080
+ # * {Types::UpdateRefreshScheduleResponse#schedule_id #schedule_id} => String
9081
+ # * {Types::UpdateRefreshScheduleResponse#arn #arn} => String
9082
+ #
9083
+ # @example Request syntax with placeholder values
9084
+ #
9085
+ # resp = client.update_refresh_schedule({
9086
+ # data_set_id: "ResourceId", # required
9087
+ # aws_account_id: "AwsAccountId", # required
9088
+ # schedule: { # required
9089
+ # schedule_id: "String", # required
9090
+ # schedule_frequency: { # required
9091
+ # interval: "MINUTE15", # required, accepts MINUTE15, MINUTE30, HOURLY, DAILY, WEEKLY, MONTHLY
9092
+ # refresh_on_day: {
9093
+ # day_of_week: "SUNDAY", # accepts SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY
9094
+ # day_of_month: "DayOfMonth",
9095
+ # },
9096
+ # timezone: "String",
9097
+ # time_of_the_day: "String",
9098
+ # },
9099
+ # start_after_date_time: Time.now,
9100
+ # refresh_type: "INCREMENTAL_REFRESH", # required, accepts INCREMENTAL_REFRESH, FULL_REFRESH
9101
+ # arn: "Arn",
9102
+ # },
9103
+ # })
9104
+ #
9105
+ # @example Response structure
9106
+ #
9107
+ # resp.status #=> Integer
9108
+ # resp.request_id #=> String
9109
+ # resp.schedule_id #=> String
9110
+ # resp.arn #=> String
9111
+ #
9112
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateRefreshSchedule AWS API Documentation
9113
+ #
9114
+ # @overload update_refresh_schedule(params = {})
9115
+ # @param [Hash] params ({})
9116
+ def update_refresh_schedule(params = {}, options = {})
9117
+ req = build_request(:update_refresh_schedule, params)
9118
+ req.send_request(options)
9119
+ end
9120
+
8741
9121
  # Updates a template from an existing Amazon QuickSight analysis or
8742
9122
  # another template.
8743
9123
  #
@@ -9197,12 +9577,12 @@ module Aws::QuickSight
9197
9577
  # The Amazon QuickSight role of the user. The role can be one of the
9198
9578
  # following default security cohorts:
9199
9579
  #
9200
- # * `READER`\: A user who has read-only access to dashboards.
9580
+ # * `READER`: A user who has read-only access to dashboards.
9201
9581
  #
9202
- # * `AUTHOR`\: A user who can create data sources, datasets, analyses,
9582
+ # * `AUTHOR`: A user who can create data sources, datasets, analyses,
9203
9583
  # and dashboards.
9204
9584
  #
9205
- # * `ADMIN`\: A user who is an author, who can also manage Amazon
9585
+ # * `ADMIN`: A user who is an author, who can also manage Amazon
9206
9586
  # QuickSight settings.
9207
9587
  #
9208
9588
  # The name of the Amazon QuickSight role is invisible to the user except
@@ -9249,16 +9629,16 @@ module Aws::QuickSight
9249
9629
  # Identity and Access Management(IAM) role. The type of supported
9250
9630
  # external login provider can be one of the following.
9251
9631
  #
9252
- # * `COGNITO`\: Amazon Cognito. The provider URL is
9632
+ # * `COGNITO`: Amazon Cognito. The provider URL is
9253
9633
  # cognito-identity.amazonaws.com. When choosing the `COGNITO` provider
9254
9634
  # type, don’t use the "CustomFederationProviderUrl" parameter which
9255
9635
  # is only needed when the external provider is custom.
9256
9636
  #
9257
- # * `CUSTOM_OIDC`\: Custom OpenID Connect (OIDC) provider. When choosing
9637
+ # * `CUSTOM_OIDC`: Custom OpenID Connect (OIDC) provider. When choosing
9258
9638
  # `CUSTOM_OIDC` type, use the `CustomFederationProviderUrl` parameter
9259
9639
  # to provide the custom OIDC provider URL.
9260
9640
  #
9261
- # * `NONE`\: This clears all the previously saved external login
9641
+ # * `NONE`: This clears all the previously saved external login
9262
9642
  # information for a user. Use the ` DescribeUser ` API operation to
9263
9643
  # check the external login information.
9264
9644
  #
@@ -9331,7 +9711,7 @@ module Aws::QuickSight
9331
9711
  params: params,
9332
9712
  config: config)
9333
9713
  context[:gem_name] = 'aws-sdk-quicksight'
9334
- context[:gem_version] = '1.77.0'
9714
+ context[:gem_version] = '1.78.0'
9335
9715
  Seahorse::Client::Request.new(handlers, context)
9336
9716
  end
9337
9717