aws-sdk-quicksight 1.79.0 → 1.81.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +759 -3
- data/lib/aws-sdk-quicksight/client_api.rb +455 -2
- data/lib/aws-sdk-quicksight/endpoints.rb +84 -0
- data/lib/aws-sdk-quicksight/plugins/endpoints.rb +12 -0
- data/lib/aws-sdk-quicksight/types.rb +1284 -23
- data/lib/aws-sdk-quicksight.rb +1 -1
- metadata +4 -4
@@ -275,6 +275,11 @@ module Aws::QuickSight
|
|
275
275
|
# in the future.
|
276
276
|
#
|
277
277
|
#
|
278
|
+
# @option options [String] :sdk_ua_app_id
|
279
|
+
# A unique and opaque application ID that is appended to the
|
280
|
+
# User-Agent header as app/<sdk_ua_app_id>. It should have a
|
281
|
+
# maximum length of 50.
|
282
|
+
#
|
278
283
|
# @option options [String] :secret_access_key
|
279
284
|
#
|
280
285
|
# @option options [String] :session_token
|
@@ -1368,7 +1373,7 @@ module Aws::QuickSight
|
|
1368
1373
|
# },
|
1369
1374
|
# credentials: {
|
1370
1375
|
# credential_pair: {
|
1371
|
-
# username: "
|
1376
|
+
# username: "DbUsername", # required
|
1372
1377
|
# password: "Password", # required
|
1373
1378
|
# alternate_data_source_parameters: [
|
1374
1379
|
# {
|
@@ -4093,6 +4098,260 @@ module Aws::QuickSight
|
|
4093
4098
|
req.send_request(options)
|
4094
4099
|
end
|
4095
4100
|
|
4101
|
+
# Describes an existing export job.
|
4102
|
+
#
|
4103
|
+
# Poll job descriptions after a job starts to know the status of the
|
4104
|
+
# job. When a job succeeds, a URL is provided to download the exported
|
4105
|
+
# assets' data from. Download URLs are valid for five minutes after
|
4106
|
+
# they are generated. You can call the `DescribeAssetBundleExportJob`
|
4107
|
+
# API for a new download URL as needed.
|
4108
|
+
#
|
4109
|
+
# Job descriptions are available for 14 days after the job starts.
|
4110
|
+
#
|
4111
|
+
# @option params [required, String] :aws_account_id
|
4112
|
+
# The ID of the Amazon Web Services account the export job is executed
|
4113
|
+
# in.
|
4114
|
+
#
|
4115
|
+
# @option params [required, String] :asset_bundle_export_job_id
|
4116
|
+
# The ID of the job that you want described. The job ID is set when you
|
4117
|
+
# start a new job with a `StartAssetBundleExportJob` API call.
|
4118
|
+
#
|
4119
|
+
# @return [Types::DescribeAssetBundleExportJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4120
|
+
#
|
4121
|
+
# * {Types::DescribeAssetBundleExportJobResponse#job_status #job_status} => String
|
4122
|
+
# * {Types::DescribeAssetBundleExportJobResponse#download_url #download_url} => String
|
4123
|
+
# * {Types::DescribeAssetBundleExportJobResponse#errors #errors} => Array<Types::AssetBundleExportJobError>
|
4124
|
+
# * {Types::DescribeAssetBundleExportJobResponse#arn #arn} => String
|
4125
|
+
# * {Types::DescribeAssetBundleExportJobResponse#created_time #created_time} => Time
|
4126
|
+
# * {Types::DescribeAssetBundleExportJobResponse#asset_bundle_export_job_id #asset_bundle_export_job_id} => String
|
4127
|
+
# * {Types::DescribeAssetBundleExportJobResponse#aws_account_id #aws_account_id} => String
|
4128
|
+
# * {Types::DescribeAssetBundleExportJobResponse#resource_arns #resource_arns} => Array<String>
|
4129
|
+
# * {Types::DescribeAssetBundleExportJobResponse#include_all_dependencies #include_all_dependencies} => Boolean
|
4130
|
+
# * {Types::DescribeAssetBundleExportJobResponse#export_format #export_format} => String
|
4131
|
+
# * {Types::DescribeAssetBundleExportJobResponse#cloud_formation_override_property_configuration #cloud_formation_override_property_configuration} => Types::AssetBundleCloudFormationOverridePropertyConfiguration
|
4132
|
+
# * {Types::DescribeAssetBundleExportJobResponse#request_id #request_id} => String
|
4133
|
+
# * {Types::DescribeAssetBundleExportJobResponse#status #status} => Integer
|
4134
|
+
#
|
4135
|
+
# @example Request syntax with placeholder values
|
4136
|
+
#
|
4137
|
+
# resp = client.describe_asset_bundle_export_job({
|
4138
|
+
# aws_account_id: "AwsAccountId", # required
|
4139
|
+
# asset_bundle_export_job_id: "ShortRestrictiveResourceId", # required
|
4140
|
+
# })
|
4141
|
+
#
|
4142
|
+
# @example Response structure
|
4143
|
+
#
|
4144
|
+
# resp.job_status #=> String, one of "QUEUED_FOR_IMMEDIATE_EXECUTION", "IN_PROGRESS", "SUCCESSFUL", "FAILED"
|
4145
|
+
# resp.download_url #=> String
|
4146
|
+
# resp.errors #=> Array
|
4147
|
+
# resp.errors[0].arn #=> String
|
4148
|
+
# resp.errors[0].type #=> String
|
4149
|
+
# resp.errors[0].message #=> String
|
4150
|
+
# resp.arn #=> String
|
4151
|
+
# resp.created_time #=> Time
|
4152
|
+
# resp.asset_bundle_export_job_id #=> String
|
4153
|
+
# resp.aws_account_id #=> String
|
4154
|
+
# resp.resource_arns #=> Array
|
4155
|
+
# resp.resource_arns[0] #=> String
|
4156
|
+
# resp.include_all_dependencies #=> Boolean
|
4157
|
+
# resp.export_format #=> String, one of "CLOUDFORMATION_JSON", "QUICKSIGHT_JSON"
|
4158
|
+
# resp.cloud_formation_override_property_configuration.resource_id_override_configuration.prefix_for_all_resources #=> Boolean
|
4159
|
+
# resp.cloud_formation_override_property_configuration.vpc_connections #=> Array
|
4160
|
+
# resp.cloud_formation_override_property_configuration.vpc_connections[0].arn #=> String
|
4161
|
+
# resp.cloud_formation_override_property_configuration.vpc_connections[0].properties #=> Array
|
4162
|
+
# resp.cloud_formation_override_property_configuration.vpc_connections[0].properties[0] #=> String, one of "Name", "DnsResolvers", "RoleArn"
|
4163
|
+
# resp.cloud_formation_override_property_configuration.refresh_schedules #=> Array
|
4164
|
+
# resp.cloud_formation_override_property_configuration.refresh_schedules[0].arn #=> String
|
4165
|
+
# resp.cloud_formation_override_property_configuration.refresh_schedules[0].properties #=> Array
|
4166
|
+
# resp.cloud_formation_override_property_configuration.refresh_schedules[0].properties[0] #=> String, one of "StartAfterDateTime"
|
4167
|
+
# resp.cloud_formation_override_property_configuration.data_sources #=> Array
|
4168
|
+
# resp.cloud_formation_override_property_configuration.data_sources[0].arn #=> String
|
4169
|
+
# resp.cloud_formation_override_property_configuration.data_sources[0].properties #=> Array
|
4170
|
+
# resp.cloud_formation_override_property_configuration.data_sources[0].properties[0] #=> String, one of "Name", "DisableSsl", "SecretArn", "Username", "Password", "Domain", "WorkGroup", "Host", "Port", "Database", "DataSetName", "Catalog", "InstanceId", "ClusterId", "ManifestFileLocation", "Warehouse", "RoleArn"
|
4171
|
+
# resp.cloud_formation_override_property_configuration.data_sets #=> Array
|
4172
|
+
# resp.cloud_formation_override_property_configuration.data_sets[0].arn #=> String
|
4173
|
+
# resp.cloud_formation_override_property_configuration.data_sets[0].properties #=> Array
|
4174
|
+
# resp.cloud_formation_override_property_configuration.data_sets[0].properties[0] #=> String, one of "Name"
|
4175
|
+
# resp.cloud_formation_override_property_configuration.themes #=> Array
|
4176
|
+
# resp.cloud_formation_override_property_configuration.themes[0].arn #=> String
|
4177
|
+
# resp.cloud_formation_override_property_configuration.themes[0].properties #=> Array
|
4178
|
+
# resp.cloud_formation_override_property_configuration.themes[0].properties[0] #=> String, one of "Name"
|
4179
|
+
# resp.cloud_formation_override_property_configuration.analyses #=> Array
|
4180
|
+
# resp.cloud_formation_override_property_configuration.analyses[0].arn #=> String
|
4181
|
+
# resp.cloud_formation_override_property_configuration.analyses[0].properties #=> Array
|
4182
|
+
# resp.cloud_formation_override_property_configuration.analyses[0].properties[0] #=> String, one of "Name"
|
4183
|
+
# resp.cloud_formation_override_property_configuration.dashboards #=> Array
|
4184
|
+
# resp.cloud_formation_override_property_configuration.dashboards[0].arn #=> String
|
4185
|
+
# resp.cloud_formation_override_property_configuration.dashboards[0].properties #=> Array
|
4186
|
+
# resp.cloud_formation_override_property_configuration.dashboards[0].properties[0] #=> String, one of "Name"
|
4187
|
+
# resp.request_id #=> String
|
4188
|
+
# resp.status #=> Integer
|
4189
|
+
#
|
4190
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeAssetBundleExportJob AWS API Documentation
|
4191
|
+
#
|
4192
|
+
# @overload describe_asset_bundle_export_job(params = {})
|
4193
|
+
# @param [Hash] params ({})
|
4194
|
+
def describe_asset_bundle_export_job(params = {}, options = {})
|
4195
|
+
req = build_request(:describe_asset_bundle_export_job, params)
|
4196
|
+
req.send_request(options)
|
4197
|
+
end
|
4198
|
+
|
4199
|
+
# Describes an existing import job.
|
4200
|
+
#
|
4201
|
+
# Poll job descriptions after starting a job to know when it has
|
4202
|
+
# succeeded or failed. Job descriptions are available for 14 days after
|
4203
|
+
# job starts.
|
4204
|
+
#
|
4205
|
+
# @option params [required, String] :aws_account_id
|
4206
|
+
# The ID of the Amazon Web Services account the import job was executed
|
4207
|
+
# in.
|
4208
|
+
#
|
4209
|
+
# @option params [required, String] :asset_bundle_import_job_id
|
4210
|
+
# The ID of the job. The job ID is set when you start a new job with a
|
4211
|
+
# `StartAssetBundleImportJob` API call.
|
4212
|
+
#
|
4213
|
+
# @return [Types::DescribeAssetBundleImportJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4214
|
+
#
|
4215
|
+
# * {Types::DescribeAssetBundleImportJobResponse#job_status #job_status} => String
|
4216
|
+
# * {Types::DescribeAssetBundleImportJobResponse#errors #errors} => Array<Types::AssetBundleImportJobError>
|
4217
|
+
# * {Types::DescribeAssetBundleImportJobResponse#rollback_errors #rollback_errors} => Array<Types::AssetBundleImportJobError>
|
4218
|
+
# * {Types::DescribeAssetBundleImportJobResponse#arn #arn} => String
|
4219
|
+
# * {Types::DescribeAssetBundleImportJobResponse#created_time #created_time} => Time
|
4220
|
+
# * {Types::DescribeAssetBundleImportJobResponse#asset_bundle_import_job_id #asset_bundle_import_job_id} => String
|
4221
|
+
# * {Types::DescribeAssetBundleImportJobResponse#aws_account_id #aws_account_id} => String
|
4222
|
+
# * {Types::DescribeAssetBundleImportJobResponse#asset_bundle_import_source #asset_bundle_import_source} => Types::AssetBundleImportSourceDescription
|
4223
|
+
# * {Types::DescribeAssetBundleImportJobResponse#override_parameters #override_parameters} => Types::AssetBundleImportJobOverrideParameters
|
4224
|
+
# * {Types::DescribeAssetBundleImportJobResponse#failure_action #failure_action} => String
|
4225
|
+
# * {Types::DescribeAssetBundleImportJobResponse#request_id #request_id} => String
|
4226
|
+
# * {Types::DescribeAssetBundleImportJobResponse#status #status} => Integer
|
4227
|
+
#
|
4228
|
+
# @example Request syntax with placeholder values
|
4229
|
+
#
|
4230
|
+
# resp = client.describe_asset_bundle_import_job({
|
4231
|
+
# aws_account_id: "AwsAccountId", # required
|
4232
|
+
# asset_bundle_import_job_id: "ShortRestrictiveResourceId", # required
|
4233
|
+
# })
|
4234
|
+
#
|
4235
|
+
# @example Response structure
|
4236
|
+
#
|
4237
|
+
# resp.job_status #=> String, one of "QUEUED_FOR_IMMEDIATE_EXECUTION", "IN_PROGRESS", "SUCCESSFUL", "FAILED", "FAILED_ROLLBACK_IN_PROGRESS", "FAILED_ROLLBACK_COMPLETED", "FAILED_ROLLBACK_ERROR"
|
4238
|
+
# resp.errors #=> Array
|
4239
|
+
# resp.errors[0].arn #=> String
|
4240
|
+
# resp.errors[0].type #=> String
|
4241
|
+
# resp.errors[0].message #=> String
|
4242
|
+
# resp.rollback_errors #=> Array
|
4243
|
+
# resp.rollback_errors[0].arn #=> String
|
4244
|
+
# resp.rollback_errors[0].type #=> String
|
4245
|
+
# resp.rollback_errors[0].message #=> String
|
4246
|
+
# resp.arn #=> String
|
4247
|
+
# resp.created_time #=> Time
|
4248
|
+
# resp.asset_bundle_import_job_id #=> String
|
4249
|
+
# resp.aws_account_id #=> String
|
4250
|
+
# resp.asset_bundle_import_source.body #=> String
|
4251
|
+
# resp.asset_bundle_import_source.s3_uri #=> String
|
4252
|
+
# resp.override_parameters.resource_id_override_configuration.prefix_for_all_resources #=> String
|
4253
|
+
# resp.override_parameters.vpc_connections #=> Array
|
4254
|
+
# resp.override_parameters.vpc_connections[0].vpc_connection_id #=> String
|
4255
|
+
# resp.override_parameters.vpc_connections[0].name #=> String
|
4256
|
+
# resp.override_parameters.vpc_connections[0].subnet_ids #=> Array
|
4257
|
+
# resp.override_parameters.vpc_connections[0].subnet_ids[0] #=> String
|
4258
|
+
# resp.override_parameters.vpc_connections[0].security_group_ids #=> Array
|
4259
|
+
# resp.override_parameters.vpc_connections[0].security_group_ids[0] #=> String
|
4260
|
+
# resp.override_parameters.vpc_connections[0].dns_resolvers #=> Array
|
4261
|
+
# resp.override_parameters.vpc_connections[0].dns_resolvers[0] #=> String
|
4262
|
+
# resp.override_parameters.vpc_connections[0].role_arn #=> String
|
4263
|
+
# resp.override_parameters.refresh_schedules #=> Array
|
4264
|
+
# resp.override_parameters.refresh_schedules[0].data_set_id #=> String
|
4265
|
+
# resp.override_parameters.refresh_schedules[0].schedule_id #=> String
|
4266
|
+
# resp.override_parameters.refresh_schedules[0].start_after_date_time #=> Time
|
4267
|
+
# resp.override_parameters.data_sources #=> Array
|
4268
|
+
# resp.override_parameters.data_sources[0].data_source_id #=> String
|
4269
|
+
# resp.override_parameters.data_sources[0].name #=> String
|
4270
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.amazon_elasticsearch_parameters.domain #=> String
|
4271
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.athena_parameters.work_group #=> String
|
4272
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.athena_parameters.role_arn #=> String
|
4273
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.aurora_parameters.host #=> String
|
4274
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.aurora_parameters.port #=> Integer
|
4275
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.aurora_parameters.database #=> String
|
4276
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.aurora_postgre_sql_parameters.host #=> String
|
4277
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.aurora_postgre_sql_parameters.port #=> Integer
|
4278
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.aurora_postgre_sql_parameters.database #=> String
|
4279
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.aws_iot_analytics_parameters.data_set_name #=> String
|
4280
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.jira_parameters.site_base_url #=> String
|
4281
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.maria_db_parameters.host #=> String
|
4282
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.maria_db_parameters.port #=> Integer
|
4283
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.maria_db_parameters.database #=> String
|
4284
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.my_sql_parameters.host #=> String
|
4285
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.my_sql_parameters.port #=> Integer
|
4286
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.my_sql_parameters.database #=> String
|
4287
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.oracle_parameters.host #=> String
|
4288
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.oracle_parameters.port #=> Integer
|
4289
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.oracle_parameters.database #=> String
|
4290
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.postgre_sql_parameters.host #=> String
|
4291
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.postgre_sql_parameters.port #=> Integer
|
4292
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.postgre_sql_parameters.database #=> String
|
4293
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.presto_parameters.host #=> String
|
4294
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.presto_parameters.port #=> Integer
|
4295
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.presto_parameters.catalog #=> String
|
4296
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.rds_parameters.instance_id #=> String
|
4297
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.rds_parameters.database #=> String
|
4298
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.redshift_parameters.host #=> String
|
4299
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.redshift_parameters.port #=> Integer
|
4300
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.redshift_parameters.database #=> String
|
4301
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.redshift_parameters.cluster_id #=> String
|
4302
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.s3_parameters.manifest_file_location.bucket #=> String
|
4303
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.s3_parameters.manifest_file_location.key #=> String
|
4304
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.s3_parameters.role_arn #=> String
|
4305
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.service_now_parameters.site_base_url #=> String
|
4306
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.snowflake_parameters.host #=> String
|
4307
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.snowflake_parameters.database #=> String
|
4308
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.snowflake_parameters.warehouse #=> String
|
4309
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.spark_parameters.host #=> String
|
4310
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.spark_parameters.port #=> Integer
|
4311
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.sql_server_parameters.host #=> String
|
4312
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.sql_server_parameters.port #=> Integer
|
4313
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.sql_server_parameters.database #=> String
|
4314
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.teradata_parameters.host #=> String
|
4315
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.teradata_parameters.port #=> Integer
|
4316
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.teradata_parameters.database #=> String
|
4317
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.twitter_parameters.query #=> String
|
4318
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.twitter_parameters.max_rows #=> Integer
|
4319
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.amazon_open_search_parameters.domain #=> String
|
4320
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.exasol_parameters.host #=> String
|
4321
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.exasol_parameters.port #=> Integer
|
4322
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.databricks_parameters.host #=> String
|
4323
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.databricks_parameters.port #=> Integer
|
4324
|
+
# resp.override_parameters.data_sources[0].data_source_parameters.databricks_parameters.sql_endpoint_path #=> String
|
4325
|
+
# resp.override_parameters.data_sources[0].vpc_connection_properties.vpc_connection_arn #=> String
|
4326
|
+
# resp.override_parameters.data_sources[0].ssl_properties.disable_ssl #=> Boolean
|
4327
|
+
# resp.override_parameters.data_sources[0].credentials.credential_pair.username #=> String
|
4328
|
+
# resp.override_parameters.data_sources[0].credentials.credential_pair.password #=> String
|
4329
|
+
# resp.override_parameters.data_sources[0].credentials.secret_arn #=> String
|
4330
|
+
# resp.override_parameters.data_sets #=> Array
|
4331
|
+
# resp.override_parameters.data_sets[0].data_set_id #=> String
|
4332
|
+
# resp.override_parameters.data_sets[0].name #=> String
|
4333
|
+
# resp.override_parameters.themes #=> Array
|
4334
|
+
# resp.override_parameters.themes[0].theme_id #=> String
|
4335
|
+
# resp.override_parameters.themes[0].name #=> String
|
4336
|
+
# resp.override_parameters.analyses #=> Array
|
4337
|
+
# resp.override_parameters.analyses[0].analysis_id #=> String
|
4338
|
+
# resp.override_parameters.analyses[0].name #=> String
|
4339
|
+
# resp.override_parameters.dashboards #=> Array
|
4340
|
+
# resp.override_parameters.dashboards[0].dashboard_id #=> String
|
4341
|
+
# resp.override_parameters.dashboards[0].name #=> String
|
4342
|
+
# resp.failure_action #=> String, one of "DO_NOTHING", "ROLLBACK"
|
4343
|
+
# resp.request_id #=> String
|
4344
|
+
# resp.status #=> Integer
|
4345
|
+
#
|
4346
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeAssetBundleImportJob AWS API Documentation
|
4347
|
+
#
|
4348
|
+
# @overload describe_asset_bundle_import_job(params = {})
|
4349
|
+
# @param [Hash] params ({})
|
4350
|
+
def describe_asset_bundle_import_job(params = {}, options = {})
|
4351
|
+
req = build_request(:describe_asset_bundle_import_job, params)
|
4352
|
+
req.send_request(options)
|
4353
|
+
end
|
4354
|
+
|
4096
4355
|
# Provides a summary for a dashboard.
|
4097
4356
|
#
|
4098
4357
|
# @option params [required, String] :aws_account_id
|
@@ -6567,6 +6826,117 @@ module Aws::QuickSight
|
|
6567
6826
|
req.send_request(options)
|
6568
6827
|
end
|
6569
6828
|
|
6829
|
+
# Lists all asset bundle export jobs that have been taken place in the
|
6830
|
+
# last 14 days. Jobs created more than 14 days ago are deleted forever
|
6831
|
+
# and are not returned. If you are using the same job ID for multiple
|
6832
|
+
# jobs, `ListAssetBundleExportJobs` only returns the most recent job
|
6833
|
+
# that uses the repeated job ID.
|
6834
|
+
#
|
6835
|
+
# @option params [required, String] :aws_account_id
|
6836
|
+
# The ID of the Amazon Web Services account that the export jobs were
|
6837
|
+
# executed in.
|
6838
|
+
#
|
6839
|
+
# @option params [String] :next_token
|
6840
|
+
# The token for the next set of results, or null if there are no more
|
6841
|
+
# results.
|
6842
|
+
#
|
6843
|
+
# @option params [Integer] :max_results
|
6844
|
+
# The maximum number of results to be returned per request.
|
6845
|
+
#
|
6846
|
+
# @return [Types::ListAssetBundleExportJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6847
|
+
#
|
6848
|
+
# * {Types::ListAssetBundleExportJobsResponse#asset_bundle_export_job_summary_list #asset_bundle_export_job_summary_list} => Array<Types::AssetBundleExportJobSummary>
|
6849
|
+
# * {Types::ListAssetBundleExportJobsResponse#next_token #next_token} => String
|
6850
|
+
# * {Types::ListAssetBundleExportJobsResponse#request_id #request_id} => String
|
6851
|
+
# * {Types::ListAssetBundleExportJobsResponse#status #status} => Integer
|
6852
|
+
#
|
6853
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6854
|
+
#
|
6855
|
+
# @example Request syntax with placeholder values
|
6856
|
+
#
|
6857
|
+
# resp = client.list_asset_bundle_export_jobs({
|
6858
|
+
# aws_account_id: "AwsAccountId", # required
|
6859
|
+
# next_token: "String",
|
6860
|
+
# max_results: 1,
|
6861
|
+
# })
|
6862
|
+
#
|
6863
|
+
# @example Response structure
|
6864
|
+
#
|
6865
|
+
# resp.asset_bundle_export_job_summary_list #=> Array
|
6866
|
+
# resp.asset_bundle_export_job_summary_list[0].job_status #=> String, one of "QUEUED_FOR_IMMEDIATE_EXECUTION", "IN_PROGRESS", "SUCCESSFUL", "FAILED"
|
6867
|
+
# resp.asset_bundle_export_job_summary_list[0].arn #=> String
|
6868
|
+
# resp.asset_bundle_export_job_summary_list[0].created_time #=> Time
|
6869
|
+
# resp.asset_bundle_export_job_summary_list[0].asset_bundle_export_job_id #=> String
|
6870
|
+
# resp.asset_bundle_export_job_summary_list[0].include_all_dependencies #=> Boolean
|
6871
|
+
# resp.asset_bundle_export_job_summary_list[0].export_format #=> String, one of "CLOUDFORMATION_JSON", "QUICKSIGHT_JSON"
|
6872
|
+
# resp.next_token #=> String
|
6873
|
+
# resp.request_id #=> String
|
6874
|
+
# resp.status #=> Integer
|
6875
|
+
#
|
6876
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListAssetBundleExportJobs AWS API Documentation
|
6877
|
+
#
|
6878
|
+
# @overload list_asset_bundle_export_jobs(params = {})
|
6879
|
+
# @param [Hash] params ({})
|
6880
|
+
def list_asset_bundle_export_jobs(params = {}, options = {})
|
6881
|
+
req = build_request(:list_asset_bundle_export_jobs, params)
|
6882
|
+
req.send_request(options)
|
6883
|
+
end
|
6884
|
+
|
6885
|
+
# Lists all asset bundle import jobs that have taken place in the last
|
6886
|
+
# 14 days. Jobs created more than 14 days ago are deleted forever and
|
6887
|
+
# are not returned. If you are using the same job ID for multiple jobs,
|
6888
|
+
# `ListAssetBundleImportJobs` only returns the most recent job that uses
|
6889
|
+
# the repeated job ID.
|
6890
|
+
#
|
6891
|
+
# @option params [required, String] :aws_account_id
|
6892
|
+
# The ID of the Amazon Web Services account that the import jobs were
|
6893
|
+
# executed in.
|
6894
|
+
#
|
6895
|
+
# @option params [String] :next_token
|
6896
|
+
# The token for the next set of results, or null if there are no more
|
6897
|
+
# results.
|
6898
|
+
#
|
6899
|
+
# @option params [Integer] :max_results
|
6900
|
+
# The maximum number of results to be returned per request.
|
6901
|
+
#
|
6902
|
+
# @return [Types::ListAssetBundleImportJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6903
|
+
#
|
6904
|
+
# * {Types::ListAssetBundleImportJobsResponse#asset_bundle_import_job_summary_list #asset_bundle_import_job_summary_list} => Array<Types::AssetBundleImportJobSummary>
|
6905
|
+
# * {Types::ListAssetBundleImportJobsResponse#next_token #next_token} => String
|
6906
|
+
# * {Types::ListAssetBundleImportJobsResponse#request_id #request_id} => String
|
6907
|
+
# * {Types::ListAssetBundleImportJobsResponse#status #status} => Integer
|
6908
|
+
#
|
6909
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6910
|
+
#
|
6911
|
+
# @example Request syntax with placeholder values
|
6912
|
+
#
|
6913
|
+
# resp = client.list_asset_bundle_import_jobs({
|
6914
|
+
# aws_account_id: "AwsAccountId", # required
|
6915
|
+
# next_token: "String",
|
6916
|
+
# max_results: 1,
|
6917
|
+
# })
|
6918
|
+
#
|
6919
|
+
# @example Response structure
|
6920
|
+
#
|
6921
|
+
# resp.asset_bundle_import_job_summary_list #=> Array
|
6922
|
+
# resp.asset_bundle_import_job_summary_list[0].job_status #=> String, one of "QUEUED_FOR_IMMEDIATE_EXECUTION", "IN_PROGRESS", "SUCCESSFUL", "FAILED", "FAILED_ROLLBACK_IN_PROGRESS", "FAILED_ROLLBACK_COMPLETED", "FAILED_ROLLBACK_ERROR"
|
6923
|
+
# resp.asset_bundle_import_job_summary_list[0].arn #=> String
|
6924
|
+
# resp.asset_bundle_import_job_summary_list[0].created_time #=> Time
|
6925
|
+
# resp.asset_bundle_import_job_summary_list[0].asset_bundle_import_job_id #=> String
|
6926
|
+
# resp.asset_bundle_import_job_summary_list[0].failure_action #=> String, one of "DO_NOTHING", "ROLLBACK"
|
6927
|
+
# resp.next_token #=> String
|
6928
|
+
# resp.request_id #=> String
|
6929
|
+
# resp.status #=> Integer
|
6930
|
+
#
|
6931
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListAssetBundleImportJobs AWS API Documentation
|
6932
|
+
#
|
6933
|
+
# @overload list_asset_bundle_import_jobs(params = {})
|
6934
|
+
# @param [Hash] params ({})
|
6935
|
+
def list_asset_bundle_import_jobs(params = {}, options = {})
|
6936
|
+
req = build_request(:list_asset_bundle_import_jobs, params)
|
6937
|
+
req.send_request(options)
|
6938
|
+
end
|
6939
|
+
|
6570
6940
|
# Lists all the versions of the dashboards in the Amazon QuickSight
|
6571
6941
|
# subscription.
|
6572
6942
|
#
|
@@ -8703,6 +9073,392 @@ module Aws::QuickSight
|
|
8703
9073
|
req.send_request(options)
|
8704
9074
|
end
|
8705
9075
|
|
9076
|
+
# Starts an Asset Bundle export job.
|
9077
|
+
#
|
9078
|
+
# An Asset Bundle export job exports specified Amazon QuickSight assets.
|
9079
|
+
# You can also choose to export any asset dependencies in the same job.
|
9080
|
+
# Export jobs run asynchronously and can be polled with a
|
9081
|
+
# `DescribeAssetBundleExportJob` API call. When a job is successfully
|
9082
|
+
# completed, a download URL that contains the exported assets is
|
9083
|
+
# returned. The URL is valid for 5 minutes and can be refreshed with a
|
9084
|
+
# `DescribeAssetBundleExportJob` API call. Each Amazon QuickSight
|
9085
|
+
# account can run up to 10 export jobs concurrently.
|
9086
|
+
#
|
9087
|
+
# The API caller must have the necessary permissions in their IAM role
|
9088
|
+
# to access each resource before the resources can be exported.
|
9089
|
+
#
|
9090
|
+
# @option params [required, String] :aws_account_id
|
9091
|
+
# The ID of the Amazon Web Services account to export assets from.
|
9092
|
+
#
|
9093
|
+
# @option params [required, String] :asset_bundle_export_job_id
|
9094
|
+
# The ID of the job. This ID is unique while the job is running. After
|
9095
|
+
# the job is completed, you can reuse this ID for another job.
|
9096
|
+
#
|
9097
|
+
# @option params [required, Array<String>] :resource_arns
|
9098
|
+
# An array of resource ARNs to export. The following resources are
|
9099
|
+
# supported.
|
9100
|
+
#
|
9101
|
+
# * `Analysis`
|
9102
|
+
#
|
9103
|
+
# * `Dashboard`
|
9104
|
+
#
|
9105
|
+
# * `DataSet`
|
9106
|
+
#
|
9107
|
+
# * `DataSource`
|
9108
|
+
#
|
9109
|
+
# * `RefreshSchedule`
|
9110
|
+
#
|
9111
|
+
# * `Theme`
|
9112
|
+
#
|
9113
|
+
# * `VPCConnection`
|
9114
|
+
#
|
9115
|
+
# The API caller must have the necessary permissions in their IAM role
|
9116
|
+
# to access each resource before the resources can be exported.
|
9117
|
+
#
|
9118
|
+
# @option params [Boolean] :include_all_dependencies
|
9119
|
+
# A Boolean that determines whether all dependencies of each resource
|
9120
|
+
# ARN are recursively exported with the job. For example, say you
|
9121
|
+
# provided a Dashboard ARN to the `ResourceArns` parameter. If you set
|
9122
|
+
# `IncludeAllDependencies` to `TRUE`, any theme, dataset, and dataource
|
9123
|
+
# resource that is a dependency of the dashboard is also exported.
|
9124
|
+
#
|
9125
|
+
# @option params [required, String] :export_format
|
9126
|
+
# The export data format.
|
9127
|
+
#
|
9128
|
+
# @option params [Types::AssetBundleCloudFormationOverridePropertyConfiguration] :cloud_formation_override_property_configuration
|
9129
|
+
# An optional collection of structures that generate CloudFormation
|
9130
|
+
# parameters to override the existing resource property values when the
|
9131
|
+
# resource is exported to a new CloudFormation template.
|
9132
|
+
#
|
9133
|
+
# Use this field if the `ExportFormat` field of a
|
9134
|
+
# `StartAssetBundleExportJobRequest` API call is set to
|
9135
|
+
# `CLOUDFORMATION_JSON`.
|
9136
|
+
#
|
9137
|
+
# @return [Types::StartAssetBundleExportJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9138
|
+
#
|
9139
|
+
# * {Types::StartAssetBundleExportJobResponse#arn #arn} => String
|
9140
|
+
# * {Types::StartAssetBundleExportJobResponse#asset_bundle_export_job_id #asset_bundle_export_job_id} => String
|
9141
|
+
# * {Types::StartAssetBundleExportJobResponse#request_id #request_id} => String
|
9142
|
+
# * {Types::StartAssetBundleExportJobResponse#status #status} => Integer
|
9143
|
+
#
|
9144
|
+
# @example Request syntax with placeholder values
|
9145
|
+
#
|
9146
|
+
# resp = client.start_asset_bundle_export_job({
|
9147
|
+
# aws_account_id: "AwsAccountId", # required
|
9148
|
+
# asset_bundle_export_job_id: "ShortRestrictiveResourceId", # required
|
9149
|
+
# resource_arns: ["Arn"], # required
|
9150
|
+
# include_all_dependencies: false,
|
9151
|
+
# export_format: "CLOUDFORMATION_JSON", # required, accepts CLOUDFORMATION_JSON, QUICKSIGHT_JSON
|
9152
|
+
# cloud_formation_override_property_configuration: {
|
9153
|
+
# resource_id_override_configuration: {
|
9154
|
+
# prefix_for_all_resources: false,
|
9155
|
+
# },
|
9156
|
+
# vpc_connections: [
|
9157
|
+
# {
|
9158
|
+
# arn: "Arn",
|
9159
|
+
# properties: ["Name"], # required, accepts Name, DnsResolvers, RoleArn
|
9160
|
+
# },
|
9161
|
+
# ],
|
9162
|
+
# refresh_schedules: [
|
9163
|
+
# {
|
9164
|
+
# arn: "Arn",
|
9165
|
+
# properties: ["StartAfterDateTime"], # required, accepts StartAfterDateTime
|
9166
|
+
# },
|
9167
|
+
# ],
|
9168
|
+
# data_sources: [
|
9169
|
+
# {
|
9170
|
+
# arn: "Arn",
|
9171
|
+
# properties: ["Name"], # required, accepts Name, DisableSsl, SecretArn, Username, Password, Domain, WorkGroup, Host, Port, Database, DataSetName, Catalog, InstanceId, ClusterId, ManifestFileLocation, Warehouse, RoleArn
|
9172
|
+
# },
|
9173
|
+
# ],
|
9174
|
+
# data_sets: [
|
9175
|
+
# {
|
9176
|
+
# arn: "Arn",
|
9177
|
+
# properties: ["Name"], # required, accepts Name
|
9178
|
+
# },
|
9179
|
+
# ],
|
9180
|
+
# themes: [
|
9181
|
+
# {
|
9182
|
+
# arn: "Arn",
|
9183
|
+
# properties: ["Name"], # required, accepts Name
|
9184
|
+
# },
|
9185
|
+
# ],
|
9186
|
+
# analyses: [
|
9187
|
+
# {
|
9188
|
+
# arn: "Arn",
|
9189
|
+
# properties: ["Name"], # required, accepts Name
|
9190
|
+
# },
|
9191
|
+
# ],
|
9192
|
+
# dashboards: [
|
9193
|
+
# {
|
9194
|
+
# arn: "Arn",
|
9195
|
+
# properties: ["Name"], # required, accepts Name
|
9196
|
+
# },
|
9197
|
+
# ],
|
9198
|
+
# },
|
9199
|
+
# })
|
9200
|
+
#
|
9201
|
+
# @example Response structure
|
9202
|
+
#
|
9203
|
+
# resp.arn #=> String
|
9204
|
+
# resp.asset_bundle_export_job_id #=> String
|
9205
|
+
# resp.request_id #=> String
|
9206
|
+
# resp.status #=> Integer
|
9207
|
+
#
|
9208
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/StartAssetBundleExportJob AWS API Documentation
|
9209
|
+
#
|
9210
|
+
# @overload start_asset_bundle_export_job(params = {})
|
9211
|
+
# @param [Hash] params ({})
|
9212
|
+
def start_asset_bundle_export_job(params = {}, options = {})
|
9213
|
+
req = build_request(:start_asset_bundle_export_job, params)
|
9214
|
+
req.send_request(options)
|
9215
|
+
end
|
9216
|
+
|
9217
|
+
# Starts an Asset Bundle import job.
|
9218
|
+
#
|
9219
|
+
# An Asset Bundle import job imports specified Amazon QuickSight assets
|
9220
|
+
# into an Amazon QuickSight account. You can also choose to import a
|
9221
|
+
# naming prefix and specified configuration overrides. The assets that
|
9222
|
+
# are contained in the bundle file that you provide are used to create
|
9223
|
+
# or update a new or existing asset in your Amazon QuickSight account.
|
9224
|
+
# Each Amazon QuickSight account can run up to 10 import jobs
|
9225
|
+
# concurrently.
|
9226
|
+
#
|
9227
|
+
# The API caller must have the necessary `"create"`, `"describe"`, and
|
9228
|
+
# `"update"` permissions in their IAM role to access each resource type
|
9229
|
+
# that is contained in the bundle file before the resources can be
|
9230
|
+
# imported.
|
9231
|
+
#
|
9232
|
+
# @option params [required, String] :aws_account_id
|
9233
|
+
# The ID of the Amazon Web Services account to import assets into.
|
9234
|
+
#
|
9235
|
+
# @option params [required, String] :asset_bundle_import_job_id
|
9236
|
+
# The ID of the job. This ID is unique while the job is running. After
|
9237
|
+
# the job is completed, you can reuse this ID for another job.
|
9238
|
+
#
|
9239
|
+
# @option params [required, Types::AssetBundleImportSource] :asset_bundle_import_source
|
9240
|
+
# The source of the asset bundle zip file that contains the data that
|
9241
|
+
# you want to import.
|
9242
|
+
#
|
9243
|
+
# @option params [Types::AssetBundleImportJobOverrideParameters] :override_parameters
|
9244
|
+
# Optional overrides to be applied to the resource configuration before
|
9245
|
+
# import.
|
9246
|
+
#
|
9247
|
+
# @option params [String] :failure_action
|
9248
|
+
# The failure action for the import job.
|
9249
|
+
#
|
9250
|
+
# If you choose `ROLLBACK`, failed import jobs will attempt to undo any
|
9251
|
+
# asset changes caused by the failed job.
|
9252
|
+
#
|
9253
|
+
# If you choose `DO_NOTHING`, failed import jobs will not attempt to
|
9254
|
+
# roll back any asset changes caused by the failed job, possibly leaving
|
9255
|
+
# the Amazon QuickSight account in an inconsistent state.
|
9256
|
+
#
|
9257
|
+
# @return [Types::StartAssetBundleImportJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9258
|
+
#
|
9259
|
+
# * {Types::StartAssetBundleImportJobResponse#arn #arn} => String
|
9260
|
+
# * {Types::StartAssetBundleImportJobResponse#asset_bundle_import_job_id #asset_bundle_import_job_id} => String
|
9261
|
+
# * {Types::StartAssetBundleImportJobResponse#request_id #request_id} => String
|
9262
|
+
# * {Types::StartAssetBundleImportJobResponse#status #status} => Integer
|
9263
|
+
#
|
9264
|
+
# @example Request syntax with placeholder values
|
9265
|
+
#
|
9266
|
+
# resp = client.start_asset_bundle_import_job({
|
9267
|
+
# aws_account_id: "AwsAccountId", # required
|
9268
|
+
# asset_bundle_import_job_id: "ShortRestrictiveResourceId", # required
|
9269
|
+
# asset_bundle_import_source: { # required
|
9270
|
+
# body: "data",
|
9271
|
+
# s3_uri: "S3Uri",
|
9272
|
+
# },
|
9273
|
+
# override_parameters: {
|
9274
|
+
# resource_id_override_configuration: {
|
9275
|
+
# prefix_for_all_resources: "String",
|
9276
|
+
# },
|
9277
|
+
# vpc_connections: [
|
9278
|
+
# {
|
9279
|
+
# vpc_connection_id: "VPCConnectionResourceIdUnrestricted", # required
|
9280
|
+
# name: "ResourceName",
|
9281
|
+
# subnet_ids: ["SubnetId"],
|
9282
|
+
# security_group_ids: ["SecurityGroupId"],
|
9283
|
+
# dns_resolvers: ["IPv4Address"],
|
9284
|
+
# role_arn: "RoleArn",
|
9285
|
+
# },
|
9286
|
+
# ],
|
9287
|
+
# refresh_schedules: [
|
9288
|
+
# {
|
9289
|
+
# data_set_id: "ResourceId", # required
|
9290
|
+
# schedule_id: "String", # required
|
9291
|
+
# start_after_date_time: Time.now,
|
9292
|
+
# },
|
9293
|
+
# ],
|
9294
|
+
# data_sources: [
|
9295
|
+
# {
|
9296
|
+
# data_source_id: "ResourceId", # required
|
9297
|
+
# name: "ResourceName",
|
9298
|
+
# data_source_parameters: {
|
9299
|
+
# amazon_elasticsearch_parameters: {
|
9300
|
+
# domain: "Domain", # required
|
9301
|
+
# },
|
9302
|
+
# athena_parameters: {
|
9303
|
+
# work_group: "WorkGroup",
|
9304
|
+
# role_arn: "RoleArn",
|
9305
|
+
# },
|
9306
|
+
# aurora_parameters: {
|
9307
|
+
# host: "Host", # required
|
9308
|
+
# port: 1, # required
|
9309
|
+
# database: "Database", # required
|
9310
|
+
# },
|
9311
|
+
# aurora_postgre_sql_parameters: {
|
9312
|
+
# host: "Host", # required
|
9313
|
+
# port: 1, # required
|
9314
|
+
# database: "Database", # required
|
9315
|
+
# },
|
9316
|
+
# aws_iot_analytics_parameters: {
|
9317
|
+
# data_set_name: "DataSetName", # required
|
9318
|
+
# },
|
9319
|
+
# jira_parameters: {
|
9320
|
+
# site_base_url: "SiteBaseUrl", # required
|
9321
|
+
# },
|
9322
|
+
# maria_db_parameters: {
|
9323
|
+
# host: "Host", # required
|
9324
|
+
# port: 1, # required
|
9325
|
+
# database: "Database", # required
|
9326
|
+
# },
|
9327
|
+
# my_sql_parameters: {
|
9328
|
+
# host: "Host", # required
|
9329
|
+
# port: 1, # required
|
9330
|
+
# database: "Database", # required
|
9331
|
+
# },
|
9332
|
+
# oracle_parameters: {
|
9333
|
+
# host: "Host", # required
|
9334
|
+
# port: 1, # required
|
9335
|
+
# database: "Database", # required
|
9336
|
+
# },
|
9337
|
+
# postgre_sql_parameters: {
|
9338
|
+
# host: "Host", # required
|
9339
|
+
# port: 1, # required
|
9340
|
+
# database: "Database", # required
|
9341
|
+
# },
|
9342
|
+
# presto_parameters: {
|
9343
|
+
# host: "Host", # required
|
9344
|
+
# port: 1, # required
|
9345
|
+
# catalog: "Catalog", # required
|
9346
|
+
# },
|
9347
|
+
# rds_parameters: {
|
9348
|
+
# instance_id: "InstanceId", # required
|
9349
|
+
# database: "Database", # required
|
9350
|
+
# },
|
9351
|
+
# redshift_parameters: {
|
9352
|
+
# host: "Host",
|
9353
|
+
# port: 1,
|
9354
|
+
# database: "Database", # required
|
9355
|
+
# cluster_id: "ClusterId",
|
9356
|
+
# },
|
9357
|
+
# s3_parameters: {
|
9358
|
+
# manifest_file_location: { # required
|
9359
|
+
# bucket: "S3Bucket", # required
|
9360
|
+
# key: "S3Key", # required
|
9361
|
+
# },
|
9362
|
+
# role_arn: "RoleArn",
|
9363
|
+
# },
|
9364
|
+
# service_now_parameters: {
|
9365
|
+
# site_base_url: "SiteBaseUrl", # required
|
9366
|
+
# },
|
9367
|
+
# snowflake_parameters: {
|
9368
|
+
# host: "Host", # required
|
9369
|
+
# database: "Database", # required
|
9370
|
+
# warehouse: "Warehouse", # required
|
9371
|
+
# },
|
9372
|
+
# spark_parameters: {
|
9373
|
+
# host: "Host", # required
|
9374
|
+
# port: 1, # required
|
9375
|
+
# },
|
9376
|
+
# sql_server_parameters: {
|
9377
|
+
# host: "Host", # required
|
9378
|
+
# port: 1, # required
|
9379
|
+
# database: "Database", # required
|
9380
|
+
# },
|
9381
|
+
# teradata_parameters: {
|
9382
|
+
# host: "Host", # required
|
9383
|
+
# port: 1, # required
|
9384
|
+
# database: "Database", # required
|
9385
|
+
# },
|
9386
|
+
# twitter_parameters: {
|
9387
|
+
# query: "Query", # required
|
9388
|
+
# max_rows: 1, # required
|
9389
|
+
# },
|
9390
|
+
# amazon_open_search_parameters: {
|
9391
|
+
# domain: "Domain", # required
|
9392
|
+
# },
|
9393
|
+
# exasol_parameters: {
|
9394
|
+
# host: "Host", # required
|
9395
|
+
# port: 1, # required
|
9396
|
+
# },
|
9397
|
+
# databricks_parameters: {
|
9398
|
+
# host: "Host", # required
|
9399
|
+
# port: 1, # required
|
9400
|
+
# sql_endpoint_path: "SqlEndpointPath", # required
|
9401
|
+
# },
|
9402
|
+
# },
|
9403
|
+
# vpc_connection_properties: {
|
9404
|
+
# vpc_connection_arn: "Arn", # required
|
9405
|
+
# },
|
9406
|
+
# ssl_properties: {
|
9407
|
+
# disable_ssl: false,
|
9408
|
+
# },
|
9409
|
+
# credentials: {
|
9410
|
+
# credential_pair: {
|
9411
|
+
# username: "DbUsername", # required
|
9412
|
+
# password: "Password", # required
|
9413
|
+
# },
|
9414
|
+
# secret_arn: "SecretArn",
|
9415
|
+
# },
|
9416
|
+
# },
|
9417
|
+
# ],
|
9418
|
+
# data_sets: [
|
9419
|
+
# {
|
9420
|
+
# data_set_id: "ResourceId", # required
|
9421
|
+
# name: "ResourceName",
|
9422
|
+
# },
|
9423
|
+
# ],
|
9424
|
+
# themes: [
|
9425
|
+
# {
|
9426
|
+
# theme_id: "ResourceId", # required
|
9427
|
+
# name: "ResourceName",
|
9428
|
+
# },
|
9429
|
+
# ],
|
9430
|
+
# analyses: [
|
9431
|
+
# {
|
9432
|
+
# analysis_id: "ResourceId", # required
|
9433
|
+
# name: "ResourceName",
|
9434
|
+
# },
|
9435
|
+
# ],
|
9436
|
+
# dashboards: [
|
9437
|
+
# {
|
9438
|
+
# dashboard_id: "ResourceId", # required
|
9439
|
+
# name: "ResourceName",
|
9440
|
+
# },
|
9441
|
+
# ],
|
9442
|
+
# },
|
9443
|
+
# failure_action: "DO_NOTHING", # accepts DO_NOTHING, ROLLBACK
|
9444
|
+
# })
|
9445
|
+
#
|
9446
|
+
# @example Response structure
|
9447
|
+
#
|
9448
|
+
# resp.arn #=> String
|
9449
|
+
# resp.asset_bundle_import_job_id #=> String
|
9450
|
+
# resp.request_id #=> String
|
9451
|
+
# resp.status #=> Integer
|
9452
|
+
#
|
9453
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/StartAssetBundleImportJob AWS API Documentation
|
9454
|
+
#
|
9455
|
+
# @overload start_asset_bundle_import_job(params = {})
|
9456
|
+
# @param [Hash] params ({})
|
9457
|
+
def start_asset_bundle_import_job(params = {}, options = {})
|
9458
|
+
req = build_request(:start_asset_bundle_import_job, params)
|
9459
|
+
req.send_request(options)
|
9460
|
+
end
|
9461
|
+
|
8706
9462
|
# Assigns one or more tags (key-value pairs) to the specified Amazon
|
8707
9463
|
# QuickSight resource.
|
8708
9464
|
#
|
@@ -9770,7 +10526,7 @@ module Aws::QuickSight
|
|
9770
10526
|
# },
|
9771
10527
|
# credentials: {
|
9772
10528
|
# credential_pair: {
|
9773
|
-
# username: "
|
10529
|
+
# username: "DbUsername", # required
|
9774
10530
|
# password: "Password", # required
|
9775
10531
|
# alternate_data_source_parameters: [
|
9776
10532
|
# {
|
@@ -11392,7 +12148,7 @@ module Aws::QuickSight
|
|
11392
12148
|
params: params,
|
11393
12149
|
config: config)
|
11394
12150
|
context[:gem_name] = 'aws-sdk-quicksight'
|
11395
|
-
context[:gem_version] = '1.
|
12151
|
+
context[:gem_version] = '1.81.0'
|
11396
12152
|
Seahorse::Client::Request.new(handlers, context)
|
11397
12153
|
end
|
11398
12154
|
|