aws-sdk-athena 1.28.1 → 1.33.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-athena.rb +5 -2
- data/lib/aws-sdk-athena/client.rb +25 -8
- data/lib/aws-sdk-athena/client_api.rb +2 -0
- data/lib/aws-sdk-athena/errors.rb +2 -0
- data/lib/aws-sdk-athena/resource.rb +2 -0
- data/lib/aws-sdk-athena/types.rb +78 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ded4a62dd815a66629528dcd2812cdcb8b7e14eace0838b3a95ae0029967fe3
|
4
|
+
data.tar.gz: d07089b4c1b36e30ac02d5370ebe5308ae1dcef866fcc0270a83961dbb03333c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bc7d115948ca257442e26c4674d859de4cba8bacf661dc3ad6f3b4e92ada9ca89435b09fda56f339f72c0bed96dff2ae83ff93a02669027d129bbf752dcdecac
|
7
|
+
data.tar.gz: f73014467a539120e958eff487c1973fb0cdd52b44fe81795ec68d0de1e942fcb61e2c8a3a7a98347f58c1b4d2bb875f545b66439a1e8e966684336acd7bfc1f
|
data/lib/aws-sdk-athena.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv4'
|
10
13
|
|
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-athena/customizations'
|
|
42
45
|
#
|
43
46
|
# See {Errors} for more information.
|
44
47
|
#
|
45
|
-
#
|
48
|
+
# @!group service
|
46
49
|
module Aws::Athena
|
47
50
|
|
48
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.33.0'
|
49
52
|
|
50
53
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -83,13 +85,28 @@ module Aws::Athena
|
|
83
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
84
86
|
# credentials.
|
85
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
86
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
87
103
|
# from an EC2 IMDS on an EC2 instance.
|
88
104
|
#
|
89
|
-
# * `Aws::
|
90
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
91
107
|
#
|
92
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
93
110
|
#
|
94
111
|
# When `:credentials` are not configured directly, the following
|
95
112
|
# locations will be searched for credentials:
|
@@ -99,10 +116,10 @@ module Aws::Athena
|
|
99
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
100
117
|
# * `~/.aws/credentials`
|
101
118
|
# * `~/.aws/config`
|
102
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
103
|
-
# very aggressive. Construct and pass an instance of
|
104
|
-
# `Aws::InstanceProfileCredentails`
|
105
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
106
123
|
#
|
107
124
|
# @option options [required, String] :region
|
108
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -1705,7 +1722,7 @@ module Aws::Athena
|
|
1705
1722
|
params: params,
|
1706
1723
|
config: config)
|
1707
1724
|
context[:gem_name] = 'aws-sdk-athena'
|
1708
|
-
context[:gem_version] = '1.
|
1725
|
+
context[:gem_version] = '1.33.0'
|
1709
1726
|
Seahorse::Client::Request.new(handlers, context)
|
1710
1727
|
end
|
1711
1728
|
|
data/lib/aws-sdk-athena/types.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -23,6 +25,7 @@ module Aws::Athena
|
|
23
25
|
#
|
24
26
|
class BatchGetNamedQueryInput < Struct.new(
|
25
27
|
:named_query_ids)
|
28
|
+
SENSITIVE = []
|
26
29
|
include Aws::Structure
|
27
30
|
end
|
28
31
|
|
@@ -39,6 +42,7 @@ module Aws::Athena
|
|
39
42
|
class BatchGetNamedQueryOutput < Struct.new(
|
40
43
|
:named_queries,
|
41
44
|
:unprocessed_named_query_ids)
|
45
|
+
SENSITIVE = []
|
42
46
|
include Aws::Structure
|
43
47
|
end
|
44
48
|
|
@@ -57,6 +61,7 @@ module Aws::Athena
|
|
57
61
|
#
|
58
62
|
class BatchGetQueryExecutionInput < Struct.new(
|
59
63
|
:query_execution_ids)
|
64
|
+
SENSITIVE = []
|
60
65
|
include Aws::Structure
|
61
66
|
end
|
62
67
|
|
@@ -73,6 +78,7 @@ module Aws::Athena
|
|
73
78
|
class BatchGetQueryExecutionOutput < Struct.new(
|
74
79
|
:query_executions,
|
75
80
|
:unprocessed_query_execution_ids)
|
81
|
+
SENSITIVE = []
|
76
82
|
include Aws::Structure
|
77
83
|
end
|
78
84
|
|
@@ -96,6 +102,7 @@ module Aws::Athena
|
|
96
102
|
:name,
|
97
103
|
:type,
|
98
104
|
:comment)
|
105
|
+
SENSITIVE = []
|
99
106
|
include Aws::Structure
|
100
107
|
end
|
101
108
|
|
@@ -156,6 +163,7 @@ module Aws::Athena
|
|
156
163
|
:scale,
|
157
164
|
:nullable,
|
158
165
|
:case_sensitive)
|
166
|
+
SENSITIVE = []
|
159
167
|
include Aws::Structure
|
160
168
|
end
|
161
169
|
|
@@ -236,6 +244,7 @@ module Aws::Athena
|
|
236
244
|
:description,
|
237
245
|
:parameters,
|
238
246
|
:tags)
|
247
|
+
SENSITIVE = []
|
239
248
|
include Aws::Structure
|
240
249
|
end
|
241
250
|
|
@@ -300,6 +309,7 @@ module Aws::Athena
|
|
300
309
|
:query_string,
|
301
310
|
:client_request_token,
|
302
311
|
:work_group)
|
312
|
+
SENSITIVE = []
|
303
313
|
include Aws::Structure
|
304
314
|
end
|
305
315
|
|
@@ -311,6 +321,7 @@ module Aws::Athena
|
|
311
321
|
#
|
312
322
|
class CreateNamedQueryOutput < Struct.new(
|
313
323
|
:named_query_id)
|
324
|
+
SENSITIVE = []
|
314
325
|
include Aws::Structure
|
315
326
|
end
|
316
327
|
|
@@ -373,6 +384,7 @@ module Aws::Athena
|
|
373
384
|
:configuration,
|
374
385
|
:description,
|
375
386
|
:tags)
|
387
|
+
SENSITIVE = []
|
376
388
|
include Aws::Structure
|
377
389
|
end
|
378
390
|
|
@@ -433,6 +445,7 @@ module Aws::Athena
|
|
433
445
|
:description,
|
434
446
|
:type,
|
435
447
|
:parameters)
|
448
|
+
SENSITIVE = []
|
436
449
|
include Aws::Structure
|
437
450
|
end
|
438
451
|
|
@@ -452,6 +465,7 @@ module Aws::Athena
|
|
452
465
|
class DataCatalogSummary < Struct.new(
|
453
466
|
:catalog_name,
|
454
467
|
:type)
|
468
|
+
SENSITIVE = []
|
455
469
|
include Aws::Structure
|
456
470
|
end
|
457
471
|
|
@@ -475,6 +489,7 @@ module Aws::Athena
|
|
475
489
|
:name,
|
476
490
|
:description,
|
477
491
|
:parameters)
|
492
|
+
SENSITIVE = []
|
478
493
|
include Aws::Structure
|
479
494
|
end
|
480
495
|
|
@@ -488,6 +503,7 @@ module Aws::Athena
|
|
488
503
|
#
|
489
504
|
class Datum < Struct.new(
|
490
505
|
:var_char_value)
|
506
|
+
SENSITIVE = []
|
491
507
|
include Aws::Structure
|
492
508
|
end
|
493
509
|
|
@@ -506,6 +522,7 @@ module Aws::Athena
|
|
506
522
|
#
|
507
523
|
class DeleteDataCatalogInput < Struct.new(
|
508
524
|
:name)
|
525
|
+
SENSITIVE = []
|
509
526
|
include Aws::Structure
|
510
527
|
end
|
511
528
|
|
@@ -531,6 +548,7 @@ module Aws::Athena
|
|
531
548
|
#
|
532
549
|
class DeleteNamedQueryInput < Struct.new(
|
533
550
|
:named_query_id)
|
551
|
+
SENSITIVE = []
|
534
552
|
include Aws::Structure
|
535
553
|
end
|
536
554
|
|
@@ -560,6 +578,7 @@ module Aws::Athena
|
|
560
578
|
class DeleteWorkGroupInput < Struct.new(
|
561
579
|
:work_group,
|
562
580
|
:recursive_delete_option)
|
581
|
+
SENSITIVE = []
|
563
582
|
include Aws::Structure
|
564
583
|
end
|
565
584
|
|
@@ -599,6 +618,7 @@ module Aws::Athena
|
|
599
618
|
class EncryptionConfiguration < Struct.new(
|
600
619
|
:encryption_option,
|
601
620
|
:kms_key)
|
621
|
+
SENSITIVE = []
|
602
622
|
include Aws::Structure
|
603
623
|
end
|
604
624
|
|
@@ -617,6 +637,7 @@ module Aws::Athena
|
|
617
637
|
#
|
618
638
|
class GetDataCatalogInput < Struct.new(
|
619
639
|
:name)
|
640
|
+
SENSITIVE = []
|
620
641
|
include Aws::Structure
|
621
642
|
end
|
622
643
|
|
@@ -628,6 +649,7 @@ module Aws::Athena
|
|
628
649
|
#
|
629
650
|
class GetDataCatalogOutput < Struct.new(
|
630
651
|
:data_catalog)
|
652
|
+
SENSITIVE = []
|
631
653
|
include Aws::Structure
|
632
654
|
end
|
633
655
|
|
@@ -652,6 +674,7 @@ module Aws::Athena
|
|
652
674
|
class GetDatabaseInput < Struct.new(
|
653
675
|
:catalog_name,
|
654
676
|
:database_name)
|
677
|
+
SENSITIVE = []
|
655
678
|
include Aws::Structure
|
656
679
|
end
|
657
680
|
|
@@ -663,6 +686,7 @@ module Aws::Athena
|
|
663
686
|
#
|
664
687
|
class GetDatabaseOutput < Struct.new(
|
665
688
|
:database)
|
689
|
+
SENSITIVE = []
|
666
690
|
include Aws::Structure
|
667
691
|
end
|
668
692
|
|
@@ -681,6 +705,7 @@ module Aws::Athena
|
|
681
705
|
#
|
682
706
|
class GetNamedQueryInput < Struct.new(
|
683
707
|
:named_query_id)
|
708
|
+
SENSITIVE = []
|
684
709
|
include Aws::Structure
|
685
710
|
end
|
686
711
|
|
@@ -692,6 +717,7 @@ module Aws::Athena
|
|
692
717
|
#
|
693
718
|
class GetNamedQueryOutput < Struct.new(
|
694
719
|
:named_query)
|
720
|
+
SENSITIVE = []
|
695
721
|
include Aws::Structure
|
696
722
|
end
|
697
723
|
|
@@ -710,6 +736,7 @@ module Aws::Athena
|
|
710
736
|
#
|
711
737
|
class GetQueryExecutionInput < Struct.new(
|
712
738
|
:query_execution_id)
|
739
|
+
SENSITIVE = []
|
713
740
|
include Aws::Structure
|
714
741
|
end
|
715
742
|
|
@@ -721,6 +748,7 @@ module Aws::Athena
|
|
721
748
|
#
|
722
749
|
class GetQueryExecutionOutput < Struct.new(
|
723
750
|
:query_execution)
|
751
|
+
SENSITIVE = []
|
724
752
|
include Aws::Structure
|
725
753
|
end
|
726
754
|
|
@@ -754,6 +782,7 @@ module Aws::Athena
|
|
754
782
|
:query_execution_id,
|
755
783
|
:next_token,
|
756
784
|
:max_results)
|
785
|
+
SENSITIVE = []
|
757
786
|
include Aws::Structure
|
758
787
|
end
|
759
788
|
|
@@ -778,6 +807,7 @@ module Aws::Athena
|
|
778
807
|
:update_count,
|
779
808
|
:result_set,
|
780
809
|
:next_token)
|
810
|
+
SENSITIVE = []
|
781
811
|
include Aws::Structure
|
782
812
|
end
|
783
813
|
|
@@ -809,6 +839,7 @@ module Aws::Athena
|
|
809
839
|
:catalog_name,
|
810
840
|
:database_name,
|
811
841
|
:table_name)
|
842
|
+
SENSITIVE = []
|
812
843
|
include Aws::Structure
|
813
844
|
end
|
814
845
|
|
@@ -820,6 +851,7 @@ module Aws::Athena
|
|
820
851
|
#
|
821
852
|
class GetTableMetadataOutput < Struct.new(
|
822
853
|
:table_metadata)
|
854
|
+
SENSITIVE = []
|
823
855
|
include Aws::Structure
|
824
856
|
end
|
825
857
|
|
@@ -838,6 +870,7 @@ module Aws::Athena
|
|
838
870
|
#
|
839
871
|
class GetWorkGroupInput < Struct.new(
|
840
872
|
:work_group)
|
873
|
+
SENSITIVE = []
|
841
874
|
include Aws::Structure
|
842
875
|
end
|
843
876
|
|
@@ -849,6 +882,7 @@ module Aws::Athena
|
|
849
882
|
#
|
850
883
|
class GetWorkGroupOutput < Struct.new(
|
851
884
|
:work_group)
|
885
|
+
SENSITIVE = []
|
852
886
|
include Aws::Structure
|
853
887
|
end
|
854
888
|
|
@@ -862,6 +896,7 @@ module Aws::Athena
|
|
862
896
|
#
|
863
897
|
class InternalServerException < Struct.new(
|
864
898
|
:message)
|
899
|
+
SENSITIVE = []
|
865
900
|
include Aws::Structure
|
866
901
|
end
|
867
902
|
|
@@ -881,6 +916,7 @@ module Aws::Athena
|
|
881
916
|
class InvalidRequestException < Struct.new(
|
882
917
|
:athena_error_code,
|
883
918
|
:message)
|
919
|
+
SENSITIVE = []
|
884
920
|
include Aws::Structure
|
885
921
|
end
|
886
922
|
|
@@ -908,6 +944,7 @@ module Aws::Athena
|
|
908
944
|
class ListDataCatalogsInput < Struct.new(
|
909
945
|
:next_token,
|
910
946
|
:max_results)
|
947
|
+
SENSITIVE = []
|
911
948
|
include Aws::Structure
|
912
949
|
end
|
913
950
|
|
@@ -927,6 +964,7 @@ module Aws::Athena
|
|
927
964
|
class ListDataCatalogsOutput < Struct.new(
|
928
965
|
:data_catalogs_summary,
|
929
966
|
:next_token)
|
967
|
+
SENSITIVE = []
|
930
968
|
include Aws::Structure
|
931
969
|
end
|
932
970
|
|
@@ -960,6 +998,7 @@ module Aws::Athena
|
|
960
998
|
:catalog_name,
|
961
999
|
:next_token,
|
962
1000
|
:max_results)
|
1001
|
+
SENSITIVE = []
|
963
1002
|
include Aws::Structure
|
964
1003
|
end
|
965
1004
|
|
@@ -979,6 +1018,7 @@ module Aws::Athena
|
|
979
1018
|
class ListDatabasesOutput < Struct.new(
|
980
1019
|
:database_list,
|
981
1020
|
:next_token)
|
1021
|
+
SENSITIVE = []
|
982
1022
|
include Aws::Structure
|
983
1023
|
end
|
984
1024
|
|
@@ -1014,6 +1054,7 @@ module Aws::Athena
|
|
1014
1054
|
:next_token,
|
1015
1055
|
:max_results,
|
1016
1056
|
:work_group)
|
1057
|
+
SENSITIVE = []
|
1017
1058
|
include Aws::Structure
|
1018
1059
|
end
|
1019
1060
|
|
@@ -1033,6 +1074,7 @@ module Aws::Athena
|
|
1033
1074
|
class ListNamedQueriesOutput < Struct.new(
|
1034
1075
|
:named_query_ids,
|
1035
1076
|
:next_token)
|
1077
|
+
SENSITIVE = []
|
1036
1078
|
include Aws::Structure
|
1037
1079
|
end
|
1038
1080
|
|
@@ -1068,6 +1110,7 @@ module Aws::Athena
|
|
1068
1110
|
:next_token,
|
1069
1111
|
:max_results,
|
1070
1112
|
:work_group)
|
1113
|
+
SENSITIVE = []
|
1071
1114
|
include Aws::Structure
|
1072
1115
|
end
|
1073
1116
|
|
@@ -1084,6 +1127,7 @@ module Aws::Athena
|
|
1084
1127
|
class ListQueryExecutionsOutput < Struct.new(
|
1085
1128
|
:query_execution_ids,
|
1086
1129
|
:next_token)
|
1130
|
+
SENSITIVE = []
|
1087
1131
|
include Aws::Structure
|
1088
1132
|
end
|
1089
1133
|
|
@@ -1132,6 +1176,7 @@ module Aws::Athena
|
|
1132
1176
|
:expression,
|
1133
1177
|
:next_token,
|
1134
1178
|
:max_results)
|
1179
|
+
SENSITIVE = []
|
1135
1180
|
include Aws::Structure
|
1136
1181
|
end
|
1137
1182
|
|
@@ -1151,6 +1196,7 @@ module Aws::Athena
|
|
1151
1196
|
class ListTableMetadataOutput < Struct.new(
|
1152
1197
|
:table_metadata_list,
|
1153
1198
|
:next_token)
|
1199
|
+
SENSITIVE = []
|
1154
1200
|
include Aws::Structure
|
1155
1201
|
end
|
1156
1202
|
|
@@ -1184,6 +1230,7 @@ module Aws::Athena
|
|
1184
1230
|
:resource_arn,
|
1185
1231
|
:next_token,
|
1186
1232
|
:max_results)
|
1233
|
+
SENSITIVE = []
|
1187
1234
|
include Aws::Structure
|
1188
1235
|
end
|
1189
1236
|
|
@@ -1200,6 +1247,7 @@ module Aws::Athena
|
|
1200
1247
|
class ListTagsForResourceOutput < Struct.new(
|
1201
1248
|
:tags,
|
1202
1249
|
:next_token)
|
1250
|
+
SENSITIVE = []
|
1203
1251
|
include Aws::Structure
|
1204
1252
|
end
|
1205
1253
|
|
@@ -1227,6 +1275,7 @@ module Aws::Athena
|
|
1227
1275
|
class ListWorkGroupsInput < Struct.new(
|
1228
1276
|
:next_token,
|
1229
1277
|
:max_results)
|
1278
|
+
SENSITIVE = []
|
1230
1279
|
include Aws::Structure
|
1231
1280
|
end
|
1232
1281
|
|
@@ -1247,6 +1296,7 @@ module Aws::Athena
|
|
1247
1296
|
class ListWorkGroupsOutput < Struct.new(
|
1248
1297
|
:work_groups,
|
1249
1298
|
:next_token)
|
1299
|
+
SENSITIVE = []
|
1250
1300
|
include Aws::Structure
|
1251
1301
|
end
|
1252
1302
|
|
@@ -1264,6 +1314,7 @@ module Aws::Athena
|
|
1264
1314
|
#
|
1265
1315
|
class MetadataException < Struct.new(
|
1266
1316
|
:message)
|
1317
|
+
SENSITIVE = []
|
1267
1318
|
include Aws::Structure
|
1268
1319
|
end
|
1269
1320
|
|
@@ -1303,6 +1354,7 @@ module Aws::Athena
|
|
1303
1354
|
:query_string,
|
1304
1355
|
:named_query_id,
|
1305
1356
|
:work_group)
|
1357
|
+
SENSITIVE = []
|
1306
1358
|
include Aws::Structure
|
1307
1359
|
end
|
1308
1360
|
|
@@ -1363,6 +1415,7 @@ module Aws::Athena
|
|
1363
1415
|
:status,
|
1364
1416
|
:statistics,
|
1365
1417
|
:work_group)
|
1418
|
+
SENSITIVE = []
|
1366
1419
|
include Aws::Structure
|
1367
1420
|
end
|
1368
1421
|
|
@@ -1390,6 +1443,7 @@ module Aws::Athena
|
|
1390
1443
|
class QueryExecutionContext < Struct.new(
|
1391
1444
|
:database,
|
1392
1445
|
:catalog)
|
1446
|
+
SENSITIVE = []
|
1393
1447
|
include Aws::Structure
|
1394
1448
|
end
|
1395
1449
|
|
@@ -1453,6 +1507,7 @@ module Aws::Athena
|
|
1453
1507
|
:query_queue_time_in_millis,
|
1454
1508
|
:query_planning_time_in_millis,
|
1455
1509
|
:service_processing_time_in_millis)
|
1510
|
+
SENSITIVE = []
|
1456
1511
|
include Aws::Structure
|
1457
1512
|
end
|
1458
1513
|
|
@@ -1494,6 +1549,7 @@ module Aws::Athena
|
|
1494
1549
|
:state_change_reason,
|
1495
1550
|
:submission_date_time,
|
1496
1551
|
:completion_date_time)
|
1552
|
+
SENSITIVE = []
|
1497
1553
|
include Aws::Structure
|
1498
1554
|
end
|
1499
1555
|
|
@@ -1510,6 +1566,7 @@ module Aws::Athena
|
|
1510
1566
|
class ResourceNotFoundException < Struct.new(
|
1511
1567
|
:message,
|
1512
1568
|
:resource_name)
|
1569
|
+
SENSITIVE = []
|
1513
1570
|
include Aws::Structure
|
1514
1571
|
end
|
1515
1572
|
|
@@ -1566,6 +1623,7 @@ module Aws::Athena
|
|
1566
1623
|
class ResultConfiguration < Struct.new(
|
1567
1624
|
:output_location,
|
1568
1625
|
:encryption_configuration)
|
1626
|
+
SENSITIVE = []
|
1569
1627
|
include Aws::Structure
|
1570
1628
|
end
|
1571
1629
|
|
@@ -1643,6 +1701,7 @@ module Aws::Athena
|
|
1643
1701
|
:remove_output_location,
|
1644
1702
|
:encryption_configuration,
|
1645
1703
|
:remove_encryption_configuration)
|
1704
|
+
SENSITIVE = []
|
1646
1705
|
include Aws::Structure
|
1647
1706
|
end
|
1648
1707
|
|
@@ -1664,6 +1723,7 @@ module Aws::Athena
|
|
1664
1723
|
class ResultSet < Struct.new(
|
1665
1724
|
:rows,
|
1666
1725
|
:result_set_metadata)
|
1726
|
+
SENSITIVE = []
|
1667
1727
|
include Aws::Structure
|
1668
1728
|
end
|
1669
1729
|
|
@@ -1679,6 +1739,7 @@ module Aws::Athena
|
|
1679
1739
|
#
|
1680
1740
|
class ResultSetMetadata < Struct.new(
|
1681
1741
|
:column_info)
|
1742
|
+
SENSITIVE = []
|
1682
1743
|
include Aws::Structure
|
1683
1744
|
end
|
1684
1745
|
|
@@ -1692,6 +1753,7 @@ module Aws::Athena
|
|
1692
1753
|
#
|
1693
1754
|
class Row < Struct.new(
|
1694
1755
|
:data)
|
1756
|
+
SENSITIVE = []
|
1695
1757
|
include Aws::Structure
|
1696
1758
|
end
|
1697
1759
|
|
@@ -1761,6 +1823,7 @@ module Aws::Athena
|
|
1761
1823
|
:query_execution_context,
|
1762
1824
|
:result_configuration,
|
1763
1825
|
:work_group)
|
1826
|
+
SENSITIVE = []
|
1764
1827
|
include Aws::Structure
|
1765
1828
|
end
|
1766
1829
|
|
@@ -1772,6 +1835,7 @@ module Aws::Athena
|
|
1772
1835
|
#
|
1773
1836
|
class StartQueryExecutionOutput < Struct.new(
|
1774
1837
|
:query_execution_id)
|
1838
|
+
SENSITIVE = []
|
1775
1839
|
include Aws::Structure
|
1776
1840
|
end
|
1777
1841
|
|
@@ -1793,6 +1857,7 @@ module Aws::Athena
|
|
1793
1857
|
#
|
1794
1858
|
class StopQueryExecutionInput < Struct.new(
|
1795
1859
|
:query_execution_id)
|
1860
|
+
SENSITIVE = []
|
1796
1861
|
include Aws::Structure
|
1797
1862
|
end
|
1798
1863
|
|
@@ -1840,6 +1905,7 @@ module Aws::Athena
|
|
1840
1905
|
:columns,
|
1841
1906
|
:partition_keys,
|
1842
1907
|
:parameters)
|
1908
|
+
SENSITIVE = []
|
1843
1909
|
include Aws::Structure
|
1844
1910
|
end
|
1845
1911
|
|
@@ -1887,6 +1953,7 @@ module Aws::Athena
|
|
1887
1953
|
class Tag < Struct.new(
|
1888
1954
|
:key,
|
1889
1955
|
:value)
|
1956
|
+
SENSITIVE = []
|
1890
1957
|
include Aws::Structure
|
1891
1958
|
end
|
1892
1959
|
|
@@ -1918,6 +1985,7 @@ module Aws::Athena
|
|
1918
1985
|
class TagResourceInput < Struct.new(
|
1919
1986
|
:resource_arn,
|
1920
1987
|
:tags)
|
1988
|
+
SENSITIVE = []
|
1921
1989
|
include Aws::Structure
|
1922
1990
|
end
|
1923
1991
|
|
@@ -1940,6 +2008,7 @@ module Aws::Athena
|
|
1940
2008
|
class TooManyRequestsException < Struct.new(
|
1941
2009
|
:message,
|
1942
2010
|
:reason)
|
2011
|
+
SENSITIVE = []
|
1943
2012
|
include Aws::Structure
|
1944
2013
|
end
|
1945
2014
|
|
@@ -1965,6 +2034,7 @@ module Aws::Athena
|
|
1965
2034
|
:named_query_id,
|
1966
2035
|
:error_code,
|
1967
2036
|
:error_message)
|
2037
|
+
SENSITIVE = []
|
1968
2038
|
include Aws::Structure
|
1969
2039
|
end
|
1970
2040
|
|
@@ -1990,6 +2060,7 @@ module Aws::Athena
|
|
1990
2060
|
:query_execution_id,
|
1991
2061
|
:error_code,
|
1992
2062
|
:error_message)
|
2063
|
+
SENSITIVE = []
|
1993
2064
|
include Aws::Structure
|
1994
2065
|
end
|
1995
2066
|
|
@@ -2015,6 +2086,7 @@ module Aws::Athena
|
|
2015
2086
|
class UntagResourceInput < Struct.new(
|
2016
2087
|
:resource_arn,
|
2017
2088
|
:tag_keys)
|
2089
|
+
SENSITIVE = []
|
2018
2090
|
include Aws::Structure
|
2019
2091
|
end
|
2020
2092
|
|
@@ -2087,6 +2159,7 @@ module Aws::Athena
|
|
2087
2159
|
:type,
|
2088
2160
|
:description,
|
2089
2161
|
:parameters)
|
2162
|
+
SENSITIVE = []
|
2090
2163
|
include Aws::Structure
|
2091
2164
|
end
|
2092
2165
|
|
@@ -2143,6 +2216,7 @@ module Aws::Athena
|
|
2143
2216
|
:description,
|
2144
2217
|
:configuration_updates,
|
2145
2218
|
:state)
|
2219
|
+
SENSITIVE = []
|
2146
2220
|
include Aws::Structure
|
2147
2221
|
end
|
2148
2222
|
|
@@ -2199,6 +2273,7 @@ module Aws::Athena
|
|
2199
2273
|
:configuration,
|
2200
2274
|
:description,
|
2201
2275
|
:creation_time)
|
2276
|
+
SENSITIVE = []
|
2202
2277
|
include Aws::Structure
|
2203
2278
|
end
|
2204
2279
|
|
@@ -2287,6 +2362,7 @@ module Aws::Athena
|
|
2287
2362
|
:publish_cloud_watch_metrics_enabled,
|
2288
2363
|
:bytes_scanned_cutoff_per_query,
|
2289
2364
|
:requester_pays_enabled)
|
2365
|
+
SENSITIVE = []
|
2290
2366
|
include Aws::Structure
|
2291
2367
|
end
|
2292
2368
|
|
@@ -2373,6 +2449,7 @@ module Aws::Athena
|
|
2373
2449
|
:bytes_scanned_cutoff_per_query,
|
2374
2450
|
:remove_bytes_scanned_cutoff_per_query,
|
2375
2451
|
:requester_pays_enabled)
|
2452
|
+
SENSITIVE = []
|
2376
2453
|
include Aws::Structure
|
2377
2454
|
end
|
2378
2455
|
|
@@ -2402,6 +2479,7 @@ module Aws::Athena
|
|
2402
2479
|
:state,
|
2403
2480
|
:description,
|
2404
2481
|
:creation_time)
|
2482
|
+
SENSITIVE = []
|
2405
2483
|
include Aws::Structure
|
2406
2484
|
end
|
2407
2485
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-athena
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.33.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-09-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.109.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.109.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|