aws-sdk-honeycode 1.12.0 → 1.16.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-honeycode/client.rb +114 -8
- data/lib/aws-sdk-honeycode/client_api.rb +93 -0
- data/lib/aws-sdk-honeycode/types.rb +147 -5
- data/lib/aws-sdk-honeycode.rb +1 -1
- 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: 3d52df34de6baadf97b784beaae1df58b4ff36c1eef90b99fb71021db82426e4
|
|
4
|
+
data.tar.gz: 32d3c0f6ea9057f2916df63b252fb5d27b8d68a45d2e7d65802edf1bb4df8cc3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cf11f89cfa28cba89ff2f9ad746d9696908a49740df7883224bd4b208da2150eae0744f770de2272e2cd4008238ab08b45163efc5f702732b495e6523d68a576
|
|
7
|
+
data.tar.gz: 481dfb12555070115f2ab884f2fb0d2550034bf1ab36a0bd2e383d1212b8fa2b4a026b4d964ec825535d3721c7b84b1c37da7ee5a878190babd540dbbdee2046
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.16.0 (2022-02-03)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.15.0 (2022-01-14)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Added read and write api support for multi-select picklist. And added errorcode field to DescribeTableDataImportJob API output, when import job fails.
|
|
13
|
+
|
|
14
|
+
1.14.0 (2022-01-12)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Honeycode is releasing new APIs to allow user to create, delete and list tags on resources.
|
|
18
|
+
|
|
19
|
+
1.13.0 (2021-12-21)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
23
|
+
|
|
4
24
|
1.12.0 (2021-11-30)
|
|
5
25
|
------------------
|
|
6
26
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.16.0
|
|
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
|
30
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
|
31
33
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
|
32
34
|
|
|
@@ -73,6 +75,8 @@ module Aws::Honeycode
|
|
|
73
75
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
74
76
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
75
77
|
add_plugin(Aws::Plugins::HttpChecksum)
|
|
78
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
|
79
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
|
76
80
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
77
81
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
|
78
82
|
|
|
@@ -175,6 +179,10 @@ module Aws::Honeycode
|
|
|
175
179
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
176
180
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
177
181
|
#
|
|
182
|
+
# @option options [String] :defaults_mode ("legacy")
|
|
183
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
|
184
|
+
# accepted modes and the configuration defaults that are included.
|
|
185
|
+
#
|
|
178
186
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
|
179
187
|
# Set to true to disable SDK automatically adding host prefix
|
|
180
188
|
# to default service endpoint when available.
|
|
@@ -297,7 +305,7 @@ module Aws::Honeycode
|
|
|
297
305
|
# seconds to wait when opening a HTTP session before raising a
|
|
298
306
|
# `Timeout::Error`.
|
|
299
307
|
#
|
|
300
|
-
# @option options [
|
|
308
|
+
# @option options [Float] :http_read_timeout (60) The default
|
|
301
309
|
# number of seconds to wait for response data. This value can
|
|
302
310
|
# safely be set per-request on the session.
|
|
303
311
|
#
|
|
@@ -313,6 +321,9 @@ module Aws::Honeycode
|
|
|
313
321
|
# disables this behaviour. This value can safely be set per
|
|
314
322
|
# request on the session.
|
|
315
323
|
#
|
|
324
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
|
325
|
+
# in seconds.
|
|
326
|
+
#
|
|
316
327
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
|
317
328
|
# HTTP debug output will be sent to the `:logger`.
|
|
318
329
|
#
|
|
@@ -399,6 +410,7 @@ module Aws::Honeycode
|
|
|
399
410
|
# cells_to_create: { # required
|
|
400
411
|
# "ResourceId" => {
|
|
401
412
|
# fact: "Fact",
|
|
413
|
+
# facts: ["Fact"],
|
|
402
414
|
# },
|
|
403
415
|
# },
|
|
404
416
|
# },
|
|
@@ -548,6 +560,7 @@ module Aws::Honeycode
|
|
|
548
560
|
# cells_to_update: { # required
|
|
549
561
|
# "ResourceId" => {
|
|
550
562
|
# fact: "Fact",
|
|
563
|
+
# facts: ["Fact"],
|
|
551
564
|
# },
|
|
552
565
|
# },
|
|
553
566
|
# },
|
|
@@ -641,6 +654,7 @@ module Aws::Honeycode
|
|
|
641
654
|
# cells_to_update: { # required
|
|
642
655
|
# "ResourceId" => {
|
|
643
656
|
# fact: "Fact",
|
|
657
|
+
# facts: ["Fact"],
|
|
644
658
|
# },
|
|
645
659
|
# },
|
|
646
660
|
# },
|
|
@@ -695,6 +709,7 @@ module Aws::Honeycode
|
|
|
695
709
|
# * {Types::DescribeTableDataImportJobResult#job_status #job_status} => String
|
|
696
710
|
# * {Types::DescribeTableDataImportJobResult#message #message} => String
|
|
697
711
|
# * {Types::DescribeTableDataImportJobResult#job_metadata #job_metadata} => Types::TableDataImportJobMetadata
|
|
712
|
+
# * {Types::DescribeTableDataImportJobResult#error_code #error_code} => String
|
|
698
713
|
#
|
|
699
714
|
# @example Request syntax with placeholder values
|
|
700
715
|
#
|
|
@@ -718,6 +733,7 @@ module Aws::Honeycode
|
|
|
718
733
|
# resp.job_metadata.import_options.delimited_text_options.ignore_empty_rows #=> Boolean
|
|
719
734
|
# resp.job_metadata.import_options.delimited_text_options.data_character_encoding #=> String, one of "UTF-8", "US-ASCII", "ISO-8859-1", "UTF-16BE", "UTF-16LE", "UTF-16"
|
|
720
735
|
# resp.job_metadata.data_source.data_source_config.data_source_url #=> String
|
|
736
|
+
# resp.error_code #=> String, one of "ACCESS_DENIED", "INVALID_URL_ERROR", "INVALID_IMPORT_OPTIONS_ERROR", "INVALID_TABLE_ID_ERROR", "INVALID_TABLE_COLUMN_ID_ERROR", "TABLE_NOT_FOUND_ERROR", "FILE_EMPTY_ERROR", "INVALID_FILE_TYPE_ERROR", "FILE_PARSING_ERROR", "FILE_SIZE_LIMIT_ERROR", "FILE_NOT_FOUND_ERROR", "UNKNOWN_ERROR", "RESOURCE_NOT_FOUND_ERROR", "SYSTEM_LIMIT_ERROR"
|
|
721
737
|
#
|
|
722
738
|
# @see http://docs.aws.amazon.com/goto/WebAPI/honeycode-2020-03-01/DescribeTableDataImportJob AWS API Documentation
|
|
723
739
|
#
|
|
@@ -736,7 +752,7 @@ module Aws::Honeycode
|
|
|
736
752
|
# The ID of the workbook that contains the screen.
|
|
737
753
|
#
|
|
738
754
|
# @option params [required, String] :app_id
|
|
739
|
-
# The ID of the app that contains the
|
|
755
|
+
# The ID of the app that contains the screen.
|
|
740
756
|
#
|
|
741
757
|
# @option params [required, String] :screen_id
|
|
742
758
|
# The ID of the screen.
|
|
@@ -789,11 +805,11 @@ module Aws::Honeycode
|
|
|
789
805
|
# resp.results #=> Hash
|
|
790
806
|
# resp.results["Name"].headers #=> Array
|
|
791
807
|
# resp.results["Name"].headers[0].name #=> String
|
|
792
|
-
# resp.results["Name"].headers[0].format #=> String, one of "AUTO", "NUMBER", "CURRENCY", "DATE", "TIME", "DATE_TIME", "PERCENTAGE", "TEXT", "ACCOUNTING", "CONTACT", "ROWLINK"
|
|
808
|
+
# resp.results["Name"].headers[0].format #=> String, one of "AUTO", "NUMBER", "CURRENCY", "DATE", "TIME", "DATE_TIME", "PERCENTAGE", "TEXT", "ACCOUNTING", "CONTACT", "ROWLINK", "ROWSET"
|
|
793
809
|
# resp.results["Name"].rows #=> Array
|
|
794
810
|
# resp.results["Name"].rows[0].row_id #=> String
|
|
795
811
|
# resp.results["Name"].rows[0].data_items #=> Array
|
|
796
|
-
# resp.results["Name"].rows[0].data_items[0].override_format #=> String, one of "AUTO", "NUMBER", "CURRENCY", "DATE", "TIME", "DATE_TIME", "PERCENTAGE", "TEXT", "ACCOUNTING", "CONTACT", "ROWLINK"
|
|
812
|
+
# resp.results["Name"].rows[0].data_items[0].override_format #=> String, one of "AUTO", "NUMBER", "CURRENCY", "DATE", "TIME", "DATE_TIME", "PERCENTAGE", "TEXT", "ACCOUNTING", "CONTACT", "ROWLINK", "ROWSET"
|
|
797
813
|
# resp.results["Name"].rows[0].data_items[0].raw_value #=> String
|
|
798
814
|
# resp.results["Name"].rows[0].data_items[0].formatted_value #=> String
|
|
799
815
|
# resp.workbook_cursor #=> Integer
|
|
@@ -927,7 +943,7 @@ module Aws::Honeycode
|
|
|
927
943
|
# resp.table_columns #=> Array
|
|
928
944
|
# resp.table_columns[0].table_column_id #=> String
|
|
929
945
|
# resp.table_columns[0].table_column_name #=> String
|
|
930
|
-
# resp.table_columns[0].format #=> String, one of "AUTO", "NUMBER", "CURRENCY", "DATE", "TIME", "DATE_TIME", "PERCENTAGE", "TEXT", "ACCOUNTING", "CONTACT", "ROWLINK"
|
|
946
|
+
# resp.table_columns[0].format #=> String, one of "AUTO", "NUMBER", "CURRENCY", "DATE", "TIME", "DATE_TIME", "PERCENTAGE", "TEXT", "ACCOUNTING", "CONTACT", "ROWLINK", "ROWSET"
|
|
931
947
|
# resp.next_token #=> String
|
|
932
948
|
# resp.workbook_cursor #=> Integer
|
|
933
949
|
#
|
|
@@ -1001,9 +1017,11 @@ module Aws::Honeycode
|
|
|
1001
1017
|
# resp.rows[0].row_id #=> String
|
|
1002
1018
|
# resp.rows[0].cells #=> Array
|
|
1003
1019
|
# resp.rows[0].cells[0].formula #=> String
|
|
1004
|
-
# resp.rows[0].cells[0].format #=> String, one of "AUTO", "NUMBER", "CURRENCY", "DATE", "TIME", "DATE_TIME", "PERCENTAGE", "TEXT", "ACCOUNTING", "CONTACT", "ROWLINK"
|
|
1020
|
+
# resp.rows[0].cells[0].format #=> String, one of "AUTO", "NUMBER", "CURRENCY", "DATE", "TIME", "DATE_TIME", "PERCENTAGE", "TEXT", "ACCOUNTING", "CONTACT", "ROWLINK", "ROWSET"
|
|
1005
1021
|
# resp.rows[0].cells[0].raw_value #=> String
|
|
1006
1022
|
# resp.rows[0].cells[0].formatted_value #=> String
|
|
1023
|
+
# resp.rows[0].cells[0].formatted_values #=> Array
|
|
1024
|
+
# resp.rows[0].cells[0].formatted_values[0] #=> String
|
|
1007
1025
|
# resp.row_ids_not_found #=> Array
|
|
1008
1026
|
# resp.row_ids_not_found[0] #=> String
|
|
1009
1027
|
# resp.next_token #=> String
|
|
@@ -1071,6 +1089,35 @@ module Aws::Honeycode
|
|
|
1071
1089
|
req.send_request(options)
|
|
1072
1090
|
end
|
|
1073
1091
|
|
|
1092
|
+
# The ListTagsForResource API allows you to return a resource's tags.
|
|
1093
|
+
#
|
|
1094
|
+
# @option params [required, String] :resource_arn
|
|
1095
|
+
# The resource's Amazon Resource Name (ARN).
|
|
1096
|
+
#
|
|
1097
|
+
# @return [Types::ListTagsForResourceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1098
|
+
#
|
|
1099
|
+
# * {Types::ListTagsForResourceResult#tags #tags} => Hash<String,String>
|
|
1100
|
+
#
|
|
1101
|
+
# @example Request syntax with placeholder values
|
|
1102
|
+
#
|
|
1103
|
+
# resp = client.list_tags_for_resource({
|
|
1104
|
+
# resource_arn: "ResourceArn", # required
|
|
1105
|
+
# })
|
|
1106
|
+
#
|
|
1107
|
+
# @example Response structure
|
|
1108
|
+
#
|
|
1109
|
+
# resp.tags #=> Hash
|
|
1110
|
+
# resp.tags["TagKey"] #=> String
|
|
1111
|
+
#
|
|
1112
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/honeycode-2020-03-01/ListTagsForResource AWS API Documentation
|
|
1113
|
+
#
|
|
1114
|
+
# @overload list_tags_for_resource(params = {})
|
|
1115
|
+
# @param [Hash] params ({})
|
|
1116
|
+
def list_tags_for_resource(params = {}, options = {})
|
|
1117
|
+
req = build_request(:list_tags_for_resource, params)
|
|
1118
|
+
req.send_request(options)
|
|
1119
|
+
end
|
|
1120
|
+
|
|
1074
1121
|
# The QueryTableRows API allows you to use a filter formula to query for
|
|
1075
1122
|
# specific rows in a table.
|
|
1076
1123
|
#
|
|
@@ -1131,9 +1178,11 @@ module Aws::Honeycode
|
|
|
1131
1178
|
# resp.rows[0].row_id #=> String
|
|
1132
1179
|
# resp.rows[0].cells #=> Array
|
|
1133
1180
|
# resp.rows[0].cells[0].formula #=> String
|
|
1134
|
-
# resp.rows[0].cells[0].format #=> String, one of "AUTO", "NUMBER", "CURRENCY", "DATE", "TIME", "DATE_TIME", "PERCENTAGE", "TEXT", "ACCOUNTING", "CONTACT", "ROWLINK"
|
|
1181
|
+
# resp.rows[0].cells[0].format #=> String, one of "AUTO", "NUMBER", "CURRENCY", "DATE", "TIME", "DATE_TIME", "PERCENTAGE", "TEXT", "ACCOUNTING", "CONTACT", "ROWLINK", "ROWSET"
|
|
1135
1182
|
# resp.rows[0].cells[0].raw_value #=> String
|
|
1136
1183
|
# resp.rows[0].cells[0].formatted_value #=> String
|
|
1184
|
+
# resp.rows[0].cells[0].formatted_values #=> Array
|
|
1185
|
+
# resp.rows[0].cells[0].formatted_values[0] #=> String
|
|
1137
1186
|
# resp.next_token #=> String
|
|
1138
1187
|
# resp.workbook_cursor #=> Integer
|
|
1139
1188
|
#
|
|
@@ -1234,6 +1283,63 @@ module Aws::Honeycode
|
|
|
1234
1283
|
req.send_request(options)
|
|
1235
1284
|
end
|
|
1236
1285
|
|
|
1286
|
+
# The TagResource API allows you to add tags to an ARN-able resource.
|
|
1287
|
+
# Resource includes workbook, table, screen and screen-automation.
|
|
1288
|
+
#
|
|
1289
|
+
# @option params [required, String] :resource_arn
|
|
1290
|
+
# The resource's Amazon Resource Name (ARN).
|
|
1291
|
+
#
|
|
1292
|
+
# @option params [required, Hash<String,String>] :tags
|
|
1293
|
+
# A list of tags to apply to the resource.
|
|
1294
|
+
#
|
|
1295
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1296
|
+
#
|
|
1297
|
+
# @example Request syntax with placeholder values
|
|
1298
|
+
#
|
|
1299
|
+
# resp = client.tag_resource({
|
|
1300
|
+
# resource_arn: "ResourceArn", # required
|
|
1301
|
+
# tags: { # required
|
|
1302
|
+
# "TagKey" => "TagValue",
|
|
1303
|
+
# },
|
|
1304
|
+
# })
|
|
1305
|
+
#
|
|
1306
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/honeycode-2020-03-01/TagResource AWS API Documentation
|
|
1307
|
+
#
|
|
1308
|
+
# @overload tag_resource(params = {})
|
|
1309
|
+
# @param [Hash] params ({})
|
|
1310
|
+
def tag_resource(params = {}, options = {})
|
|
1311
|
+
req = build_request(:tag_resource, params)
|
|
1312
|
+
req.send_request(options)
|
|
1313
|
+
end
|
|
1314
|
+
|
|
1315
|
+
# The UntagResource API allows you to removes tags from an ARN-able
|
|
1316
|
+
# resource. Resource includes workbook, table, screen and
|
|
1317
|
+
# screen-automation.
|
|
1318
|
+
#
|
|
1319
|
+
# @option params [required, String] :resource_arn
|
|
1320
|
+
# The resource's Amazon Resource Name (ARN).
|
|
1321
|
+
#
|
|
1322
|
+
# @option params [required, Array<String>] :tag_keys
|
|
1323
|
+
# A list of tag keys to remove from the resource.
|
|
1324
|
+
#
|
|
1325
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1326
|
+
#
|
|
1327
|
+
# @example Request syntax with placeholder values
|
|
1328
|
+
#
|
|
1329
|
+
# resp = client.untag_resource({
|
|
1330
|
+
# resource_arn: "ResourceArn", # required
|
|
1331
|
+
# tag_keys: ["TagKey"], # required
|
|
1332
|
+
# })
|
|
1333
|
+
#
|
|
1334
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/honeycode-2020-03-01/UntagResource AWS API Documentation
|
|
1335
|
+
#
|
|
1336
|
+
# @overload untag_resource(params = {})
|
|
1337
|
+
# @param [Hash] params ({})
|
|
1338
|
+
def untag_resource(params = {}, options = {})
|
|
1339
|
+
req = build_request(:untag_resource, params)
|
|
1340
|
+
req.send_request(options)
|
|
1341
|
+
end
|
|
1342
|
+
|
|
1237
1343
|
# @!endgroup
|
|
1238
1344
|
|
|
1239
1345
|
# @param params ({})
|
|
@@ -1247,7 +1353,7 @@ module Aws::Honeycode
|
|
|
1247
1353
|
params: params,
|
|
1248
1354
|
config: config)
|
|
1249
1355
|
context[:gem_name] = 'aws-sdk-honeycode'
|
|
1250
|
-
context[:gem_version] = '1.
|
|
1356
|
+
context[:gem_version] = '1.16.0'
|
|
1251
1357
|
Seahorse::Client::Request.new(handlers, context)
|
|
1252
1358
|
end
|
|
1253
1359
|
|
|
@@ -43,13 +43,16 @@ module Aws::Honeycode
|
|
|
43
43
|
DescribeTableDataImportJobResult = Shapes::StructureShape.new(name: 'DescribeTableDataImportJobResult')
|
|
44
44
|
DestinationOptions = Shapes::StructureShape.new(name: 'DestinationOptions')
|
|
45
45
|
Email = Shapes::StringShape.new(name: 'Email')
|
|
46
|
+
ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
|
|
46
47
|
ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
|
|
47
48
|
Fact = Shapes::StringShape.new(name: 'Fact')
|
|
49
|
+
FactList = Shapes::ListShape.new(name: 'FactList')
|
|
48
50
|
FailedBatchItem = Shapes::StructureShape.new(name: 'FailedBatchItem')
|
|
49
51
|
FailedBatchItems = Shapes::ListShape.new(name: 'FailedBatchItems')
|
|
50
52
|
Filter = Shapes::StructureShape.new(name: 'Filter')
|
|
51
53
|
Format = Shapes::StringShape.new(name: 'Format')
|
|
52
54
|
FormattedValue = Shapes::StringShape.new(name: 'FormattedValue')
|
|
55
|
+
FormattedValuesList = Shapes::ListShape.new(name: 'FormattedValuesList')
|
|
53
56
|
Formula = Shapes::StringShape.new(name: 'Formula')
|
|
54
57
|
GetScreenDataRequest = Shapes::StructureShape.new(name: 'GetScreenDataRequest')
|
|
55
58
|
GetScreenDataResult = Shapes::StructureShape.new(name: 'GetScreenDataResult')
|
|
@@ -72,6 +75,8 @@ module Aws::Honeycode
|
|
|
72
75
|
ListTableRowsResult = Shapes::StructureShape.new(name: 'ListTableRowsResult')
|
|
73
76
|
ListTablesRequest = Shapes::StructureShape.new(name: 'ListTablesRequest')
|
|
74
77
|
ListTablesResult = Shapes::StructureShape.new(name: 'ListTablesResult')
|
|
78
|
+
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
|
79
|
+
ListTagsForResourceResult = Shapes::StructureShape.new(name: 'ListTagsForResourceResult')
|
|
75
80
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
|
76
81
|
Name = Shapes::StringShape.new(name: 'Name')
|
|
77
82
|
PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
|
|
@@ -79,6 +84,7 @@ module Aws::Honeycode
|
|
|
79
84
|
QueryTableRowsResult = Shapes::StructureShape.new(name: 'QueryTableRowsResult')
|
|
80
85
|
RawValue = Shapes::StringShape.new(name: 'RawValue')
|
|
81
86
|
RequestTimeoutException = Shapes::StructureShape.new(name: 'RequestTimeoutException')
|
|
87
|
+
ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
|
|
82
88
|
ResourceId = Shapes::StringShape.new(name: 'ResourceId')
|
|
83
89
|
ResourceIds = Shapes::ListShape.new(name: 'ResourceIds')
|
|
84
90
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
|
@@ -108,8 +114,16 @@ module Aws::Honeycode
|
|
|
108
114
|
TableRow = Shapes::StructureShape.new(name: 'TableRow')
|
|
109
115
|
TableRows = Shapes::ListShape.new(name: 'TableRows')
|
|
110
116
|
Tables = Shapes::ListShape.new(name: 'Tables')
|
|
117
|
+
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
|
118
|
+
TagKeysList = Shapes::ListShape.new(name: 'TagKeysList')
|
|
119
|
+
TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
|
|
120
|
+
TagResourceResult = Shapes::StructureShape.new(name: 'TagResourceResult')
|
|
121
|
+
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
|
122
|
+
TagsMap = Shapes::MapShape.new(name: 'TagsMap')
|
|
111
123
|
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
|
112
124
|
TimestampInMillis = Shapes::TimestampShape.new(name: 'TimestampInMillis')
|
|
125
|
+
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
|
126
|
+
UntagResourceResult = Shapes::StructureShape.new(name: 'UntagResourceResult')
|
|
113
127
|
UpdateRowData = Shapes::StructureShape.new(name: 'UpdateRowData')
|
|
114
128
|
UpdateRowDataList = Shapes::ListShape.new(name: 'UpdateRowDataList')
|
|
115
129
|
UpsertAction = Shapes::StringShape.new(name: 'UpsertAction')
|
|
@@ -178,9 +192,11 @@ module Aws::Honeycode
|
|
|
178
192
|
Cell.add_member(:format, Shapes::ShapeRef.new(shape: Format, location_name: "format"))
|
|
179
193
|
Cell.add_member(:raw_value, Shapes::ShapeRef.new(shape: RawValue, location_name: "rawValue"))
|
|
180
194
|
Cell.add_member(:formatted_value, Shapes::ShapeRef.new(shape: FormattedValue, location_name: "formattedValue"))
|
|
195
|
+
Cell.add_member(:formatted_values, Shapes::ShapeRef.new(shape: FormattedValuesList, location_name: "formattedValues"))
|
|
181
196
|
Cell.struct_class = Types::Cell
|
|
182
197
|
|
|
183
198
|
CellInput.add_member(:fact, Shapes::ShapeRef.new(shape: Fact, location_name: "fact"))
|
|
199
|
+
CellInput.add_member(:facts, Shapes::ShapeRef.new(shape: FactList, location_name: "facts"))
|
|
184
200
|
CellInput.struct_class = Types::CellInput
|
|
185
201
|
|
|
186
202
|
Cells.member = Shapes::ShapeRef.new(shape: Cell)
|
|
@@ -219,11 +235,14 @@ module Aws::Honeycode
|
|
|
219
235
|
DescribeTableDataImportJobResult.add_member(:job_status, Shapes::ShapeRef.new(shape: TableDataImportJobStatus, required: true, location_name: "jobStatus"))
|
|
220
236
|
DescribeTableDataImportJobResult.add_member(:message, Shapes::ShapeRef.new(shape: TableDataImportJobMessage, required: true, location_name: "message"))
|
|
221
237
|
DescribeTableDataImportJobResult.add_member(:job_metadata, Shapes::ShapeRef.new(shape: TableDataImportJobMetadata, required: true, location_name: "jobMetadata"))
|
|
238
|
+
DescribeTableDataImportJobResult.add_member(:error_code, Shapes::ShapeRef.new(shape: ErrorCode, location_name: "errorCode"))
|
|
222
239
|
DescribeTableDataImportJobResult.struct_class = Types::DescribeTableDataImportJobResult
|
|
223
240
|
|
|
224
241
|
DestinationOptions.add_member(:column_map, Shapes::ShapeRef.new(shape: ImportColumnMap, location_name: "columnMap"))
|
|
225
242
|
DestinationOptions.struct_class = Types::DestinationOptions
|
|
226
243
|
|
|
244
|
+
FactList.member = Shapes::ShapeRef.new(shape: Fact)
|
|
245
|
+
|
|
227
246
|
FailedBatchItem.add_member(:id, Shapes::ShapeRef.new(shape: BatchItemId, required: true, location_name: "id"))
|
|
228
247
|
FailedBatchItem.add_member(:error_message, Shapes::ShapeRef.new(shape: BatchErrorMessage, required: true, location_name: "errorMessage"))
|
|
229
248
|
FailedBatchItem.struct_class = Types::FailedBatchItem
|
|
@@ -234,6 +253,8 @@ module Aws::Honeycode
|
|
|
234
253
|
Filter.add_member(:context_row_id, Shapes::ShapeRef.new(shape: RowId, location_name: "contextRowId"))
|
|
235
254
|
Filter.struct_class = Types::Filter
|
|
236
255
|
|
|
256
|
+
FormattedValuesList.member = Shapes::ShapeRef.new(shape: FormattedValue)
|
|
257
|
+
|
|
237
258
|
GetScreenDataRequest.add_member(:workbook_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "workbookId"))
|
|
238
259
|
GetScreenDataRequest.add_member(:app_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "appId"))
|
|
239
260
|
GetScreenDataRequest.add_member(:screen_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "screenId"))
|
|
@@ -313,6 +334,12 @@ module Aws::Honeycode
|
|
|
313
334
|
ListTablesResult.add_member(:workbook_cursor, Shapes::ShapeRef.new(shape: WorkbookCursor, location_name: "workbookCursor"))
|
|
314
335
|
ListTablesResult.struct_class = Types::ListTablesResult
|
|
315
336
|
|
|
337
|
+
ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location: "uri", location_name: "resourceArn"))
|
|
338
|
+
ListTagsForResourceRequest.struct_class = Types::ListTagsForResourceRequest
|
|
339
|
+
|
|
340
|
+
ListTagsForResourceResult.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
|
|
341
|
+
ListTagsForResourceResult.struct_class = Types::ListTagsForResourceResult
|
|
342
|
+
|
|
316
343
|
QueryTableRowsRequest.add_member(:workbook_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "workbookId"))
|
|
317
344
|
QueryTableRowsRequest.add_member(:table_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "tableId"))
|
|
318
345
|
QueryTableRowsRequest.add_member(:filter_formula, Shapes::ShapeRef.new(shape: Filter, required: true, location_name: "filterFormula"))
|
|
@@ -400,9 +427,26 @@ module Aws::Honeycode
|
|
|
400
427
|
|
|
401
428
|
Tables.member = Shapes::ShapeRef.new(shape: Table)
|
|
402
429
|
|
|
430
|
+
TagKeysList.member = Shapes::ShapeRef.new(shape: TagKey)
|
|
431
|
+
|
|
432
|
+
TagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location: "uri", location_name: "resourceArn"))
|
|
433
|
+
TagResourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, required: true, location_name: "tags"))
|
|
434
|
+
TagResourceRequest.struct_class = Types::TagResourceRequest
|
|
435
|
+
|
|
436
|
+
TagResourceResult.struct_class = Types::TagResourceResult
|
|
437
|
+
|
|
438
|
+
TagsMap.key = Shapes::ShapeRef.new(shape: TagKey)
|
|
439
|
+
TagsMap.value = Shapes::ShapeRef.new(shape: TagValue)
|
|
440
|
+
|
|
403
441
|
ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
|
404
442
|
ThrottlingException.struct_class = Types::ThrottlingException
|
|
405
443
|
|
|
444
|
+
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location: "uri", location_name: "resourceArn"))
|
|
445
|
+
UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeysList, required: true, location: "querystring", location_name: "tagKeys"))
|
|
446
|
+
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
|
447
|
+
|
|
448
|
+
UntagResourceResult.struct_class = Types::UntagResourceResult
|
|
449
|
+
|
|
406
450
|
UpdateRowData.add_member(:row_id, Shapes::ShapeRef.new(shape: RowId, required: true, location_name: "rowId"))
|
|
407
451
|
UpdateRowData.add_member(:cells_to_update, Shapes::ShapeRef.new(shape: RowDataInput, required: true, location_name: "cellsToUpdate"))
|
|
408
452
|
UpdateRowData.struct_class = Types::UpdateRowData
|
|
@@ -525,6 +569,7 @@ module Aws::Honeycode
|
|
|
525
569
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
526
570
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
527
571
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
572
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestTimeoutException)
|
|
528
573
|
end)
|
|
529
574
|
|
|
530
575
|
api.add_operation(:get_screen_data, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -557,6 +602,7 @@ module Aws::Honeycode
|
|
|
557
602
|
o.errors << Shapes::ShapeRef.new(shape: AutomationExecutionException)
|
|
558
603
|
o.errors << Shapes::ShapeRef.new(shape: AutomationExecutionTimeoutException)
|
|
559
604
|
o.errors << Shapes::ShapeRef.new(shape: RequestTimeoutException)
|
|
605
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
560
606
|
end)
|
|
561
607
|
|
|
562
608
|
api.add_operation(:list_table_columns, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -621,6 +667,21 @@ module Aws::Honeycode
|
|
|
621
667
|
)
|
|
622
668
|
end)
|
|
623
669
|
|
|
670
|
+
api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
671
|
+
o.name = "ListTagsForResource"
|
|
672
|
+
o.http_method = "GET"
|
|
673
|
+
o.http_request_uri = "/tags/{resourceArn}"
|
|
674
|
+
o.input = Shapes::ShapeRef.new(shape: ListTagsForResourceRequest)
|
|
675
|
+
o.output = Shapes::ShapeRef.new(shape: ListTagsForResourceResult)
|
|
676
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
677
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
678
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestTimeoutException)
|
|
679
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
680
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
681
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
682
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
683
|
+
end)
|
|
684
|
+
|
|
624
685
|
api.add_operation(:query_table_rows, Seahorse::Model::Operation.new.tap do |o|
|
|
625
686
|
o.name = "QueryTableRows"
|
|
626
687
|
o.http_method = "POST"
|
|
@@ -654,6 +715,38 @@ module Aws::Honeycode
|
|
|
654
715
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
655
716
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
656
717
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
718
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestTimeoutException)
|
|
719
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
720
|
+
end)
|
|
721
|
+
|
|
722
|
+
api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
723
|
+
o.name = "TagResource"
|
|
724
|
+
o.http_method = "POST"
|
|
725
|
+
o.http_request_uri = "/tags/{resourceArn}"
|
|
726
|
+
o.input = Shapes::ShapeRef.new(shape: TagResourceRequest)
|
|
727
|
+
o.output = Shapes::ShapeRef.new(shape: TagResourceResult)
|
|
728
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
729
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
730
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestTimeoutException)
|
|
731
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
732
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
733
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
734
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
735
|
+
end)
|
|
736
|
+
|
|
737
|
+
api.add_operation(:untag_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
738
|
+
o.name = "UntagResource"
|
|
739
|
+
o.http_method = "DELETE"
|
|
740
|
+
o.http_request_uri = "/tags/{resourceArn}"
|
|
741
|
+
o.input = Shapes::ShapeRef.new(shape: UntagResourceRequest)
|
|
742
|
+
o.output = Shapes::ShapeRef.new(shape: UntagResourceResult)
|
|
743
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
744
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
745
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestTimeoutException)
|
|
746
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
747
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
748
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
749
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
657
750
|
end)
|
|
658
751
|
end
|
|
659
752
|
|
|
@@ -63,6 +63,7 @@ module Aws::Honeycode
|
|
|
63
63
|
# cells_to_create: { # required
|
|
64
64
|
# "ResourceId" => {
|
|
65
65
|
# fact: "Fact",
|
|
66
|
+
# facts: ["Fact"],
|
|
66
67
|
# },
|
|
67
68
|
# },
|
|
68
69
|
# },
|
|
@@ -233,6 +234,7 @@ module Aws::Honeycode
|
|
|
233
234
|
# cells_to_update: { # required
|
|
234
235
|
# "ResourceId" => {
|
|
235
236
|
# fact: "Fact",
|
|
237
|
+
# facts: ["Fact"],
|
|
236
238
|
# },
|
|
237
239
|
# },
|
|
238
240
|
# },
|
|
@@ -326,6 +328,7 @@ module Aws::Honeycode
|
|
|
326
328
|
# cells_to_update: { # required
|
|
327
329
|
# "ResourceId" => {
|
|
328
330
|
# fact: "Fact",
|
|
331
|
+
# facts: ["Fact"],
|
|
329
332
|
# },
|
|
330
333
|
# },
|
|
331
334
|
# },
|
|
@@ -468,6 +471,23 @@ module Aws::Honeycode
|
|
|
468
471
|
# "row:dfcefaee-5b37-4355-8f28-40c3e4ff5dd4/ca432b2f-b8eb-431d-9fb5-cbe0342f9f03"
|
|
469
472
|
# as the raw value.
|
|
470
473
|
#
|
|
474
|
+
# Cells with format ROWSET (aka multi-select or multi-record picklist)
|
|
475
|
+
# will by default have the first column of each of the linked rows as
|
|
476
|
+
# the formatted value in the list, and the rowset id of the linked
|
|
477
|
+
# rows as the raw value. For example, a cell containing a multi-select
|
|
478
|
+
# picklist to a table that contains items might have "Item A",
|
|
479
|
+
# "Item B" in the formatted value list and
|
|
480
|
+
# "rows:b742c1f4-6cb0-4650-a845-35eb86fcc2bb/
|
|
481
|
+
# \[fdea123b-8f68-474a-aa8a-5ff87aa333af,6daf41f0-a138-4eee-89da-123086d36ecf\]"
|
|
482
|
+
# as the raw value.
|
|
483
|
+
#
|
|
484
|
+
# Cells with format ATTACHMENT will have the name of the attachment as
|
|
485
|
+
# the formatted value and the attachment id as the raw value. For
|
|
486
|
+
# example, a cell containing an attachment named "image.jpeg" will
|
|
487
|
+
# have "image.jpeg" as the formatted value and
|
|
488
|
+
# "attachment:ca432b2f-b8eb-431d-9fb5-cbe0342f9f03" as the raw
|
|
489
|
+
# value.
|
|
490
|
+
#
|
|
471
491
|
# Cells with format AUTO or cells without any format that are
|
|
472
492
|
# auto-detected as one of the formats above will contain the raw and
|
|
473
493
|
# formatted values as mentioned above, based on the auto-detected
|
|
@@ -488,13 +508,21 @@ module Aws::Honeycode
|
|
|
488
508
|
# values.
|
|
489
509
|
# @return [String]
|
|
490
510
|
#
|
|
511
|
+
# @!attribute [rw] formatted_values
|
|
512
|
+
# A list of formatted values of the cell. This field is only returned
|
|
513
|
+
# when the cell is ROWSET format (aka multi-select or multi-record
|
|
514
|
+
# picklist). Values in the list are always represented as strings. The
|
|
515
|
+
# formattedValue field will be empty if this field is returned.
|
|
516
|
+
# @return [Array<String>]
|
|
517
|
+
#
|
|
491
518
|
# @see http://docs.aws.amazon.com/goto/WebAPI/honeycode-2020-03-01/Cell AWS API Documentation
|
|
492
519
|
#
|
|
493
520
|
class Cell < Struct.new(
|
|
494
521
|
:formula,
|
|
495
522
|
:format,
|
|
496
523
|
:raw_value,
|
|
497
|
-
:formatted_value
|
|
524
|
+
:formatted_value,
|
|
525
|
+
:formatted_values)
|
|
498
526
|
SENSITIVE = [:formula]
|
|
499
527
|
include Aws::Structure
|
|
500
528
|
end
|
|
@@ -502,11 +530,18 @@ module Aws::Honeycode
|
|
|
502
530
|
# CellInput object contains the data needed to create or update cells in
|
|
503
531
|
# a table.
|
|
504
532
|
#
|
|
533
|
+
# <note markdown="1"> CellInput object has only a facts field or a fact field, but not both.
|
|
534
|
+
# A 400 bad request will be thrown if both fact and facts field are
|
|
535
|
+
# present.
|
|
536
|
+
#
|
|
537
|
+
# </note>
|
|
538
|
+
#
|
|
505
539
|
# @note When making an API call, you may pass CellInput
|
|
506
540
|
# data as a hash:
|
|
507
541
|
#
|
|
508
542
|
# {
|
|
509
543
|
# fact: "Fact",
|
|
544
|
+
# facts: ["Fact"],
|
|
510
545
|
# }
|
|
511
546
|
#
|
|
512
547
|
# @!attribute [rw] fact
|
|
@@ -515,10 +550,17 @@ module Aws::Honeycode
|
|
|
515
550
|
# (=) sign.
|
|
516
551
|
# @return [String]
|
|
517
552
|
#
|
|
553
|
+
# @!attribute [rw] facts
|
|
554
|
+
# A list representing the values that are entered into a ROWSET cell.
|
|
555
|
+
# Facts list can have either only values or rowIDs, and rowIDs should
|
|
556
|
+
# from the same table.
|
|
557
|
+
# @return [Array<String>]
|
|
558
|
+
#
|
|
518
559
|
# @see http://docs.aws.amazon.com/goto/WebAPI/honeycode-2020-03-01/CellInput AWS API Documentation
|
|
519
560
|
#
|
|
520
561
|
class CellInput < Struct.new(
|
|
521
|
-
:fact
|
|
562
|
+
:fact,
|
|
563
|
+
:facts)
|
|
522
564
|
SENSITIVE = [:fact]
|
|
523
565
|
include Aws::Structure
|
|
524
566
|
end
|
|
@@ -553,6 +595,7 @@ module Aws::Honeycode
|
|
|
553
595
|
# cells_to_create: { # required
|
|
554
596
|
# "ResourceId" => {
|
|
555
597
|
# fact: "Fact",
|
|
598
|
+
# facts: ["Fact"],
|
|
556
599
|
# },
|
|
557
600
|
# },
|
|
558
601
|
# }
|
|
@@ -703,12 +746,18 @@ module Aws::Honeycode
|
|
|
703
746
|
# The metadata about the job that was submitted for import.
|
|
704
747
|
# @return [Types::TableDataImportJobMetadata]
|
|
705
748
|
#
|
|
749
|
+
# @!attribute [rw] error_code
|
|
750
|
+
# If job status is failed, error code to understand reason for the
|
|
751
|
+
# failure.
|
|
752
|
+
# @return [String]
|
|
753
|
+
#
|
|
706
754
|
# @see http://docs.aws.amazon.com/goto/WebAPI/honeycode-2020-03-01/DescribeTableDataImportJobResult AWS API Documentation
|
|
707
755
|
#
|
|
708
756
|
class DescribeTableDataImportJobResult < Struct.new(
|
|
709
757
|
:job_status,
|
|
710
758
|
:message,
|
|
711
|
-
:job_metadata
|
|
759
|
+
:job_metadata,
|
|
760
|
+
:error_code)
|
|
712
761
|
SENSITIVE = []
|
|
713
762
|
include Aws::Structure
|
|
714
763
|
end
|
|
@@ -820,7 +869,7 @@ module Aws::Honeycode
|
|
|
820
869
|
# @return [String]
|
|
821
870
|
#
|
|
822
871
|
# @!attribute [rw] app_id
|
|
823
|
-
# The ID of the app that contains the
|
|
872
|
+
# The ID of the app that contains the screen.
|
|
824
873
|
# @return [String]
|
|
825
874
|
#
|
|
826
875
|
# @!attribute [rw] screen_id
|
|
@@ -935,7 +984,7 @@ module Aws::Honeycode
|
|
|
935
984
|
#
|
|
936
985
|
class ImportDataSourceConfig < Struct.new(
|
|
937
986
|
:data_source_url)
|
|
938
|
-
SENSITIVE = []
|
|
987
|
+
SENSITIVE = [:data_source_url]
|
|
939
988
|
include Aws::Structure
|
|
940
989
|
end
|
|
941
990
|
|
|
@@ -1331,6 +1380,37 @@ module Aws::Honeycode
|
|
|
1331
1380
|
include Aws::Structure
|
|
1332
1381
|
end
|
|
1333
1382
|
|
|
1383
|
+
# @note When making an API call, you may pass ListTagsForResourceRequest
|
|
1384
|
+
# data as a hash:
|
|
1385
|
+
#
|
|
1386
|
+
# {
|
|
1387
|
+
# resource_arn: "ResourceArn", # required
|
|
1388
|
+
# }
|
|
1389
|
+
#
|
|
1390
|
+
# @!attribute [rw] resource_arn
|
|
1391
|
+
# The resource's Amazon Resource Name (ARN).
|
|
1392
|
+
# @return [String]
|
|
1393
|
+
#
|
|
1394
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/honeycode-2020-03-01/ListTagsForResourceRequest AWS API Documentation
|
|
1395
|
+
#
|
|
1396
|
+
class ListTagsForResourceRequest < Struct.new(
|
|
1397
|
+
:resource_arn)
|
|
1398
|
+
SENSITIVE = []
|
|
1399
|
+
include Aws::Structure
|
|
1400
|
+
end
|
|
1401
|
+
|
|
1402
|
+
# @!attribute [rw] tags
|
|
1403
|
+
# The resource's tags.
|
|
1404
|
+
# @return [Hash<String,String>]
|
|
1405
|
+
#
|
|
1406
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/honeycode-2020-03-01/ListTagsForResourceResult AWS API Documentation
|
|
1407
|
+
#
|
|
1408
|
+
class ListTagsForResourceResult < Struct.new(
|
|
1409
|
+
:tags)
|
|
1410
|
+
SENSITIVE = []
|
|
1411
|
+
include Aws::Structure
|
|
1412
|
+
end
|
|
1413
|
+
|
|
1334
1414
|
# @note When making an API call, you may pass QueryTableRowsRequest
|
|
1335
1415
|
# data as a hash:
|
|
1336
1416
|
#
|
|
@@ -1752,6 +1832,37 @@ module Aws::Honeycode
|
|
|
1752
1832
|
include Aws::Structure
|
|
1753
1833
|
end
|
|
1754
1834
|
|
|
1835
|
+
# @note When making an API call, you may pass TagResourceRequest
|
|
1836
|
+
# data as a hash:
|
|
1837
|
+
#
|
|
1838
|
+
# {
|
|
1839
|
+
# resource_arn: "ResourceArn", # required
|
|
1840
|
+
# tags: { # required
|
|
1841
|
+
# "TagKey" => "TagValue",
|
|
1842
|
+
# },
|
|
1843
|
+
# }
|
|
1844
|
+
#
|
|
1845
|
+
# @!attribute [rw] resource_arn
|
|
1846
|
+
# The resource's Amazon Resource Name (ARN).
|
|
1847
|
+
# @return [String]
|
|
1848
|
+
#
|
|
1849
|
+
# @!attribute [rw] tags
|
|
1850
|
+
# A list of tags to apply to the resource.
|
|
1851
|
+
# @return [Hash<String,String>]
|
|
1852
|
+
#
|
|
1853
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/honeycode-2020-03-01/TagResourceRequest AWS API Documentation
|
|
1854
|
+
#
|
|
1855
|
+
class TagResourceRequest < Struct.new(
|
|
1856
|
+
:resource_arn,
|
|
1857
|
+
:tags)
|
|
1858
|
+
SENSITIVE = []
|
|
1859
|
+
include Aws::Structure
|
|
1860
|
+
end
|
|
1861
|
+
|
|
1862
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/honeycode-2020-03-01/TagResourceResult AWS API Documentation
|
|
1863
|
+
#
|
|
1864
|
+
class TagResourceResult < Aws::EmptyStructure; end
|
|
1865
|
+
|
|
1755
1866
|
# Tps(transactions per second) rate reached.
|
|
1756
1867
|
#
|
|
1757
1868
|
# @!attribute [rw] message
|
|
@@ -1765,6 +1876,35 @@ module Aws::Honeycode
|
|
|
1765
1876
|
include Aws::Structure
|
|
1766
1877
|
end
|
|
1767
1878
|
|
|
1879
|
+
# @note When making an API call, you may pass UntagResourceRequest
|
|
1880
|
+
# data as a hash:
|
|
1881
|
+
#
|
|
1882
|
+
# {
|
|
1883
|
+
# resource_arn: "ResourceArn", # required
|
|
1884
|
+
# tag_keys: ["TagKey"], # required
|
|
1885
|
+
# }
|
|
1886
|
+
#
|
|
1887
|
+
# @!attribute [rw] resource_arn
|
|
1888
|
+
# The resource's Amazon Resource Name (ARN).
|
|
1889
|
+
# @return [String]
|
|
1890
|
+
#
|
|
1891
|
+
# @!attribute [rw] tag_keys
|
|
1892
|
+
# A list of tag keys to remove from the resource.
|
|
1893
|
+
# @return [Array<String>]
|
|
1894
|
+
#
|
|
1895
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/honeycode-2020-03-01/UntagResourceRequest AWS API Documentation
|
|
1896
|
+
#
|
|
1897
|
+
class UntagResourceRequest < Struct.new(
|
|
1898
|
+
:resource_arn,
|
|
1899
|
+
:tag_keys)
|
|
1900
|
+
SENSITIVE = []
|
|
1901
|
+
include Aws::Structure
|
|
1902
|
+
end
|
|
1903
|
+
|
|
1904
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/honeycode-2020-03-01/UntagResourceResult AWS API Documentation
|
|
1905
|
+
#
|
|
1906
|
+
class UntagResourceResult < Aws::EmptyStructure; end
|
|
1907
|
+
|
|
1768
1908
|
# Data needed to create a single row in a table as part of the
|
|
1769
1909
|
# BatchCreateTableRows request.
|
|
1770
1910
|
#
|
|
@@ -1776,6 +1916,7 @@ module Aws::Honeycode
|
|
|
1776
1916
|
# cells_to_update: { # required
|
|
1777
1917
|
# "ResourceId" => {
|
|
1778
1918
|
# fact: "Fact",
|
|
1919
|
+
# facts: ["Fact"],
|
|
1779
1920
|
# },
|
|
1780
1921
|
# },
|
|
1781
1922
|
# }
|
|
@@ -1814,6 +1955,7 @@ module Aws::Honeycode
|
|
|
1814
1955
|
# cells_to_update: { # required
|
|
1815
1956
|
# "ResourceId" => {
|
|
1816
1957
|
# fact: "Fact",
|
|
1958
|
+
# facts: ["Fact"],
|
|
1817
1959
|
# },
|
|
1818
1960
|
# },
|
|
1819
1961
|
# }
|
data/lib/aws-sdk-honeycode.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-honeycode
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.16.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:
|
|
11
|
+
date: 2022-02-03 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.126.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.126.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|