aws-sdk-quicksight 1.183.0 → 1.184.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: 2d5e1188316729eaab24fe455a61440bb77d5e53543c18636a79e7c0ad54df64
4
- data.tar.gz: e44b572b87ce17ae065da379f754f8957b60a7dd353bf8e0515063fa110f7fa8
3
+ metadata.gz: 35a2d4d468bc05ea762d762326bdb4107e2b5d77eedd32df41419b2af02c4ef2
4
+ data.tar.gz: 62ffaf17179de78a4210bf7da3eaabe0ba66f601656bab661c957620e4928201
5
5
  SHA512:
6
- metadata.gz: 2d19d0bb5b7096a76855f37b843d00d1bab2b1d9610e452820dfae0f6bf4beac37aa6f0d46e2aaae61c93884f51c6ea9ab3983b50c6eb32be6c52bff35ad0914
7
- data.tar.gz: 6ff0d15c6547e79eefb9b72f9641465554ad45402d372b505b43593a3363f7e8d0281ec65c19fba3bcc33d09d54bc32d4458b2c2574c0b4cf577ab5ad6222961
6
+ metadata.gz: d381abe8ad5aa767defd010528413394b3ed46420888f8f01734b7917ac3205762dc7a85522a75446baf561c2740acc6006c149fe834dd868db86cdb8bc0c605
7
+ data.tar.gz: bddb72286ad3609ef4395a604dc8f074f1921914962555169d8eb46ec2d97726e33a8b3ea3944b58ee3eec94d230c1bfe247b929ec61030bc88139baf5f015ad
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.184.0 (2026-05-29)
5
+ ------------------
6
+
7
+ * Feature - Adds support for creating, updating, describing, listing, and deleting an OAuthClientApplication resource, a new quicksight resource that allows customers to store OAuth configurations to connect to their databases via 3 Legged OAuth.
8
+
4
9
  1.183.0 (2026-05-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.183.0
1
+ 1.184.0
@@ -4389,6 +4389,104 @@ module Aws::QuickSight
4389
4389
  req.send_request(options)
4390
4390
  end
4391
4391
 
4392
+ # Creates an OAuthClientApplication.
4393
+ #
4394
+ # @option params [required, String] :aws_account_id
4395
+ # The Amazon Web Services account ID.
4396
+ #
4397
+ # @option params [required, String] :o_auth_client_application_id
4398
+ # An ID for the OAuthClientApplication that you want to create. This ID
4399
+ # is unique per Amazon Web Services Region for each Amazon Web Services
4400
+ # account.
4401
+ #
4402
+ # @option params [required, String] :name
4403
+ # The display name for the OAuthClientApplication.
4404
+ #
4405
+ # @option params [required, String] :o_auth_client_authentication_type
4406
+ # The authentication type to use for the OAuthClientApplication. This
4407
+ # determines the OAuth 2.0 grant flow that is used when the data source
4408
+ # connects to the identity provider. Valid values are `TOKEN`.
4409
+ #
4410
+ # @option params [required, String] :client_id
4411
+ # The client ID of the OAuth application that is registered with the
4412
+ # identity provider.
4413
+ #
4414
+ # @option params [required, String] :client_secret
4415
+ # The client secret of the OAuth application that is registered with the
4416
+ # identity provider.
4417
+ #
4418
+ # @option params [required, String] :o_auth_token_endpoint_url
4419
+ # The token endpoint URL of the identity provider that is used to obtain
4420
+ # access tokens.
4421
+ #
4422
+ # @option params [String] :o_auth_authorization_endpoint_url
4423
+ # The authorization endpoint URL of the identity provider that is used
4424
+ # to obtain authorization codes.
4425
+ #
4426
+ # @option params [String] :o_auth_scopes
4427
+ # The OAuth scopes that are requested when the OAuthClientApplication
4428
+ # obtains an access token from the identity provider.
4429
+ #
4430
+ # @option params [String] :data_source_type
4431
+ # The type of data source that the OAuthClientApplication is used with.
4432
+ # Valid values are `SNOWFLAKE`.
4433
+ #
4434
+ # @option params [Types::VpcConnectionProperties] :identity_provider_vpc_connection_properties
4435
+ # VPC connection properties.
4436
+ #
4437
+ # @option params [Array<Types::Tag>] :tags
4438
+ # Contains a map of the key-value pairs for the resource tag or tags
4439
+ # assigned to the OAuthClientApplication.
4440
+ #
4441
+ # @return [Types::CreateOAuthClientApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4442
+ #
4443
+ # * {Types::CreateOAuthClientApplicationResponse#arn #arn} => String
4444
+ # * {Types::CreateOAuthClientApplicationResponse#o_auth_client_application_id #o_auth_client_application_id} => String
4445
+ # * {Types::CreateOAuthClientApplicationResponse#creation_status #creation_status} => String
4446
+ # * {Types::CreateOAuthClientApplicationResponse#request_id #request_id} => String
4447
+ # * {Types::CreateOAuthClientApplicationResponse#status #status} => Integer
4448
+ #
4449
+ # @example Request syntax with placeholder values
4450
+ #
4451
+ # resp = client.create_o_auth_client_application({
4452
+ # aws_account_id: "AwsAccountId", # required
4453
+ # o_auth_client_application_id: "OAuthClientApplicationId", # required
4454
+ # name: "ResourceName", # required
4455
+ # o_auth_client_authentication_type: "TOKEN", # required, accepts TOKEN
4456
+ # client_id: "OAuthClientId", # required
4457
+ # client_secret: "OAuthClientSecret", # required
4458
+ # o_auth_token_endpoint_url: "OAuthTokenEndpointUrl", # required
4459
+ # o_auth_authorization_endpoint_url: "OAuthAuthorizationEndpointUrl",
4460
+ # o_auth_scopes: "OAuthScopesString",
4461
+ # data_source_type: "ADOBE_ANALYTICS", # accepts ADOBE_ANALYTICS, AMAZON_ELASTICSEARCH, ATHENA, AURORA, AURORA_POSTGRESQL, AWS_IOT_ANALYTICS, GITHUB, JIRA, MARIADB, MYSQL, ORACLE, POSTGRESQL, PRESTO, REDSHIFT, S3, S3_TABLES, SALESFORCE, SERVICENOW, SNOWFLAKE, SPARK, SQLSERVER, TERADATA, TWITTER, TIMESTREAM, AMAZON_OPENSEARCH, EXASOL, DATABRICKS, STARBURST, TRINO, BIGQUERY, GOOGLESHEETS, GOOGLE_DRIVE, CONFLUENCE, SHAREPOINT, ONE_DRIVE, WEB_CRAWLER, S3_KNOWLEDGE_BASE, QBUSINESS
4462
+ # identity_provider_vpc_connection_properties: {
4463
+ # vpc_connection_arn: "Arn", # required
4464
+ # },
4465
+ # tags: [
4466
+ # {
4467
+ # key: "TagKey", # required
4468
+ # value: "TagValue", # required
4469
+ # },
4470
+ # ],
4471
+ # })
4472
+ #
4473
+ # @example Response structure
4474
+ #
4475
+ # resp.arn #=> String
4476
+ # resp.o_auth_client_application_id #=> String
4477
+ # resp.creation_status #=> String, one of "CREATION_IN_PROGRESS", "CREATION_SUCCESSFUL", "CREATION_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_SUCCESSFUL", "UPDATE_FAILED", "DELETED"
4478
+ # resp.request_id #=> String
4479
+ # resp.status #=> Integer
4480
+ #
4481
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateOAuthClientApplication AWS API Documentation
4482
+ #
4483
+ # @overload create_o_auth_client_application(params = {})
4484
+ # @param [Hash] params ({})
4485
+ def create_o_auth_client_application(params = {}, options = {})
4486
+ req = build_request(:create_o_auth_client_application, params)
4487
+ req.send_request(options)
4488
+ end
4489
+
4392
4490
  # Creates a refresh schedule for a dataset. You can create up to 5
4393
4491
  # different schedules for a single dataset.
4394
4492
  #
@@ -6245,6 +6343,44 @@ module Aws::QuickSight
6245
6343
  req.send_request(options)
6246
6344
  end
6247
6345
 
6346
+ # Deletes an OAuthClientApplication.
6347
+ #
6348
+ # @option params [required, String] :aws_account_id
6349
+ # The Amazon Web Services account ID.
6350
+ #
6351
+ # @option params [required, String] :o_auth_client_application_id
6352
+ # The ID of the OAuthClientApplication that you want to delete.
6353
+ #
6354
+ # @return [Types::DeleteOAuthClientApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6355
+ #
6356
+ # * {Types::DeleteOAuthClientApplicationResponse#arn #arn} => String
6357
+ # * {Types::DeleteOAuthClientApplicationResponse#o_auth_client_application_id #o_auth_client_application_id} => String
6358
+ # * {Types::DeleteOAuthClientApplicationResponse#request_id #request_id} => String
6359
+ # * {Types::DeleteOAuthClientApplicationResponse#status #status} => Integer
6360
+ #
6361
+ # @example Request syntax with placeholder values
6362
+ #
6363
+ # resp = client.delete_o_auth_client_application({
6364
+ # aws_account_id: "AwsAccountId", # required
6365
+ # o_auth_client_application_id: "OAuthClientApplicationId", # required
6366
+ # })
6367
+ #
6368
+ # @example Response structure
6369
+ #
6370
+ # resp.arn #=> String
6371
+ # resp.o_auth_client_application_id #=> String
6372
+ # resp.request_id #=> String
6373
+ # resp.status #=> Integer
6374
+ #
6375
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteOAuthClientApplication AWS API Documentation
6376
+ #
6377
+ # @overload delete_o_auth_client_application(params = {})
6378
+ # @param [Hash] params ({})
6379
+ def delete_o_auth_client_application(params = {}, options = {})
6380
+ req = build_request(:delete_o_auth_client_application, params)
6381
+ req.send_request(options)
6382
+ end
6383
+
6248
6384
  # Deletes a refresh schedule from a dataset.
6249
6385
  #
6250
6386
  # @option params [required, String] :data_set_id
@@ -10131,6 +10267,52 @@ module Aws::QuickSight
10131
10267
  req.send_request(options)
10132
10268
  end
10133
10269
 
10270
+ # Describes an OAuthClientApplication.
10271
+ #
10272
+ # @option params [required, String] :aws_account_id
10273
+ # The Amazon Web Services account ID.
10274
+ #
10275
+ # @option params [required, String] :o_auth_client_application_id
10276
+ # The ID of the OAuthClientApplication that you want to describe.
10277
+ #
10278
+ # @return [Types::DescribeOAuthClientApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10279
+ #
10280
+ # * {Types::DescribeOAuthClientApplicationResponse#o_auth_client_application #o_auth_client_application} => Types::OAuthClientApplication
10281
+ # * {Types::DescribeOAuthClientApplicationResponse#request_id #request_id} => String
10282
+ # * {Types::DescribeOAuthClientApplicationResponse#status #status} => Integer
10283
+ #
10284
+ # @example Request syntax with placeholder values
10285
+ #
10286
+ # resp = client.describe_o_auth_client_application({
10287
+ # aws_account_id: "AwsAccountId", # required
10288
+ # o_auth_client_application_id: "OAuthClientApplicationId", # required
10289
+ # })
10290
+ #
10291
+ # @example Response structure
10292
+ #
10293
+ # resp.o_auth_client_application.o_auth_client_application_id #=> String
10294
+ # resp.o_auth_client_application.name #=> String
10295
+ # resp.o_auth_client_application.o_auth_client_authentication_type #=> String, one of "TOKEN"
10296
+ # resp.o_auth_client_application.o_auth_token_endpoint_url #=> String
10297
+ # resp.o_auth_client_application.o_auth_authorization_endpoint_url #=> String
10298
+ # resp.o_auth_client_application.o_auth_scopes #=> String
10299
+ # resp.o_auth_client_application.data_source_type #=> String, one of "ADOBE_ANALYTICS", "AMAZON_ELASTICSEARCH", "ATHENA", "AURORA", "AURORA_POSTGRESQL", "AWS_IOT_ANALYTICS", "GITHUB", "JIRA", "MARIADB", "MYSQL", "ORACLE", "POSTGRESQL", "PRESTO", "REDSHIFT", "S3", "S3_TABLES", "SALESFORCE", "SERVICENOW", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "TWITTER", "TIMESTREAM", "AMAZON_OPENSEARCH", "EXASOL", "DATABRICKS", "STARBURST", "TRINO", "BIGQUERY", "GOOGLESHEETS", "GOOGLE_DRIVE", "CONFLUENCE", "SHAREPOINT", "ONE_DRIVE", "WEB_CRAWLER", "S3_KNOWLEDGE_BASE", "QBUSINESS"
10300
+ # resp.o_auth_client_application.identity_provider_vpc_connection_properties.vpc_connection_arn #=> String
10301
+ # resp.o_auth_client_application.created_time #=> Time
10302
+ # resp.o_auth_client_application.last_updated_time #=> Time
10303
+ # resp.o_auth_client_application.arn #=> String
10304
+ # resp.request_id #=> String
10305
+ # resp.status #=> Integer
10306
+ #
10307
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeOAuthClientApplication AWS API Documentation
10308
+ #
10309
+ # @overload describe_o_auth_client_application(params = {})
10310
+ # @param [Hash] params ({})
10311
+ def describe_o_auth_client_application(params = {}, options = {})
10312
+ req = build_request(:describe_o_auth_client_application, params)
10313
+ req.send_request(options)
10314
+ end
10315
+
10134
10316
  # Describes a personalization configuration.
10135
10317
  #
10136
10318
  # @option params [required, String] :aws_account_id
@@ -13874,6 +14056,59 @@ module Aws::QuickSight
13874
14056
  req.send_request(options)
13875
14057
  end
13876
14058
 
14059
+ # Lists all OAuthClientApplications in the current Amazon Web Services
14060
+ # Region that belong to this Amazon Web Services account.
14061
+ #
14062
+ # @option params [required, String] :aws_account_id
14063
+ # The Amazon Web Services account ID.
14064
+ #
14065
+ # @option params [String] :next_token
14066
+ # A pagination token that can be used in a subsequent request.
14067
+ #
14068
+ # @option params [Integer] :max_results
14069
+ # The maximum number of results to return.
14070
+ #
14071
+ # @return [Types::ListOAuthClientApplicationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
14072
+ #
14073
+ # * {Types::ListOAuthClientApplicationsResponse#o_auth_client_applications #o_auth_client_applications} => Array&lt;Types::OAuthClientApplicationSummary&gt;
14074
+ # * {Types::ListOAuthClientApplicationsResponse#next_token #next_token} => String
14075
+ # * {Types::ListOAuthClientApplicationsResponse#request_id #request_id} => String
14076
+ # * {Types::ListOAuthClientApplicationsResponse#status #status} => Integer
14077
+ #
14078
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
14079
+ #
14080
+ # @example Request syntax with placeholder values
14081
+ #
14082
+ # resp = client.list_o_auth_client_applications({
14083
+ # aws_account_id: "AwsAccountId", # required
14084
+ # next_token: "String",
14085
+ # max_results: 1,
14086
+ # })
14087
+ #
14088
+ # @example Response structure
14089
+ #
14090
+ # resp.o_auth_client_applications #=> Array
14091
+ # resp.o_auth_client_applications[0].o_auth_client_application_id #=> String
14092
+ # resp.o_auth_client_applications[0].name #=> String
14093
+ # resp.o_auth_client_applications[0].o_auth_client_authentication_type #=> String, one of "TOKEN"
14094
+ # resp.o_auth_client_applications[0].data_source_type #=> String, one of "ADOBE_ANALYTICS", "AMAZON_ELASTICSEARCH", "ATHENA", "AURORA", "AURORA_POSTGRESQL", "AWS_IOT_ANALYTICS", "GITHUB", "JIRA", "MARIADB", "MYSQL", "ORACLE", "POSTGRESQL", "PRESTO", "REDSHIFT", "S3", "S3_TABLES", "SALESFORCE", "SERVICENOW", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "TWITTER", "TIMESTREAM", "AMAZON_OPENSEARCH", "EXASOL", "DATABRICKS", "STARBURST", "TRINO", "BIGQUERY", "GOOGLESHEETS", "GOOGLE_DRIVE", "CONFLUENCE", "SHAREPOINT", "ONE_DRIVE", "WEB_CRAWLER", "S3_KNOWLEDGE_BASE", "QBUSINESS"
14095
+ # resp.o_auth_client_applications[0].identity_provider_vpc_connection_properties.vpc_connection_arn #=> String
14096
+ # resp.o_auth_client_applications[0].created_time #=> Time
14097
+ # resp.o_auth_client_applications[0].last_updated_time #=> Time
14098
+ # resp.o_auth_client_applications[0].arn #=> String
14099
+ # resp.next_token #=> String
14100
+ # resp.request_id #=> String
14101
+ # resp.status #=> Integer
14102
+ #
14103
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListOAuthClientApplications AWS API Documentation
14104
+ #
14105
+ # @overload list_o_auth_client_applications(params = {})
14106
+ # @param [Hash] params ({})
14107
+ def list_o_auth_client_applications(params = {}, options = {})
14108
+ req = build_request(:list_o_auth_client_applications, params)
14109
+ req.send_request(options)
14110
+ end
14111
+
13877
14112
  # Lists the refresh schedules of a dataset. Each dataset can have up to
13878
14113
  # 5 schedules.
13879
14114
  #
@@ -20636,6 +20871,86 @@ module Aws::QuickSight
20636
20871
  req.send_request(options)
20637
20872
  end
20638
20873
 
20874
+ # Updates an OAuthClientApplication.
20875
+ #
20876
+ # @option params [required, String] :aws_account_id
20877
+ # The Amazon Web Services account ID.
20878
+ #
20879
+ # @option params [required, String] :o_auth_client_application_id
20880
+ # The ID of the OAuthClientApplication that you want to update.
20881
+ #
20882
+ # @option params [required, String] :name
20883
+ # The display name for the OAuthClientApplication.
20884
+ #
20885
+ # @option params [String] :client_id
20886
+ # The client ID of the OAuth application that is registered with the
20887
+ # identity provider.
20888
+ #
20889
+ # @option params [String] :client_secret
20890
+ # The client secret of the OAuth application that is registered with the
20891
+ # identity provider.
20892
+ #
20893
+ # @option params [String] :o_auth_token_endpoint_url
20894
+ # The token endpoint URL of the identity provider that is used to obtain
20895
+ # access tokens.
20896
+ #
20897
+ # @option params [String] :o_auth_authorization_endpoint_url
20898
+ # The authorization endpoint URL of the identity provider that is used
20899
+ # to obtain authorization codes.
20900
+ #
20901
+ # @option params [String] :o_auth_scopes
20902
+ # The OAuth scopes that are requested when the OAuthClientApplication
20903
+ # obtains an access token from the identity provider.
20904
+ #
20905
+ # @option params [String] :data_source_type
20906
+ # The type of data source that the OAuthClientApplication is used with.
20907
+ # Valid values are `SNOWFLAKE`.
20908
+ #
20909
+ # @option params [Types::VpcConnectionProperties] :identity_provider_vpc_connection_properties
20910
+ # VPC connection properties.
20911
+ #
20912
+ # @return [Types::UpdateOAuthClientApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
20913
+ #
20914
+ # * {Types::UpdateOAuthClientApplicationResponse#arn #arn} => String
20915
+ # * {Types::UpdateOAuthClientApplicationResponse#o_auth_client_application_id #o_auth_client_application_id} => String
20916
+ # * {Types::UpdateOAuthClientApplicationResponse#update_status #update_status} => String
20917
+ # * {Types::UpdateOAuthClientApplicationResponse#request_id #request_id} => String
20918
+ # * {Types::UpdateOAuthClientApplicationResponse#status #status} => Integer
20919
+ #
20920
+ # @example Request syntax with placeholder values
20921
+ #
20922
+ # resp = client.update_o_auth_client_application({
20923
+ # aws_account_id: "AwsAccountId", # required
20924
+ # o_auth_client_application_id: "OAuthClientApplicationId", # required
20925
+ # name: "ResourceName", # required
20926
+ # client_id: "OAuthClientId",
20927
+ # client_secret: "OAuthClientSecret",
20928
+ # o_auth_token_endpoint_url: "OAuthTokenEndpointUrl",
20929
+ # o_auth_authorization_endpoint_url: "OAuthAuthorizationEndpointUrl",
20930
+ # o_auth_scopes: "OAuthScopesString",
20931
+ # data_source_type: "ADOBE_ANALYTICS", # accepts ADOBE_ANALYTICS, AMAZON_ELASTICSEARCH, ATHENA, AURORA, AURORA_POSTGRESQL, AWS_IOT_ANALYTICS, GITHUB, JIRA, MARIADB, MYSQL, ORACLE, POSTGRESQL, PRESTO, REDSHIFT, S3, S3_TABLES, SALESFORCE, SERVICENOW, SNOWFLAKE, SPARK, SQLSERVER, TERADATA, TWITTER, TIMESTREAM, AMAZON_OPENSEARCH, EXASOL, DATABRICKS, STARBURST, TRINO, BIGQUERY, GOOGLESHEETS, GOOGLE_DRIVE, CONFLUENCE, SHAREPOINT, ONE_DRIVE, WEB_CRAWLER, S3_KNOWLEDGE_BASE, QBUSINESS
20932
+ # identity_provider_vpc_connection_properties: {
20933
+ # vpc_connection_arn: "Arn", # required
20934
+ # },
20935
+ # })
20936
+ #
20937
+ # @example Response structure
20938
+ #
20939
+ # resp.arn #=> String
20940
+ # resp.o_auth_client_application_id #=> String
20941
+ # resp.update_status #=> String, one of "CREATION_IN_PROGRESS", "CREATION_SUCCESSFUL", "CREATION_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_SUCCESSFUL", "UPDATE_FAILED", "DELETED"
20942
+ # resp.request_id #=> String
20943
+ # resp.status #=> Integer
20944
+ #
20945
+ # @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateOAuthClientApplication AWS API Documentation
20946
+ #
20947
+ # @overload update_o_auth_client_application(params = {})
20948
+ # @param [Hash] params ({})
20949
+ def update_o_auth_client_application(params = {}, options = {})
20950
+ req = build_request(:update_o_auth_client_application, params)
20951
+ req.send_request(options)
20952
+ end
20953
+
20639
20954
  # This API controls public sharing settings for your entire Quick Sight
20640
20955
  # account, affecting data security and access. When you enable public
20641
20956
  # sharing:
@@ -22266,7 +22581,7 @@ module Aws::QuickSight
22266
22581
  tracer: tracer
22267
22582
  )
22268
22583
  context[:gem_name] = 'aws-sdk-quicksight'
22269
- context[:gem_version] = '1.183.0'
22584
+ context[:gem_version] = '1.184.0'
22270
22585
  Seahorse::Client::Request.new(handlers, context)
22271
22586
  end
22272
22587