aws-sdk-honeycode 1.11.0 → 1.15.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 +115 -9
- 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: 9881f6d6182ecdd0c887389b95410d22dd47639c6c575d3b56acfef675b28e84
|
4
|
+
data.tar.gz: 4ad9e20ed4bec25f3148bd985eb0506aff8ef0445ad19cb4477a3a790a78464c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6108177da5e3d20a26692fc78a99441f910ec861c1f5167ecdd541f05b26b2dfbe018e6a45a97bfcc97d4f2e938b29d5c374c35f9776960c017256f39c1df38c
|
7
|
+
data.tar.gz: 76314415a3a9cd0ab645c732f9993c6483672c0e341f67d64e8a2e067629cfc1f98052aeb7dea22ab137b818e3640619ed817c8413afed949eedabcf932624a4
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.15.0 (2022-01-14)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added read and write api support for multi-select picklist. And added errorcode field to DescribeTableDataImportJob API output, when import job fails.
|
8
|
+
|
9
|
+
1.14.0 (2022-01-12)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Honeycode is releasing new APIs to allow user to create, delete and list tags on resources.
|
13
|
+
|
14
|
+
1.13.0 (2021-12-21)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.12.0 (2021-11-30)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.11.0 (2021-11-04)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.15.0
|
@@ -27,6 +27,7 @@ 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'
|
30
31
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
32
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
33
|
|
@@ -73,6 +74,7 @@ module Aws::Honeycode
|
|
73
74
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
75
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
76
|
add_plugin(Aws::Plugins::HttpChecksum)
|
77
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
76
78
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
79
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
78
80
|
|
@@ -119,7 +121,9 @@ module Aws::Honeycode
|
|
119
121
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
122
|
# are very aggressive. Construct and pass an instance of
|
121
123
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
124
|
+
# enable retries and extended timeouts. Instance profile credential
|
125
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
126
|
+
# to true.
|
123
127
|
#
|
124
128
|
# @option options [required, String] :region
|
125
129
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +177,10 @@ module Aws::Honeycode
|
|
173
177
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
178
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
179
|
#
|
180
|
+
# @option options [String] :defaults_mode ("legacy")
|
181
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
182
|
+
# accepted modes and the configuration defaults that are included.
|
183
|
+
#
|
176
184
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
185
|
# Set to true to disable SDK automatically adding host prefix
|
178
186
|
# to default service endpoint when available.
|
@@ -295,7 +303,7 @@ module Aws::Honeycode
|
|
295
303
|
# seconds to wait when opening a HTTP session before raising a
|
296
304
|
# `Timeout::Error`.
|
297
305
|
#
|
298
|
-
# @option options [
|
306
|
+
# @option options [Float] :http_read_timeout (60) The default
|
299
307
|
# number of seconds to wait for response data. This value can
|
300
308
|
# safely be set per-request on the session.
|
301
309
|
#
|
@@ -311,6 +319,9 @@ module Aws::Honeycode
|
|
311
319
|
# disables this behaviour. This value can safely be set per
|
312
320
|
# request on the session.
|
313
321
|
#
|
322
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
323
|
+
# in seconds.
|
324
|
+
#
|
314
325
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
315
326
|
# HTTP debug output will be sent to the `:logger`.
|
316
327
|
#
|
@@ -397,6 +408,7 @@ module Aws::Honeycode
|
|
397
408
|
# cells_to_create: { # required
|
398
409
|
# "ResourceId" => {
|
399
410
|
# fact: "Fact",
|
411
|
+
# facts: ["Fact"],
|
400
412
|
# },
|
401
413
|
# },
|
402
414
|
# },
|
@@ -546,6 +558,7 @@ module Aws::Honeycode
|
|
546
558
|
# cells_to_update: { # required
|
547
559
|
# "ResourceId" => {
|
548
560
|
# fact: "Fact",
|
561
|
+
# facts: ["Fact"],
|
549
562
|
# },
|
550
563
|
# },
|
551
564
|
# },
|
@@ -639,6 +652,7 @@ module Aws::Honeycode
|
|
639
652
|
# cells_to_update: { # required
|
640
653
|
# "ResourceId" => {
|
641
654
|
# fact: "Fact",
|
655
|
+
# facts: ["Fact"],
|
642
656
|
# },
|
643
657
|
# },
|
644
658
|
# },
|
@@ -693,6 +707,7 @@ module Aws::Honeycode
|
|
693
707
|
# * {Types::DescribeTableDataImportJobResult#job_status #job_status} => String
|
694
708
|
# * {Types::DescribeTableDataImportJobResult#message #message} => String
|
695
709
|
# * {Types::DescribeTableDataImportJobResult#job_metadata #job_metadata} => Types::TableDataImportJobMetadata
|
710
|
+
# * {Types::DescribeTableDataImportJobResult#error_code #error_code} => String
|
696
711
|
#
|
697
712
|
# @example Request syntax with placeholder values
|
698
713
|
#
|
@@ -716,6 +731,7 @@ module Aws::Honeycode
|
|
716
731
|
# resp.job_metadata.import_options.delimited_text_options.ignore_empty_rows #=> Boolean
|
717
732
|
# 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"
|
718
733
|
# resp.job_metadata.data_source.data_source_config.data_source_url #=> String
|
734
|
+
# 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"
|
719
735
|
#
|
720
736
|
# @see http://docs.aws.amazon.com/goto/WebAPI/honeycode-2020-03-01/DescribeTableDataImportJob AWS API Documentation
|
721
737
|
#
|
@@ -734,7 +750,7 @@ module Aws::Honeycode
|
|
734
750
|
# The ID of the workbook that contains the screen.
|
735
751
|
#
|
736
752
|
# @option params [required, String] :app_id
|
737
|
-
# The ID of the app that contains the
|
753
|
+
# The ID of the app that contains the screen.
|
738
754
|
#
|
739
755
|
# @option params [required, String] :screen_id
|
740
756
|
# The ID of the screen.
|
@@ -787,11 +803,11 @@ module Aws::Honeycode
|
|
787
803
|
# resp.results #=> Hash
|
788
804
|
# resp.results["Name"].headers #=> Array
|
789
805
|
# resp.results["Name"].headers[0].name #=> String
|
790
|
-
# resp.results["Name"].headers[0].format #=> String, one of "AUTO", "NUMBER", "CURRENCY", "DATE", "TIME", "DATE_TIME", "PERCENTAGE", "TEXT", "ACCOUNTING", "CONTACT", "ROWLINK"
|
806
|
+
# resp.results["Name"].headers[0].format #=> String, one of "AUTO", "NUMBER", "CURRENCY", "DATE", "TIME", "DATE_TIME", "PERCENTAGE", "TEXT", "ACCOUNTING", "CONTACT", "ROWLINK", "ROWSET"
|
791
807
|
# resp.results["Name"].rows #=> Array
|
792
808
|
# resp.results["Name"].rows[0].row_id #=> String
|
793
809
|
# resp.results["Name"].rows[0].data_items #=> Array
|
794
|
-
# 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"
|
810
|
+
# 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"
|
795
811
|
# resp.results["Name"].rows[0].data_items[0].raw_value #=> String
|
796
812
|
# resp.results["Name"].rows[0].data_items[0].formatted_value #=> String
|
797
813
|
# resp.workbook_cursor #=> Integer
|
@@ -925,7 +941,7 @@ module Aws::Honeycode
|
|
925
941
|
# resp.table_columns #=> Array
|
926
942
|
# resp.table_columns[0].table_column_id #=> String
|
927
943
|
# resp.table_columns[0].table_column_name #=> String
|
928
|
-
# resp.table_columns[0].format #=> String, one of "AUTO", "NUMBER", "CURRENCY", "DATE", "TIME", "DATE_TIME", "PERCENTAGE", "TEXT", "ACCOUNTING", "CONTACT", "ROWLINK"
|
944
|
+
# resp.table_columns[0].format #=> String, one of "AUTO", "NUMBER", "CURRENCY", "DATE", "TIME", "DATE_TIME", "PERCENTAGE", "TEXT", "ACCOUNTING", "CONTACT", "ROWLINK", "ROWSET"
|
929
945
|
# resp.next_token #=> String
|
930
946
|
# resp.workbook_cursor #=> Integer
|
931
947
|
#
|
@@ -999,9 +1015,11 @@ module Aws::Honeycode
|
|
999
1015
|
# resp.rows[0].row_id #=> String
|
1000
1016
|
# resp.rows[0].cells #=> Array
|
1001
1017
|
# resp.rows[0].cells[0].formula #=> String
|
1002
|
-
# resp.rows[0].cells[0].format #=> String, one of "AUTO", "NUMBER", "CURRENCY", "DATE", "TIME", "DATE_TIME", "PERCENTAGE", "TEXT", "ACCOUNTING", "CONTACT", "ROWLINK"
|
1018
|
+
# resp.rows[0].cells[0].format #=> String, one of "AUTO", "NUMBER", "CURRENCY", "DATE", "TIME", "DATE_TIME", "PERCENTAGE", "TEXT", "ACCOUNTING", "CONTACT", "ROWLINK", "ROWSET"
|
1003
1019
|
# resp.rows[0].cells[0].raw_value #=> String
|
1004
1020
|
# resp.rows[0].cells[0].formatted_value #=> String
|
1021
|
+
# resp.rows[0].cells[0].formatted_values #=> Array
|
1022
|
+
# resp.rows[0].cells[0].formatted_values[0] #=> String
|
1005
1023
|
# resp.row_ids_not_found #=> Array
|
1006
1024
|
# resp.row_ids_not_found[0] #=> String
|
1007
1025
|
# resp.next_token #=> String
|
@@ -1069,6 +1087,35 @@ module Aws::Honeycode
|
|
1069
1087
|
req.send_request(options)
|
1070
1088
|
end
|
1071
1089
|
|
1090
|
+
# The ListTagsForResource API allows you to return a resource's tags.
|
1091
|
+
#
|
1092
|
+
# @option params [required, String] :resource_arn
|
1093
|
+
# The resource's Amazon Resource Name (ARN).
|
1094
|
+
#
|
1095
|
+
# @return [Types::ListTagsForResourceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1096
|
+
#
|
1097
|
+
# * {Types::ListTagsForResourceResult#tags #tags} => Hash<String,String>
|
1098
|
+
#
|
1099
|
+
# @example Request syntax with placeholder values
|
1100
|
+
#
|
1101
|
+
# resp = client.list_tags_for_resource({
|
1102
|
+
# resource_arn: "ResourceArn", # required
|
1103
|
+
# })
|
1104
|
+
#
|
1105
|
+
# @example Response structure
|
1106
|
+
#
|
1107
|
+
# resp.tags #=> Hash
|
1108
|
+
# resp.tags["TagKey"] #=> String
|
1109
|
+
#
|
1110
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/honeycode-2020-03-01/ListTagsForResource AWS API Documentation
|
1111
|
+
#
|
1112
|
+
# @overload list_tags_for_resource(params = {})
|
1113
|
+
# @param [Hash] params ({})
|
1114
|
+
def list_tags_for_resource(params = {}, options = {})
|
1115
|
+
req = build_request(:list_tags_for_resource, params)
|
1116
|
+
req.send_request(options)
|
1117
|
+
end
|
1118
|
+
|
1072
1119
|
# The QueryTableRows API allows you to use a filter formula to query for
|
1073
1120
|
# specific rows in a table.
|
1074
1121
|
#
|
@@ -1129,9 +1176,11 @@ module Aws::Honeycode
|
|
1129
1176
|
# resp.rows[0].row_id #=> String
|
1130
1177
|
# resp.rows[0].cells #=> Array
|
1131
1178
|
# resp.rows[0].cells[0].formula #=> String
|
1132
|
-
# resp.rows[0].cells[0].format #=> String, one of "AUTO", "NUMBER", "CURRENCY", "DATE", "TIME", "DATE_TIME", "PERCENTAGE", "TEXT", "ACCOUNTING", "CONTACT", "ROWLINK"
|
1179
|
+
# resp.rows[0].cells[0].format #=> String, one of "AUTO", "NUMBER", "CURRENCY", "DATE", "TIME", "DATE_TIME", "PERCENTAGE", "TEXT", "ACCOUNTING", "CONTACT", "ROWLINK", "ROWSET"
|
1133
1180
|
# resp.rows[0].cells[0].raw_value #=> String
|
1134
1181
|
# resp.rows[0].cells[0].formatted_value #=> String
|
1182
|
+
# resp.rows[0].cells[0].formatted_values #=> Array
|
1183
|
+
# resp.rows[0].cells[0].formatted_values[0] #=> String
|
1135
1184
|
# resp.next_token #=> String
|
1136
1185
|
# resp.workbook_cursor #=> Integer
|
1137
1186
|
#
|
@@ -1232,6 +1281,63 @@ module Aws::Honeycode
|
|
1232
1281
|
req.send_request(options)
|
1233
1282
|
end
|
1234
1283
|
|
1284
|
+
# The TagResource API allows you to add tags to an ARN-able resource.
|
1285
|
+
# Resource includes workbook, table, screen and screen-automation.
|
1286
|
+
#
|
1287
|
+
# @option params [required, String] :resource_arn
|
1288
|
+
# The resource's Amazon Resource Name (ARN).
|
1289
|
+
#
|
1290
|
+
# @option params [required, Hash<String,String>] :tags
|
1291
|
+
# A list of tags to apply to the resource.
|
1292
|
+
#
|
1293
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1294
|
+
#
|
1295
|
+
# @example Request syntax with placeholder values
|
1296
|
+
#
|
1297
|
+
# resp = client.tag_resource({
|
1298
|
+
# resource_arn: "ResourceArn", # required
|
1299
|
+
# tags: { # required
|
1300
|
+
# "TagKey" => "TagValue",
|
1301
|
+
# },
|
1302
|
+
# })
|
1303
|
+
#
|
1304
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/honeycode-2020-03-01/TagResource AWS API Documentation
|
1305
|
+
#
|
1306
|
+
# @overload tag_resource(params = {})
|
1307
|
+
# @param [Hash] params ({})
|
1308
|
+
def tag_resource(params = {}, options = {})
|
1309
|
+
req = build_request(:tag_resource, params)
|
1310
|
+
req.send_request(options)
|
1311
|
+
end
|
1312
|
+
|
1313
|
+
# The UntagResource API allows you to removes tags from an ARN-able
|
1314
|
+
# resource. Resource includes workbook, table, screen and
|
1315
|
+
# screen-automation.
|
1316
|
+
#
|
1317
|
+
# @option params [required, String] :resource_arn
|
1318
|
+
# The resource's Amazon Resource Name (ARN).
|
1319
|
+
#
|
1320
|
+
# @option params [required, Array<String>] :tag_keys
|
1321
|
+
# A list of tag keys to remove from the resource.
|
1322
|
+
#
|
1323
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1324
|
+
#
|
1325
|
+
# @example Request syntax with placeholder values
|
1326
|
+
#
|
1327
|
+
# resp = client.untag_resource({
|
1328
|
+
# resource_arn: "ResourceArn", # required
|
1329
|
+
# tag_keys: ["TagKey"], # required
|
1330
|
+
# })
|
1331
|
+
#
|
1332
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/honeycode-2020-03-01/UntagResource AWS API Documentation
|
1333
|
+
#
|
1334
|
+
# @overload untag_resource(params = {})
|
1335
|
+
# @param [Hash] params ({})
|
1336
|
+
def untag_resource(params = {}, options = {})
|
1337
|
+
req = build_request(:untag_resource, params)
|
1338
|
+
req.send_request(options)
|
1339
|
+
end
|
1340
|
+
|
1235
1341
|
# @!endgroup
|
1236
1342
|
|
1237
1343
|
# @param params ({})
|
@@ -1245,7 +1351,7 @@ module Aws::Honeycode
|
|
1245
1351
|
params: params,
|
1246
1352
|
config: config)
|
1247
1353
|
context[:gem_name] = 'aws-sdk-honeycode'
|
1248
|
-
context[:gem_version] = '1.
|
1354
|
+
context[:gem_version] = '1.15.0'
|
1249
1355
|
Seahorse::Client::Request.new(handlers, context)
|
1250
1356
|
end
|
1251
1357
|
|
@@ -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.15.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-01-14 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.125.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.125.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|