aws-sdk-quicksight 1.54.0 → 1.55.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: 3270943981a3280ffe47f9c0fe27dabe96c491f9a3cfa53d59e588d11aa83172
4
- data.tar.gz: 97bc0dc0e95138e23c6c7018ea4542e6029355fb46b212f19a345f33100a665c
3
+ metadata.gz: f76cea3644d5d6d7ee1f5ed9f584292ef6bb3e93919680c041dffc3c046885f8
4
+ data.tar.gz: 60f658984d5028abed1c6e86d7a6797ba495980635e6c199ce2ebc2223539493
5
5
  SHA512:
6
- metadata.gz: 320894f90aec3ef3b4aff0a5be6ab4feaa3ab8e3efd2f4a646659b3549d9d30754e41ec1ced3d88352220b6c0cd2e726877416d11f3ed00faba023bfcc6dba13
7
- data.tar.gz: 47acc7ef9029aaf61054a29ba6961b2b8ad595cf4d050fb3385bb2c94d848e61c69aa293358feb6369be3fb5a462e6b3d9a8316f733a862c4e15c4df25bf867d
6
+ metadata.gz: ed4bac065b0794c3260201cb7cb09c352961ce03cf0bf8910b556af22a3aa23fb786f3c3012b3f89ac15dd5739fffd08fbda7f546c5626b7eb039a5defa48ff3
7
+ data.tar.gz: 4c18585a420b080dc35937bc9052dac653b5f7fddc1419b2cbecb34594b6a576e93b9db869b2464b71662fbf354de2944c1f9d83ceb27270335b4bcd97b3ef5d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.55.0 (2021-10-18)
5
+ ------------------
6
+
7
+ * Feature - AWS QuickSight Service Features - Add IP Restriction UI and public APIs support.
8
+
4
9
  1.54.0 (2021-09-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.54.0
1
+ 1.55.0
@@ -349,7 +349,7 @@ module Aws::QuickSight
349
349
  #
350
350
  # resp = client.cancel_ingestion({
351
351
  # aws_account_id: "AwsAccountId", # required
352
- # data_set_id: "string", # required
352
+ # data_set_id: "String", # required
353
353
  # ingestion_id: "IngestionId", # required
354
354
  # })
355
355
  #
@@ -370,7 +370,7 @@ module Aws::QuickSight
370
370
  end
371
371
 
372
372
  # Creates Amazon QuickSight customizations the current Amazon Web
373
- # Services Region;. Currently, you can add a custom default theme by
373
+ # Services Region. Currently, you can add a custom default theme by
374
374
  # using the `CreateAccountCustomization` or `UpdateAccountCustomization`
375
375
  # API operation. To further customize Amazon QuickSight by removing
376
376
  # Amazon QuickSight sample assets and videos for all new users, see
@@ -407,7 +407,7 @@ module Aws::QuickSight
407
407
  #
408
408
  # @option params [required, Types::AccountCustomization] :account_customization
409
409
  # The Amazon QuickSight customizations you're adding in the current
410
- # Amazon Web Services Region;. You can add these to an Amazon Web
410
+ # Amazon Web Services Region. You can add these to an Amazon Web
411
411
  # Services account and a Amazon QuickSight namespace.
412
412
  #
413
413
  # For example, you can add a default theme by setting
@@ -630,7 +630,7 @@ module Aws::QuickSight
630
630
  # the CreateTemplate API operation. For `SourceTemplate`, specify the
631
631
  # Amazon Resource Name (ARN) of the source template. The
632
632
  # `SourceTemplate`ARN can contain any Amazon Web Services account and
633
- # any Amazon QuickSight-supported Amazon Web Services Region;.
633
+ # any Amazon QuickSight-supported Amazon Web Services Region.
634
634
  #
635
635
  # Use the `DataSetReferences` entity within `SourceTemplate` to list the
636
636
  # replacement datasets for the placeholders listed in the original. The
@@ -771,7 +771,7 @@ module Aws::QuickSight
771
771
  #
772
772
  # @option params [required, String] :data_set_id
773
773
  # An ID for the dataset that you want to create. This ID is unique per
774
- # Amazon Web Services Region; for each Amazon Web Services account.
774
+ # Amazon Web Services Region for each Amazon Web Services account.
775
775
  #
776
776
  # @option params [required, String] :name
777
777
  # The display name for the dataset.
@@ -1023,7 +1023,7 @@ module Aws::QuickSight
1023
1023
  #
1024
1024
  # @option params [required, String] :data_source_id
1025
1025
  # An ID for the data source. This ID is unique per Amazon Web Services
1026
- # Region; for each Amazon Web Services account.
1026
+ # Region for each Amazon Web Services account.
1027
1027
  #
1028
1028
  # @option params [required, String] :name
1029
1029
  # A display name for the data source.
@@ -1032,7 +1032,7 @@ module Aws::QuickSight
1032
1032
  # The type of the data source. To return a list of all data sources, use
1033
1033
  # `ListDataSources`.
1034
1034
  #
1035
- # Use `AMAZON_ELASTICSEARCH` for Amazon Elasticsearch Service.
1035
+ # Use `AMAZON_ELASTICSEARCH` for Amazon OpenSearch Service.
1036
1036
  #
1037
1037
  # @option params [Types::DataSourceParameters] :data_source_parameters
1038
1038
  # The parameters that Amazon QuickSight uses to connect to your
@@ -1632,6 +1632,9 @@ module Aws::QuickSight
1632
1632
  # @option params [required, String] :aws_account_id
1633
1633
  # The Amazon Web Services account ID.
1634
1634
  #
1635
+ # @option params [String] :ingestion_type
1636
+ # The type of ingestion that you want to create.
1637
+ #
1635
1638
  # @return [Types::CreateIngestionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1636
1639
  #
1637
1640
  # * {Types::CreateIngestionResponse#arn #arn} => String
@@ -1643,9 +1646,10 @@ module Aws::QuickSight
1643
1646
  # @example Request syntax with placeholder values
1644
1647
  #
1645
1648
  # resp = client.create_ingestion({
1646
- # data_set_id: "string", # required
1649
+ # data_set_id: "String", # required
1647
1650
  # ingestion_id: "IngestionId", # required
1648
1651
  # aws_account_id: "AwsAccountId", # required
1652
+ # ingestion_type: "INCREMENTAL_REFRESH", # accepts INCREMENTAL_REFRESH, FULL_REFRESH
1649
1653
  # })
1650
1654
  #
1651
1655
  # @example Response structure
@@ -1771,7 +1775,7 @@ module Aws::QuickSight
1771
1775
  # For `SourceTemplate`, specify the ARN of the source template. For
1772
1776
  # `SourceAnalysis`, specify the ARN of the source analysis. The
1773
1777
  # `SourceTemplate` ARN can contain any Amazon Web Services account and
1774
- # any Amazon QuickSight-supported Amazon Web Services Region;.
1778
+ # any Amazon QuickSight-supported Amazon Web Services Region.
1775
1779
  #
1776
1780
  # Use the `DataSetReferences` entity within `SourceTemplate` or
1777
1781
  # `SourceAnalysis` to list the replacement datasets for the placeholders
@@ -2082,13 +2086,13 @@ module Aws::QuickSight
2082
2086
  end
2083
2087
 
2084
2088
  # Deletes all Amazon QuickSight customizations in this Amazon Web
2085
- # Services Region; for the specified Amazon Web Services account and
2089
+ # Services Region for the specified Amazon Web Services account and
2086
2090
  # Amazon QuickSight namespace.
2087
2091
  #
2088
2092
  # @option params [required, String] :aws_account_id
2089
2093
  # The ID for the Amazon Web Services account that you want to delete
2090
2094
  # Amazon QuickSight customizations from in this Amazon Web Services
2091
- # Region;.
2095
+ # Region.
2092
2096
  #
2093
2097
  # @option params [String] :namespace
2094
2098
  # The Amazon QuickSight namespace that you're deleting the
@@ -2242,7 +2246,7 @@ module Aws::QuickSight
2242
2246
  #
2243
2247
  # @option params [required, String] :data_set_id
2244
2248
  # The ID for the dataset that you want to create. This ID is unique per
2245
- # Amazon Web Services Region; for each Amazon Web Services account.
2249
+ # Amazon Web Services Region for each Amazon Web Services account.
2246
2250
  #
2247
2251
  # @return [Types::DeleteDataSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2248
2252
  #
@@ -2282,7 +2286,7 @@ module Aws::QuickSight
2282
2286
  #
2283
2287
  # @option params [required, String] :data_source_id
2284
2288
  # The ID of the data source. This ID is unique per Amazon Web Services
2285
- # Region; for each Amazon Web Services account.
2289
+ # Region for each Amazon Web Services account.
2286
2290
  #
2287
2291
  # @return [Types::DeleteDataSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2288
2292
  #
@@ -2836,7 +2840,7 @@ module Aws::QuickSight
2836
2840
 
2837
2841
  # Describes the customizations associated with the provided Amazon Web
2838
2842
  # Services account and Amazon Amazon QuickSight namespace in an Amazon
2839
- # Web Services Region;. The Amazon QuickSight console evaluates which
2843
+ # Web Services Region. The Amazon QuickSight console evaluates which
2840
2844
  # customizations to apply by running this API operation with the
2841
2845
  # `Resolved` flag included.
2842
2846
  #
@@ -2845,21 +2849,21 @@ module Aws::QuickSight
2845
2849
  #
2846
2850
  # * `Amazon Web Services account` - The Amazon Web Services account
2847
2851
  # exists at the top of the hierarchy. It has the potential to use all
2848
- # of the Amazon Web Services Regions; and AWS Services. When you
2852
+ # of the Amazon Web Services Regions and AWS Services. When you
2849
2853
  # subscribe to Amazon QuickSight, you choose one Amazon Web Services
2850
- # Region; to use as your home Region. That's where your free SPICE
2854
+ # Region to use as your home Region. That's where your free SPICE
2851
2855
  # capacity is located. You can use Amazon QuickSight in any supported
2852
- # Amazon Web Services Region;.
2856
+ # Amazon Web Services Region.
2853
2857
  #
2854
- # * `Amazon Web Services Region;` - In each Amazon Web Services Region;
2858
+ # * `Amazon Web Services Region` - In each Amazon Web Services Region
2855
2859
  # where you sign in to Amazon QuickSight at least once, Amazon
2856
2860
  # QuickSight acts as a separate instance of the same service. If you
2857
2861
  # have a user directory, it resides in us-east-1, which is the US East
2858
2862
  # (N. Virginia). Generally speaking, these users have access to Amazon
2859
- # QuickSight in any Amazon Web Services Region;, unless they are
2863
+ # QuickSight in any Amazon Web Services Region, unless they are
2860
2864
  # constrained to a namespace.
2861
2865
  #
2862
- # To run the command in a different Amazon Web Services Region;, you
2866
+ # To run the command in a different Amazon Web Services Region, you
2863
2867
  # change your Region settings. If you're using the AWS CLI, you can
2864
2868
  # use one of the following options:
2865
2869
  #
@@ -2868,8 +2872,8 @@ module Aws::QuickSight
2868
2872
  # * Use [named profiles][2].
2869
2873
  #
2870
2874
  # * Run `aws configure` to change your default Amazon Web Services
2871
- # Region;. Use Enter to key the same settings for your keys. For
2872
- # more information, see [Configuring the AWS CLI][3].
2875
+ # Region. Use Enter to key the same settings for your keys. For more
2876
+ # information, see [Configuring the AWS CLI][3].
2873
2877
  #
2874
2878
  # * `Namespace` - A Amazon QuickSight namespace is a partition that
2875
2879
  # contains users and assets (data sources, datasets, dashboards, and
@@ -2877,16 +2881,16 @@ module Aws::QuickSight
2877
2881
  # groups must also be part of the same namespace. People who share a
2878
2882
  # namespace are completely isolated from users and assets in other
2879
2883
  # namespaces, even if they are in the same Amazon Web Services account
2880
- # and Amazon Web Services Region;.
2884
+ # and Amazon Web Services Region.
2881
2885
  #
2882
- # * `Applied customizations` - Within an Amazon Web Services Region;, a
2886
+ # * `Applied customizations` - Within an Amazon Web Services Region, a
2883
2887
  # set of Amazon QuickSight customizations can apply to an Amazon Web
2884
2888
  # Services account or to a namespace. Settings that you apply to a
2885
2889
  # namespace override settings that you apply to an Amazon Web Services
2886
2890
  # account. All settings are isolated to a single Amazon Web Services
2887
- # Region;. To apply them in other Amazon Web Services Regions;, run
2888
- # the `CreateAccountCustomization` command in each Amazon Web Services
2889
- # Region; where you want to apply the same customizations.
2891
+ # Region. To apply them in other Amazon Web Services Regions, run the
2892
+ # `CreateAccountCustomization` command in each Amazon Web Services
2893
+ # Region where you want to apply the same customizations.
2890
2894
  #
2891
2895
  #
2892
2896
  #
@@ -3198,7 +3202,7 @@ module Aws::QuickSight
3198
3202
  #
3199
3203
  # @option params [required, String] :data_set_id
3200
3204
  # The ID for the dataset that you want to create. This ID is unique per
3201
- # Amazon Web Services Region; for each Amazon Web Services account.
3205
+ # Amazon Web Services Region for each Amazon Web Services account.
3202
3206
  #
3203
3207
  # @return [Types::DescribeDataSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3204
3208
  #
@@ -3328,7 +3332,7 @@ module Aws::QuickSight
3328
3332
  #
3329
3333
  # @option params [required, String] :data_set_id
3330
3334
  # The ID for the dataset that you want to create. This ID is unique per
3331
- # Amazon Web Services Region; for each Amazon Web Services account.
3335
+ # Amazon Web Services Region for each Amazon Web Services account.
3332
3336
  #
3333
3337
  # @return [Types::DescribeDataSetPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3334
3338
  #
@@ -3372,7 +3376,7 @@ module Aws::QuickSight
3372
3376
  #
3373
3377
  # @option params [required, String] :data_source_id
3374
3378
  # The ID of the data source. This ID is unique per Amazon Web Services
3375
- # Region; for each Amazon Web Services account.
3379
+ # Region for each Amazon Web Services account.
3376
3380
  #
3377
3381
  # @return [Types::DescribeDataSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3378
3382
  #
@@ -3516,7 +3520,7 @@ module Aws::QuickSight
3516
3520
  #
3517
3521
  # @option params [required, String] :data_source_id
3518
3522
  # The ID of the data source. This ID is unique per Amazon Web Services
3519
- # Region; for each Amazon Web Services account.
3523
+ # Region for each Amazon Web Services account.
3520
3524
  #
3521
3525
  # @return [Types::DescribeDataSourcePermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3522
3526
  #
@@ -3800,7 +3804,7 @@ module Aws::QuickSight
3800
3804
  #
3801
3805
  # resp = client.describe_ingestion({
3802
3806
  # aws_account_id: "AwsAccountId", # required
3803
- # data_set_id: "string", # required
3807
+ # data_set_id: "String", # required
3804
3808
  # ingestion_id: "IngestionId", # required
3805
3809
  # })
3806
3810
  #
@@ -3809,10 +3813,11 @@ module Aws::QuickSight
3809
3813
  # resp.ingestion.arn #=> String
3810
3814
  # resp.ingestion.ingestion_id #=> String
3811
3815
  # resp.ingestion.ingestion_status #=> String, one of "INITIALIZED", "QUEUED", "RUNNING", "FAILED", "COMPLETED", "CANCELLED"
3812
- # 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"
3816
+ # 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"
3813
3817
  # resp.ingestion.error_info.message #=> String
3814
3818
  # resp.ingestion.row_info.rows_ingested #=> Integer
3815
3819
  # resp.ingestion.row_info.rows_dropped #=> Integer
3820
+ # resp.ingestion.row_info.total_rows_in_dataset #=> Integer
3816
3821
  # resp.ingestion.queue_info.waiting_on_ingestion #=> String
3817
3822
  # resp.ingestion.queue_info.queued_ingestion #=> String
3818
3823
  # resp.ingestion.created_time #=> Time
@@ -3832,6 +3837,43 @@ module Aws::QuickSight
3832
3837
  req.send_request(options)
3833
3838
  end
3834
3839
 
3840
+ # Provides a summary and status of IP Rules.
3841
+ #
3842
+ # @option params [required, String] :aws_account_id
3843
+ # Your AWS account ID.
3844
+ #
3845
+ # @return [Types::DescribeIpRestrictionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3846
+ #
3847
+ # * {Types::DescribeIpRestrictionResponse#aws_account_id #aws_account_id} => String
3848
+ # * {Types::DescribeIpRestrictionResponse#ip_restriction_rule_map #ip_restriction_rule_map} => Hash<String,String>
3849
+ # * {Types::DescribeIpRestrictionResponse#enabled #enabled} => Boolean
3850
+ # * {Types::DescribeIpRestrictionResponse#request_id #request_id} => String
3851
+ # * {Types::DescribeIpRestrictionResponse#status #status} => Integer
3852
+ #
3853
+ # @example Request syntax with placeholder values
3854
+ #
3855
+ # resp = client.describe_ip_restriction({
3856
+ # aws_account_id: "AwsAccountId", # required
3857
+ # })
3858
+ #
3859
+ # @example Response structure
3860
+ #
3861
+ # resp.aws_account_id #=> String
3862
+ # resp.ip_restriction_rule_map #=> Hash
3863
+ # resp.ip_restriction_rule_map["CIDR"] #=> String
3864
+ # resp.enabled #=> Boolean
3865
+ # resp.request_id #=> String
3866
+ # resp.status #=> Integer
3867
+ #
3868
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeIpRestriction AWS API Documentation
3869
+ #
3870
+ # @overload describe_ip_restriction(params = {})
3871
+ # @param [Hash] params ({})
3872
+ def describe_ip_restriction(params = {}, options = {})
3873
+ req = build_request(:describe_ip_restriction, params)
3874
+ req.send_request(options)
3875
+ end
3876
+
3835
3877
  # Describes the current namespace.
3836
3878
  #
3837
3879
  # @option params [required, String] :aws_account_id
@@ -4852,7 +4894,7 @@ module Aws::QuickSight
4852
4894
  end
4853
4895
 
4854
4896
  # Lists all of the datasets belonging to the current Amazon Web Services
4855
- # account in an Amazon Web Services Region;.
4897
+ # account in an Amazon Web Services Region.
4856
4898
  #
4857
4899
  # The permissions resource is
4858
4900
  # `arn:aws:quicksight:region:aws-account-id:dataset/*`.
@@ -4913,7 +4955,7 @@ module Aws::QuickSight
4913
4955
  req.send_request(options)
4914
4956
  end
4915
4957
 
4916
- # Lists data sources in current Amazon Web Services Region; that belong
4958
+ # Lists data sources in current Amazon Web Services Region that belong
4917
4959
  # to this Amazon Web Services account.
4918
4960
  #
4919
4961
  # @option params [required, String] :aws_account_id
@@ -5408,8 +5450,8 @@ module Aws::QuickSight
5408
5450
  # @example Request syntax with placeholder values
5409
5451
  #
5410
5452
  # resp = client.list_ingestions({
5411
- # data_set_id: "string", # required
5412
- # next_token: "string",
5453
+ # data_set_id: "String", # required
5454
+ # next_token: "String",
5413
5455
  # aws_account_id: "AwsAccountId", # required
5414
5456
  # max_results: 1,
5415
5457
  # })
@@ -5420,10 +5462,11 @@ module Aws::QuickSight
5420
5462
  # resp.ingestions[0].arn #=> String
5421
5463
  # resp.ingestions[0].ingestion_id #=> String
5422
5464
  # resp.ingestions[0].ingestion_status #=> String, one of "INITIALIZED", "QUEUED", "RUNNING", "FAILED", "COMPLETED", "CANCELLED"
5423
- # 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"
5465
+ # 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"
5424
5466
  # resp.ingestions[0].error_info.message #=> String
5425
5467
  # resp.ingestions[0].row_info.rows_ingested #=> Integer
5426
5468
  # resp.ingestions[0].row_info.rows_dropped #=> Integer
5469
+ # resp.ingestions[0].row_info.total_rows_in_dataset #=> Integer
5427
5470
  # resp.ingestions[0].queue_info.waiting_on_ingestion #=> String
5428
5471
  # resp.ingestions[0].queue_info.queued_ingestion #=> String
5429
5472
  # resp.ingestions[0].created_time #=> Time
@@ -6487,7 +6530,7 @@ module Aws::QuickSight
6487
6530
  end
6488
6531
 
6489
6532
  # Updates Amazon QuickSight customizations the current Amazon Web
6490
- # Services Region;. Currently, the only customization you can use is a
6533
+ # Services Region. Currently, the only customization you can use is a
6491
6534
  # theme.
6492
6535
  #
6493
6536
  # You can use customizations for your Amazon Web Services account or, if
@@ -6507,7 +6550,7 @@ module Aws::QuickSight
6507
6550
  #
6508
6551
  # @option params [required, Types::AccountCustomization] :account_customization
6509
6552
  # The Amazon QuickSight customizations you're updating in the current
6510
- # Amazon Web Services Region;.
6553
+ # Amazon Web Services Region.
6511
6554
  #
6512
6555
  # @return [Types::UpdateAccountCustomizationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6513
6556
  #
@@ -6785,7 +6828,7 @@ module Aws::QuickSight
6785
6828
  # the CreateTemplate API operation. For `SourceTemplate`, specify the
6786
6829
  # Amazon Resource Name (ARN) of the source template. The
6787
6830
  # `SourceTemplate` ARN can contain any Amazon Web Services account and
6788
- # any Amazon QuickSight-supported Amazon Web Services Region;.
6831
+ # any Amazon QuickSight-supported Amazon Web Services Region.
6789
6832
  #
6790
6833
  # Use the `DataSetReferences` entity within `SourceTemplate` to list the
6791
6834
  # replacement datasets for the placeholders listed in the original. The
@@ -7021,7 +7064,7 @@ module Aws::QuickSight
7021
7064
  #
7022
7065
  # @option params [required, String] :data_set_id
7023
7066
  # The ID for the dataset that you want to update. This ID is unique per
7024
- # Amazon Web Services Region; for each Amazon Web Services account.
7067
+ # Amazon Web Services Region for each Amazon Web Services account.
7025
7068
  #
7026
7069
  # @option params [required, String] :name
7027
7070
  # The display name for the dataset.
@@ -7256,7 +7299,7 @@ module Aws::QuickSight
7256
7299
  #
7257
7300
  # @option params [required, String] :data_set_id
7258
7301
  # The ID for the dataset whose permissions you want to update. This ID
7259
- # is unique per Amazon Web Services Region; for each Amazon Web Services
7302
+ # is unique per Amazon Web Services Region for each Amazon Web Services
7260
7303
  # account.
7261
7304
  #
7262
7305
  # @option params [Array<Types::ResourcePermission>] :grant_permissions
@@ -7314,7 +7357,7 @@ module Aws::QuickSight
7314
7357
  #
7315
7358
  # @option params [required, String] :data_source_id
7316
7359
  # The ID of the data source. This ID is unique per Amazon Web Services
7317
- # Region; for each Amazon Web Services account.
7360
+ # Region for each Amazon Web Services account.
7318
7361
  #
7319
7362
  # @option params [required, String] :name
7320
7363
  # A display name for the data source.
@@ -7579,7 +7622,7 @@ module Aws::QuickSight
7579
7622
  #
7580
7623
  # @option params [required, String] :data_source_id
7581
7624
  # The ID of the data source. This ID is unique per Amazon Web Services
7582
- # Region; for each Amazon Web Services account.
7625
+ # Region for each Amazon Web Services account.
7583
7626
  #
7584
7627
  # @option params [Array<Types::ResourcePermission>] :grant_permissions
7585
7628
  # A list of resource permissions that you want to grant on the data
@@ -7862,6 +7905,48 @@ module Aws::QuickSight
7862
7905
  req.send_request(options)
7863
7906
  end
7864
7907
 
7908
+ # Updates content and status of IP Rules.
7909
+ #
7910
+ # @option params [required, String] :aws_account_id
7911
+ # Your AWS account ID.
7912
+ #
7913
+ # @option params [Hash<String,String>] :ip_restriction_rule_map
7914
+ # Describes updated IP rules.
7915
+ #
7916
+ # @option params [Boolean] :enabled
7917
+ # Whether or not IP rules are enabled.
7918
+ #
7919
+ # @return [Types::UpdateIpRestrictionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7920
+ #
7921
+ # * {Types::UpdateIpRestrictionResponse#aws_account_id #aws_account_id} => String
7922
+ # * {Types::UpdateIpRestrictionResponse#request_id #request_id} => String
7923
+ # * {Types::UpdateIpRestrictionResponse#status #status} => Integer
7924
+ #
7925
+ # @example Request syntax with placeholder values
7926
+ #
7927
+ # resp = client.update_ip_restriction({
7928
+ # aws_account_id: "AwsAccountId", # required
7929
+ # ip_restriction_rule_map: {
7930
+ # "CIDR" => "IpRestrictionRuleDescription",
7931
+ # },
7932
+ # enabled: false,
7933
+ # })
7934
+ #
7935
+ # @example Response structure
7936
+ #
7937
+ # resp.aws_account_id #=> String
7938
+ # resp.request_id #=> String
7939
+ # resp.status #=> Integer
7940
+ #
7941
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateIpRestriction AWS API Documentation
7942
+ #
7943
+ # @overload update_ip_restriction(params = {})
7944
+ # @param [Hash] params ({})
7945
+ def update_ip_restriction(params = {}, options = {})
7946
+ req = build_request(:update_ip_restriction, params)
7947
+ req.send_request(options)
7948
+ end
7949
+
7865
7950
  # Updates a template from an existing Amazon QuickSight analysis or
7866
7951
  # another template.
7867
7952
  #
@@ -8465,7 +8550,7 @@ module Aws::QuickSight
8465
8550
  params: params,
8466
8551
  config: config)
8467
8552
  context[:gem_name] = 'aws-sdk-quicksight'
8468
- context[:gem_version] = '1.54.0'
8553
+ context[:gem_version] = '1.55.0'
8469
8554
  Seahorse::Client::Request.new(handlers, context)
8470
8555
  end
8471
8556