aws-sdk-honeycode 1.28.0 → 1.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-honeycode/client.rb +70 -46
- data/lib/aws-sdk-honeycode/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-honeycode.rb +1 -1
- data/sig/client.rbs +343 -0
- data/sig/errors.rbs +46 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +423 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 45c65a914e14ea2536cac0835e5fcfb0d451cf5098b3d38ea3613797bb3879f6
|
4
|
+
data.tar.gz: a45420076f33114883d8088df55daa737c782e47fa475cea6872cfb64a14ed60
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 535b0e517cfed5cdcb28fb560272dd9963c4a21b8945a6056cf5c62793457fd1751010853bf9a9d9a6c909917b5721a125433a8a2103d7be25fd4fe6cc630347
|
7
|
+
data.tar.gz: b8f03acb480564a0d41561210b5b75ed8222d224a854142d7e528aa21a9d45c5b9ce4f9c610c1dae6966bfc5de63e81f08a61f718fbb6537737901af0c939d06
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.30.0 (2024-04-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.29.0 (2024-01-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.28.0 (2023-11-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.30.0
|
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
|
22
22
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
23
23
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
24
24
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
25
26
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
26
27
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
27
28
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
@@ -72,6 +73,7 @@ module Aws::Honeycode
|
|
72
73
|
add_plugin(Aws::Plugins::ResponsePaging)
|
73
74
|
add_plugin(Aws::Plugins::StubResponses)
|
74
75
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
76
|
+
add_plugin(Aws::Plugins::InvocationId)
|
75
77
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
76
78
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
77
79
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
@@ -196,10 +198,17 @@ module Aws::Honeycode
|
|
196
198
|
# When set to 'true' the request body will not be compressed
|
197
199
|
# for supported operations.
|
198
200
|
#
|
199
|
-
# @option options [String] :endpoint
|
200
|
-
#
|
201
|
-
#
|
202
|
-
#
|
201
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
202
|
+
# Normally you should not configure the `:endpoint` option
|
203
|
+
# directly. This is normally constructed from the `:region`
|
204
|
+
# option. Configuring `:endpoint` is normally reserved for
|
205
|
+
# connecting to test or custom endpoints. The endpoint should
|
206
|
+
# be a URI formatted like:
|
207
|
+
#
|
208
|
+
# 'http://example.com'
|
209
|
+
# 'https://example.com'
|
210
|
+
# 'http://example.com:123'
|
211
|
+
#
|
203
212
|
#
|
204
213
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
205
214
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -337,50 +346,65 @@ module Aws::Honeycode
|
|
337
346
|
# @option options [Aws::Honeycode::EndpointProvider] :endpoint_provider
|
338
347
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::Honeycode::EndpointParameters`
|
339
348
|
#
|
340
|
-
# @option options [
|
341
|
-
#
|
342
|
-
#
|
343
|
-
#
|
344
|
-
#
|
345
|
-
#
|
346
|
-
#
|
347
|
-
#
|
348
|
-
#
|
349
|
-
#
|
350
|
-
#
|
351
|
-
# @option options [Float] :
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
#
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
349
|
+
# @option options [Float] :http_continue_timeout (1)
|
350
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
351
|
+
# request body. This option has no effect unless the request has "Expect"
|
352
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
353
|
+
# behaviour. This value can safely be set per request on the session.
|
354
|
+
#
|
355
|
+
# @option options [Float] :http_idle_timeout (5)
|
356
|
+
# The number of seconds a connection is allowed to sit idle before it
|
357
|
+
# is considered stale. Stale connections are closed and removed from the
|
358
|
+
# pool before making a request.
|
359
|
+
#
|
360
|
+
# @option options [Float] :http_open_timeout (15)
|
361
|
+
# The default number of seconds to wait for response data.
|
362
|
+
# This value can safely be set per-request on the session.
|
363
|
+
#
|
364
|
+
# @option options [URI::HTTP,String] :http_proxy
|
365
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
366
|
+
#
|
367
|
+
# @option options [Float] :http_read_timeout (60)
|
368
|
+
# The default number of seconds to wait for response data.
|
369
|
+
# This value can safely be set per-request on the session.
|
370
|
+
#
|
371
|
+
# @option options [Boolean] :http_wire_trace (false)
|
372
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
373
|
+
#
|
374
|
+
# @option options [Proc] :on_chunk_received
|
375
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
376
|
+
# of the response body is received. It provides three arguments: the chunk,
|
377
|
+
# the number of bytes received, and the total number of
|
378
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
379
|
+
#
|
380
|
+
# @option options [Proc] :on_chunk_sent
|
381
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
382
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
383
|
+
# the number of bytes read from the body, and the total number of
|
384
|
+
# bytes in the body.
|
385
|
+
#
|
386
|
+
# @option options [Boolean] :raise_response_errors (true)
|
387
|
+
# When `true`, response errors are raised.
|
388
|
+
#
|
389
|
+
# @option options [String] :ssl_ca_bundle
|
390
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
391
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
392
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
393
|
+
#
|
394
|
+
# @option options [String] :ssl_ca_directory
|
395
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
396
|
+
# authority files for verifying peer certificates. If you do
|
397
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
398
|
+
# default will be used if available.
|
365
399
|
#
|
366
|
-
# @option options [
|
367
|
-
#
|
400
|
+
# @option options [String] :ssl_ca_store
|
401
|
+
# Sets the X509::Store to verify peer certificate.
|
368
402
|
#
|
369
|
-
# @option options [
|
370
|
-
#
|
371
|
-
# connection.
|
403
|
+
# @option options [Float] :ssl_timeout
|
404
|
+
# Sets the SSL timeout in seconds
|
372
405
|
#
|
373
|
-
# @option options [
|
374
|
-
#
|
375
|
-
# verifying peer certificates. If you do not pass
|
376
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
377
|
-
# will be used if available.
|
378
|
-
#
|
379
|
-
# @option options [String] :ssl_ca_directory Full path of the
|
380
|
-
# directory that contains the unbundled SSL certificate
|
381
|
-
# authority files for verifying peer certificates. If you do
|
382
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
383
|
-
# system default will be used if available.
|
406
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
407
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
384
408
|
#
|
385
409
|
def initialize(*args)
|
386
410
|
super
|
@@ -1392,7 +1416,7 @@ module Aws::Honeycode
|
|
1392
1416
|
params: params,
|
1393
1417
|
config: config)
|
1394
1418
|
context[:gem_name] = 'aws-sdk-honeycode'
|
1395
|
-
context[:gem_version] = '1.
|
1419
|
+
context[:gem_version] = '1.30.0'
|
1396
1420
|
Seahorse::Client::Request.new(handlers, context)
|
1397
1421
|
end
|
1398
1422
|
|
@@ -14,6 +14,7 @@ module Aws::Honeycode
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::Honeycode::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
data/lib/aws-sdk-honeycode.rb
CHANGED
data/sig/client.rbs
ADDED
@@ -0,0 +1,343 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Honeycode
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Honeycode/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> instance
|
72
|
+
| (?Hash[Symbol, untyped]) -> instance
|
73
|
+
|
74
|
+
|
75
|
+
interface _BatchCreateTableRowsResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BatchCreateTableRowsResult]
|
77
|
+
def workbook_cursor: () -> ::Integer
|
78
|
+
def created_rows: () -> ::Hash[::String, ::String]
|
79
|
+
def failed_batch_items: () -> ::Array[Types::FailedBatchItem]
|
80
|
+
end
|
81
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Honeycode/Client.html#batch_create_table_rows-instance_method
|
82
|
+
def batch_create_table_rows: (
|
83
|
+
workbook_id: ::String,
|
84
|
+
table_id: ::String,
|
85
|
+
rows_to_create: Array[
|
86
|
+
{
|
87
|
+
batch_item_id: ::String,
|
88
|
+
cells_to_create: Hash[::String, {
|
89
|
+
fact: ::String?,
|
90
|
+
facts: Array[::String]?
|
91
|
+
}]
|
92
|
+
},
|
93
|
+
],
|
94
|
+
?client_request_token: ::String
|
95
|
+
) -> _BatchCreateTableRowsResponseSuccess
|
96
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchCreateTableRowsResponseSuccess
|
97
|
+
|
98
|
+
interface _BatchDeleteTableRowsResponseSuccess
|
99
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BatchDeleteTableRowsResult]
|
100
|
+
def workbook_cursor: () -> ::Integer
|
101
|
+
def failed_batch_items: () -> ::Array[Types::FailedBatchItem]
|
102
|
+
end
|
103
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Honeycode/Client.html#batch_delete_table_rows-instance_method
|
104
|
+
def batch_delete_table_rows: (
|
105
|
+
workbook_id: ::String,
|
106
|
+
table_id: ::String,
|
107
|
+
row_ids: Array[::String],
|
108
|
+
?client_request_token: ::String
|
109
|
+
) -> _BatchDeleteTableRowsResponseSuccess
|
110
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDeleteTableRowsResponseSuccess
|
111
|
+
|
112
|
+
interface _BatchUpdateTableRowsResponseSuccess
|
113
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BatchUpdateTableRowsResult]
|
114
|
+
def workbook_cursor: () -> ::Integer
|
115
|
+
def failed_batch_items: () -> ::Array[Types::FailedBatchItem]
|
116
|
+
end
|
117
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Honeycode/Client.html#batch_update_table_rows-instance_method
|
118
|
+
def batch_update_table_rows: (
|
119
|
+
workbook_id: ::String,
|
120
|
+
table_id: ::String,
|
121
|
+
rows_to_update: Array[
|
122
|
+
{
|
123
|
+
row_id: ::String,
|
124
|
+
cells_to_update: Hash[::String, {
|
125
|
+
fact: ::String?,
|
126
|
+
facts: Array[::String]?
|
127
|
+
}]
|
128
|
+
},
|
129
|
+
],
|
130
|
+
?client_request_token: ::String
|
131
|
+
) -> _BatchUpdateTableRowsResponseSuccess
|
132
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchUpdateTableRowsResponseSuccess
|
133
|
+
|
134
|
+
interface _BatchUpsertTableRowsResponseSuccess
|
135
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BatchUpsertTableRowsResult]
|
136
|
+
def rows: () -> ::Hash[::String, Types::UpsertRowsResult]
|
137
|
+
def workbook_cursor: () -> ::Integer
|
138
|
+
def failed_batch_items: () -> ::Array[Types::FailedBatchItem]
|
139
|
+
end
|
140
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Honeycode/Client.html#batch_upsert_table_rows-instance_method
|
141
|
+
def batch_upsert_table_rows: (
|
142
|
+
workbook_id: ::String,
|
143
|
+
table_id: ::String,
|
144
|
+
rows_to_upsert: Array[
|
145
|
+
{
|
146
|
+
batch_item_id: ::String,
|
147
|
+
filter: {
|
148
|
+
formula: ::String,
|
149
|
+
context_row_id: ::String?
|
150
|
+
},
|
151
|
+
cells_to_update: Hash[::String, {
|
152
|
+
fact: ::String?,
|
153
|
+
facts: Array[::String]?
|
154
|
+
}]
|
155
|
+
},
|
156
|
+
],
|
157
|
+
?client_request_token: ::String
|
158
|
+
) -> _BatchUpsertTableRowsResponseSuccess
|
159
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchUpsertTableRowsResponseSuccess
|
160
|
+
|
161
|
+
interface _DescribeTableDataImportJobResponseSuccess
|
162
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTableDataImportJobResult]
|
163
|
+
def job_status: () -> ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED" | "FAILED")
|
164
|
+
def message: () -> ::String
|
165
|
+
def job_metadata: () -> Types::TableDataImportJobMetadata
|
166
|
+
def error_code: () -> ("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")
|
167
|
+
end
|
168
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Honeycode/Client.html#describe_table_data_import_job-instance_method
|
169
|
+
def describe_table_data_import_job: (
|
170
|
+
workbook_id: ::String,
|
171
|
+
table_id: ::String,
|
172
|
+
job_id: ::String
|
173
|
+
) -> _DescribeTableDataImportJobResponseSuccess
|
174
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTableDataImportJobResponseSuccess
|
175
|
+
|
176
|
+
interface _GetScreenDataResponseSuccess
|
177
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetScreenDataResult]
|
178
|
+
def results: () -> ::Hash[::String, Types::ResultSet]
|
179
|
+
def workbook_cursor: () -> ::Integer
|
180
|
+
def next_token: () -> ::String
|
181
|
+
end
|
182
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Honeycode/Client.html#get_screen_data-instance_method
|
183
|
+
def get_screen_data: (
|
184
|
+
workbook_id: ::String,
|
185
|
+
app_id: ::String,
|
186
|
+
screen_id: ::String,
|
187
|
+
?variables: Hash[::String, {
|
188
|
+
raw_value: ::String
|
189
|
+
}],
|
190
|
+
?max_results: ::Integer,
|
191
|
+
?next_token: ::String
|
192
|
+
) -> _GetScreenDataResponseSuccess
|
193
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetScreenDataResponseSuccess
|
194
|
+
|
195
|
+
interface _InvokeScreenAutomationResponseSuccess
|
196
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::InvokeScreenAutomationResult]
|
197
|
+
def workbook_cursor: () -> ::Integer
|
198
|
+
end
|
199
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Honeycode/Client.html#invoke_screen_automation-instance_method
|
200
|
+
def invoke_screen_automation: (
|
201
|
+
workbook_id: ::String,
|
202
|
+
app_id: ::String,
|
203
|
+
screen_id: ::String,
|
204
|
+
screen_automation_id: ::String,
|
205
|
+
?variables: Hash[::String, {
|
206
|
+
raw_value: ::String
|
207
|
+
}],
|
208
|
+
?row_id: ::String,
|
209
|
+
?client_request_token: ::String
|
210
|
+
) -> _InvokeScreenAutomationResponseSuccess
|
211
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _InvokeScreenAutomationResponseSuccess
|
212
|
+
|
213
|
+
interface _ListTableColumnsResponseSuccess
|
214
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTableColumnsResult]
|
215
|
+
def table_columns: () -> ::Array[Types::TableColumn]
|
216
|
+
def next_token: () -> ::String
|
217
|
+
def workbook_cursor: () -> ::Integer
|
218
|
+
end
|
219
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Honeycode/Client.html#list_table_columns-instance_method
|
220
|
+
def list_table_columns: (
|
221
|
+
workbook_id: ::String,
|
222
|
+
table_id: ::String,
|
223
|
+
?next_token: ::String
|
224
|
+
) -> _ListTableColumnsResponseSuccess
|
225
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTableColumnsResponseSuccess
|
226
|
+
|
227
|
+
interface _ListTableRowsResponseSuccess
|
228
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTableRowsResult]
|
229
|
+
def column_ids: () -> ::Array[::String]
|
230
|
+
def rows: () -> ::Array[Types::TableRow]
|
231
|
+
def row_ids_not_found: () -> ::Array[::String]
|
232
|
+
def next_token: () -> ::String
|
233
|
+
def workbook_cursor: () -> ::Integer
|
234
|
+
end
|
235
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Honeycode/Client.html#list_table_rows-instance_method
|
236
|
+
def list_table_rows: (
|
237
|
+
workbook_id: ::String,
|
238
|
+
table_id: ::String,
|
239
|
+
?row_ids: Array[::String],
|
240
|
+
?max_results: ::Integer,
|
241
|
+
?next_token: ::String
|
242
|
+
) -> _ListTableRowsResponseSuccess
|
243
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTableRowsResponseSuccess
|
244
|
+
|
245
|
+
interface _ListTablesResponseSuccess
|
246
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTablesResult]
|
247
|
+
def tables: () -> ::Array[Types::Table]
|
248
|
+
def next_token: () -> ::String
|
249
|
+
def workbook_cursor: () -> ::Integer
|
250
|
+
end
|
251
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Honeycode/Client.html#list_tables-instance_method
|
252
|
+
def list_tables: (
|
253
|
+
workbook_id: ::String,
|
254
|
+
?max_results: ::Integer,
|
255
|
+
?next_token: ::String
|
256
|
+
) -> _ListTablesResponseSuccess
|
257
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTablesResponseSuccess
|
258
|
+
|
259
|
+
interface _ListTagsForResourceResponseSuccess
|
260
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResult]
|
261
|
+
def tags: () -> ::Hash[::String, ::String]
|
262
|
+
end
|
263
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Honeycode/Client.html#list_tags_for_resource-instance_method
|
264
|
+
def list_tags_for_resource: (
|
265
|
+
resource_arn: ::String
|
266
|
+
) -> _ListTagsForResourceResponseSuccess
|
267
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
268
|
+
|
269
|
+
interface _QueryTableRowsResponseSuccess
|
270
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::QueryTableRowsResult]
|
271
|
+
def column_ids: () -> ::Array[::String]
|
272
|
+
def rows: () -> ::Array[Types::TableRow]
|
273
|
+
def next_token: () -> ::String
|
274
|
+
def workbook_cursor: () -> ::Integer
|
275
|
+
end
|
276
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Honeycode/Client.html#query_table_rows-instance_method
|
277
|
+
def query_table_rows: (
|
278
|
+
workbook_id: ::String,
|
279
|
+
table_id: ::String,
|
280
|
+
filter_formula: {
|
281
|
+
formula: ::String,
|
282
|
+
context_row_id: ::String?
|
283
|
+
},
|
284
|
+
?max_results: ::Integer,
|
285
|
+
?next_token: ::String
|
286
|
+
) -> _QueryTableRowsResponseSuccess
|
287
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _QueryTableRowsResponseSuccess
|
288
|
+
|
289
|
+
interface _StartTableDataImportJobResponseSuccess
|
290
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartTableDataImportJobResult]
|
291
|
+
def job_id: () -> ::String
|
292
|
+
def job_status: () -> ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED" | "FAILED")
|
293
|
+
end
|
294
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Honeycode/Client.html#start_table_data_import_job-instance_method
|
295
|
+
def start_table_data_import_job: (
|
296
|
+
workbook_id: ::String,
|
297
|
+
data_source: {
|
298
|
+
data_source_config: {
|
299
|
+
data_source_url: ::String?
|
300
|
+
}
|
301
|
+
},
|
302
|
+
data_format: ("DELIMITED_TEXT"),
|
303
|
+
destination_table_id: ::String,
|
304
|
+
import_options: {
|
305
|
+
destination_options: {
|
306
|
+
column_map: Hash[::String, {
|
307
|
+
column_index: ::Integer?
|
308
|
+
}]?
|
309
|
+
}?,
|
310
|
+
delimited_text_options: {
|
311
|
+
delimiter: ::String,
|
312
|
+
has_header_row: bool?,
|
313
|
+
ignore_empty_rows: bool?,
|
314
|
+
data_character_encoding: ("UTF-8" | "US-ASCII" | "ISO-8859-1" | "UTF-16BE" | "UTF-16LE" | "UTF-16")?
|
315
|
+
}?
|
316
|
+
},
|
317
|
+
client_request_token: ::String
|
318
|
+
) -> _StartTableDataImportJobResponseSuccess
|
319
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartTableDataImportJobResponseSuccess
|
320
|
+
|
321
|
+
interface _TagResourceResponseSuccess
|
322
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResult]
|
323
|
+
end
|
324
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Honeycode/Client.html#tag_resource-instance_method
|
325
|
+
def tag_resource: (
|
326
|
+
resource_arn: ::String,
|
327
|
+
tags: Hash[::String, ::String]
|
328
|
+
) -> _TagResourceResponseSuccess
|
329
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
330
|
+
|
331
|
+
interface _UntagResourceResponseSuccess
|
332
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResult]
|
333
|
+
end
|
334
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Honeycode/Client.html#untag_resource-instance_method
|
335
|
+
def untag_resource: (
|
336
|
+
resource_arn: ::String,
|
337
|
+
tag_keys: Array[::String]
|
338
|
+
) -> _UntagResourceResponseSuccess
|
339
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
340
|
+
end
|
341
|
+
end
|
342
|
+
end
|
343
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Honeycode
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class AccessDeniedException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class AutomationExecutionException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class AutomationExecutionTimeoutException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class InternalServerException < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class RequestTimeoutException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
29
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
30
|
+
def message: () -> ::String
|
31
|
+
end
|
32
|
+
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
33
|
+
def message: () -> ::String
|
34
|
+
end
|
35
|
+
class ServiceUnavailableException < ::Aws::Errors::ServiceError
|
36
|
+
def message: () -> ::String
|
37
|
+
end
|
38
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
39
|
+
def message: () -> ::String
|
40
|
+
end
|
41
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
42
|
+
def message: () -> ::String
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Honeycode
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Honeycode/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Honeycode/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> void
|
72
|
+
| (?Hash[Symbol, untyped]) -> void
|
73
|
+
|
74
|
+
def client: () -> Client
|
75
|
+
|
76
|
+
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
data/sig/types.rbs
ADDED
@@ -0,0 +1,423 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::Honeycode
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AutomationExecutionException
|
17
|
+
attr_accessor message: ::String
|
18
|
+
SENSITIVE: []
|
19
|
+
end
|
20
|
+
|
21
|
+
class AutomationExecutionTimeoutException
|
22
|
+
attr_accessor message: ::String
|
23
|
+
SENSITIVE: []
|
24
|
+
end
|
25
|
+
|
26
|
+
class BatchCreateTableRowsRequest
|
27
|
+
attr_accessor workbook_id: ::String
|
28
|
+
attr_accessor table_id: ::String
|
29
|
+
attr_accessor rows_to_create: ::Array[Types::CreateRowData]
|
30
|
+
attr_accessor client_request_token: ::String
|
31
|
+
SENSITIVE: []
|
32
|
+
end
|
33
|
+
|
34
|
+
class BatchCreateTableRowsResult
|
35
|
+
attr_accessor workbook_cursor: ::Integer
|
36
|
+
attr_accessor created_rows: ::Hash[::String, ::String]
|
37
|
+
attr_accessor failed_batch_items: ::Array[Types::FailedBatchItem]
|
38
|
+
SENSITIVE: []
|
39
|
+
end
|
40
|
+
|
41
|
+
class BatchDeleteTableRowsRequest
|
42
|
+
attr_accessor workbook_id: ::String
|
43
|
+
attr_accessor table_id: ::String
|
44
|
+
attr_accessor row_ids: ::Array[::String]
|
45
|
+
attr_accessor client_request_token: ::String
|
46
|
+
SENSITIVE: []
|
47
|
+
end
|
48
|
+
|
49
|
+
class BatchDeleteTableRowsResult
|
50
|
+
attr_accessor workbook_cursor: ::Integer
|
51
|
+
attr_accessor failed_batch_items: ::Array[Types::FailedBatchItem]
|
52
|
+
SENSITIVE: []
|
53
|
+
end
|
54
|
+
|
55
|
+
class BatchUpdateTableRowsRequest
|
56
|
+
attr_accessor workbook_id: ::String
|
57
|
+
attr_accessor table_id: ::String
|
58
|
+
attr_accessor rows_to_update: ::Array[Types::UpdateRowData]
|
59
|
+
attr_accessor client_request_token: ::String
|
60
|
+
SENSITIVE: []
|
61
|
+
end
|
62
|
+
|
63
|
+
class BatchUpdateTableRowsResult
|
64
|
+
attr_accessor workbook_cursor: ::Integer
|
65
|
+
attr_accessor failed_batch_items: ::Array[Types::FailedBatchItem]
|
66
|
+
SENSITIVE: []
|
67
|
+
end
|
68
|
+
|
69
|
+
class BatchUpsertTableRowsRequest
|
70
|
+
attr_accessor workbook_id: ::String
|
71
|
+
attr_accessor table_id: ::String
|
72
|
+
attr_accessor rows_to_upsert: ::Array[Types::UpsertRowData]
|
73
|
+
attr_accessor client_request_token: ::String
|
74
|
+
SENSITIVE: []
|
75
|
+
end
|
76
|
+
|
77
|
+
class BatchUpsertTableRowsResult
|
78
|
+
attr_accessor rows: ::Hash[::String, Types::UpsertRowsResult]
|
79
|
+
attr_accessor workbook_cursor: ::Integer
|
80
|
+
attr_accessor failed_batch_items: ::Array[Types::FailedBatchItem]
|
81
|
+
SENSITIVE: []
|
82
|
+
end
|
83
|
+
|
84
|
+
class Cell
|
85
|
+
attr_accessor formula: ::String
|
86
|
+
attr_accessor format: ("AUTO" | "NUMBER" | "CURRENCY" | "DATE" | "TIME" | "DATE_TIME" | "PERCENTAGE" | "TEXT" | "ACCOUNTING" | "CONTACT" | "ROWLINK" | "ROWSET")
|
87
|
+
attr_accessor raw_value: ::String
|
88
|
+
attr_accessor formatted_value: ::String
|
89
|
+
attr_accessor formatted_values: ::Array[::String]
|
90
|
+
SENSITIVE: [:formula]
|
91
|
+
end
|
92
|
+
|
93
|
+
class CellInput
|
94
|
+
attr_accessor fact: ::String
|
95
|
+
attr_accessor facts: ::Array[::String]
|
96
|
+
SENSITIVE: [:fact]
|
97
|
+
end
|
98
|
+
|
99
|
+
class ColumnMetadata
|
100
|
+
attr_accessor name: ::String
|
101
|
+
attr_accessor format: ("AUTO" | "NUMBER" | "CURRENCY" | "DATE" | "TIME" | "DATE_TIME" | "PERCENTAGE" | "TEXT" | "ACCOUNTING" | "CONTACT" | "ROWLINK" | "ROWSET")
|
102
|
+
SENSITIVE: [:name]
|
103
|
+
end
|
104
|
+
|
105
|
+
class CreateRowData
|
106
|
+
attr_accessor batch_item_id: ::String
|
107
|
+
attr_accessor cells_to_create: ::Hash[::String, Types::CellInput]
|
108
|
+
SENSITIVE: []
|
109
|
+
end
|
110
|
+
|
111
|
+
class DataItem
|
112
|
+
attr_accessor override_format: ("AUTO" | "NUMBER" | "CURRENCY" | "DATE" | "TIME" | "DATE_TIME" | "PERCENTAGE" | "TEXT" | "ACCOUNTING" | "CONTACT" | "ROWLINK" | "ROWSET")
|
113
|
+
attr_accessor raw_value: ::String
|
114
|
+
attr_accessor formatted_value: ::String
|
115
|
+
SENSITIVE: []
|
116
|
+
end
|
117
|
+
|
118
|
+
class DelimitedTextImportOptions
|
119
|
+
attr_accessor delimiter: ::String
|
120
|
+
attr_accessor has_header_row: bool
|
121
|
+
attr_accessor ignore_empty_rows: bool
|
122
|
+
attr_accessor data_character_encoding: ("UTF-8" | "US-ASCII" | "ISO-8859-1" | "UTF-16BE" | "UTF-16LE" | "UTF-16")
|
123
|
+
SENSITIVE: []
|
124
|
+
end
|
125
|
+
|
126
|
+
class DescribeTableDataImportJobRequest
|
127
|
+
attr_accessor workbook_id: ::String
|
128
|
+
attr_accessor table_id: ::String
|
129
|
+
attr_accessor job_id: ::String
|
130
|
+
SENSITIVE: []
|
131
|
+
end
|
132
|
+
|
133
|
+
class DescribeTableDataImportJobResult
|
134
|
+
attr_accessor job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED" | "FAILED")
|
135
|
+
attr_accessor message: ::String
|
136
|
+
attr_accessor job_metadata: Types::TableDataImportJobMetadata
|
137
|
+
attr_accessor error_code: ("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")
|
138
|
+
SENSITIVE: []
|
139
|
+
end
|
140
|
+
|
141
|
+
class DestinationOptions
|
142
|
+
attr_accessor column_map: ::Hash[::String, Types::SourceDataColumnProperties]
|
143
|
+
SENSITIVE: []
|
144
|
+
end
|
145
|
+
|
146
|
+
class FailedBatchItem
|
147
|
+
attr_accessor id: ::String
|
148
|
+
attr_accessor error_message: ::String
|
149
|
+
SENSITIVE: []
|
150
|
+
end
|
151
|
+
|
152
|
+
class Filter
|
153
|
+
attr_accessor formula: ::String
|
154
|
+
attr_accessor context_row_id: ::String
|
155
|
+
SENSITIVE: [:formula]
|
156
|
+
end
|
157
|
+
|
158
|
+
class GetScreenDataRequest
|
159
|
+
attr_accessor workbook_id: ::String
|
160
|
+
attr_accessor app_id: ::String
|
161
|
+
attr_accessor screen_id: ::String
|
162
|
+
attr_accessor variables: ::Hash[::String, Types::VariableValue]
|
163
|
+
attr_accessor max_results: ::Integer
|
164
|
+
attr_accessor next_token: ::String
|
165
|
+
SENSITIVE: [:variables]
|
166
|
+
end
|
167
|
+
|
168
|
+
class GetScreenDataResult
|
169
|
+
attr_accessor results: ::Hash[::String, Types::ResultSet]
|
170
|
+
attr_accessor workbook_cursor: ::Integer
|
171
|
+
attr_accessor next_token: ::String
|
172
|
+
SENSITIVE: []
|
173
|
+
end
|
174
|
+
|
175
|
+
class ImportDataSource
|
176
|
+
attr_accessor data_source_config: Types::ImportDataSourceConfig
|
177
|
+
SENSITIVE: []
|
178
|
+
end
|
179
|
+
|
180
|
+
class ImportDataSourceConfig
|
181
|
+
attr_accessor data_source_url: ::String
|
182
|
+
SENSITIVE: [:data_source_url]
|
183
|
+
end
|
184
|
+
|
185
|
+
class ImportJobSubmitter
|
186
|
+
attr_accessor email: ::String
|
187
|
+
attr_accessor user_arn: ::String
|
188
|
+
SENSITIVE: [:email]
|
189
|
+
end
|
190
|
+
|
191
|
+
class ImportOptions
|
192
|
+
attr_accessor destination_options: Types::DestinationOptions
|
193
|
+
attr_accessor delimited_text_options: Types::DelimitedTextImportOptions
|
194
|
+
SENSITIVE: []
|
195
|
+
end
|
196
|
+
|
197
|
+
class InternalServerException
|
198
|
+
attr_accessor message: ::String
|
199
|
+
SENSITIVE: []
|
200
|
+
end
|
201
|
+
|
202
|
+
class InvokeScreenAutomationRequest
|
203
|
+
attr_accessor workbook_id: ::String
|
204
|
+
attr_accessor app_id: ::String
|
205
|
+
attr_accessor screen_id: ::String
|
206
|
+
attr_accessor screen_automation_id: ::String
|
207
|
+
attr_accessor variables: ::Hash[::String, Types::VariableValue]
|
208
|
+
attr_accessor row_id: ::String
|
209
|
+
attr_accessor client_request_token: ::String
|
210
|
+
SENSITIVE: [:variables]
|
211
|
+
end
|
212
|
+
|
213
|
+
class InvokeScreenAutomationResult
|
214
|
+
attr_accessor workbook_cursor: ::Integer
|
215
|
+
SENSITIVE: []
|
216
|
+
end
|
217
|
+
|
218
|
+
class ListTableColumnsRequest
|
219
|
+
attr_accessor workbook_id: ::String
|
220
|
+
attr_accessor table_id: ::String
|
221
|
+
attr_accessor next_token: ::String
|
222
|
+
SENSITIVE: []
|
223
|
+
end
|
224
|
+
|
225
|
+
class ListTableColumnsResult
|
226
|
+
attr_accessor table_columns: ::Array[Types::TableColumn]
|
227
|
+
attr_accessor next_token: ::String
|
228
|
+
attr_accessor workbook_cursor: ::Integer
|
229
|
+
SENSITIVE: []
|
230
|
+
end
|
231
|
+
|
232
|
+
class ListTableRowsRequest
|
233
|
+
attr_accessor workbook_id: ::String
|
234
|
+
attr_accessor table_id: ::String
|
235
|
+
attr_accessor row_ids: ::Array[::String]
|
236
|
+
attr_accessor max_results: ::Integer
|
237
|
+
attr_accessor next_token: ::String
|
238
|
+
SENSITIVE: []
|
239
|
+
end
|
240
|
+
|
241
|
+
class ListTableRowsResult
|
242
|
+
attr_accessor column_ids: ::Array[::String]
|
243
|
+
attr_accessor rows: ::Array[Types::TableRow]
|
244
|
+
attr_accessor row_ids_not_found: ::Array[::String]
|
245
|
+
attr_accessor next_token: ::String
|
246
|
+
attr_accessor workbook_cursor: ::Integer
|
247
|
+
SENSITIVE: []
|
248
|
+
end
|
249
|
+
|
250
|
+
class ListTablesRequest
|
251
|
+
attr_accessor workbook_id: ::String
|
252
|
+
attr_accessor max_results: ::Integer
|
253
|
+
attr_accessor next_token: ::String
|
254
|
+
SENSITIVE: []
|
255
|
+
end
|
256
|
+
|
257
|
+
class ListTablesResult
|
258
|
+
attr_accessor tables: ::Array[Types::Table]
|
259
|
+
attr_accessor next_token: ::String
|
260
|
+
attr_accessor workbook_cursor: ::Integer
|
261
|
+
SENSITIVE: []
|
262
|
+
end
|
263
|
+
|
264
|
+
class ListTagsForResourceRequest
|
265
|
+
attr_accessor resource_arn: ::String
|
266
|
+
SENSITIVE: []
|
267
|
+
end
|
268
|
+
|
269
|
+
class ListTagsForResourceResult
|
270
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
271
|
+
SENSITIVE: []
|
272
|
+
end
|
273
|
+
|
274
|
+
class QueryTableRowsRequest
|
275
|
+
attr_accessor workbook_id: ::String
|
276
|
+
attr_accessor table_id: ::String
|
277
|
+
attr_accessor filter_formula: Types::Filter
|
278
|
+
attr_accessor max_results: ::Integer
|
279
|
+
attr_accessor next_token: ::String
|
280
|
+
SENSITIVE: []
|
281
|
+
end
|
282
|
+
|
283
|
+
class QueryTableRowsResult
|
284
|
+
attr_accessor column_ids: ::Array[::String]
|
285
|
+
attr_accessor rows: ::Array[Types::TableRow]
|
286
|
+
attr_accessor next_token: ::String
|
287
|
+
attr_accessor workbook_cursor: ::Integer
|
288
|
+
SENSITIVE: []
|
289
|
+
end
|
290
|
+
|
291
|
+
class RequestTimeoutException
|
292
|
+
attr_accessor message: ::String
|
293
|
+
SENSITIVE: []
|
294
|
+
end
|
295
|
+
|
296
|
+
class ResourceNotFoundException
|
297
|
+
attr_accessor message: ::String
|
298
|
+
SENSITIVE: []
|
299
|
+
end
|
300
|
+
|
301
|
+
class ResultRow
|
302
|
+
attr_accessor row_id: ::String
|
303
|
+
attr_accessor data_items: ::Array[Types::DataItem]
|
304
|
+
SENSITIVE: []
|
305
|
+
end
|
306
|
+
|
307
|
+
class ResultSet
|
308
|
+
attr_accessor headers: ::Array[Types::ColumnMetadata]
|
309
|
+
attr_accessor rows: ::Array[Types::ResultRow]
|
310
|
+
SENSITIVE: []
|
311
|
+
end
|
312
|
+
|
313
|
+
class ServiceQuotaExceededException
|
314
|
+
attr_accessor message: ::String
|
315
|
+
SENSITIVE: []
|
316
|
+
end
|
317
|
+
|
318
|
+
class ServiceUnavailableException
|
319
|
+
attr_accessor message: ::String
|
320
|
+
SENSITIVE: []
|
321
|
+
end
|
322
|
+
|
323
|
+
class SourceDataColumnProperties
|
324
|
+
attr_accessor column_index: ::Integer
|
325
|
+
SENSITIVE: []
|
326
|
+
end
|
327
|
+
|
328
|
+
class StartTableDataImportJobRequest
|
329
|
+
attr_accessor workbook_id: ::String
|
330
|
+
attr_accessor data_source: Types::ImportDataSource
|
331
|
+
attr_accessor data_format: ("DELIMITED_TEXT")
|
332
|
+
attr_accessor destination_table_id: ::String
|
333
|
+
attr_accessor import_options: Types::ImportOptions
|
334
|
+
attr_accessor client_request_token: ::String
|
335
|
+
SENSITIVE: []
|
336
|
+
end
|
337
|
+
|
338
|
+
class StartTableDataImportJobResult
|
339
|
+
attr_accessor job_id: ::String
|
340
|
+
attr_accessor job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED" | "FAILED")
|
341
|
+
SENSITIVE: []
|
342
|
+
end
|
343
|
+
|
344
|
+
class Table
|
345
|
+
attr_accessor table_id: ::String
|
346
|
+
attr_accessor table_name: ::String
|
347
|
+
SENSITIVE: []
|
348
|
+
end
|
349
|
+
|
350
|
+
class TableColumn
|
351
|
+
attr_accessor table_column_id: ::String
|
352
|
+
attr_accessor table_column_name: ::String
|
353
|
+
attr_accessor format: ("AUTO" | "NUMBER" | "CURRENCY" | "DATE" | "TIME" | "DATE_TIME" | "PERCENTAGE" | "TEXT" | "ACCOUNTING" | "CONTACT" | "ROWLINK" | "ROWSET")
|
354
|
+
SENSITIVE: []
|
355
|
+
end
|
356
|
+
|
357
|
+
class TableDataImportJobMetadata
|
358
|
+
attr_accessor submitter: Types::ImportJobSubmitter
|
359
|
+
attr_accessor submit_time: ::Time
|
360
|
+
attr_accessor import_options: Types::ImportOptions
|
361
|
+
attr_accessor data_source: Types::ImportDataSource
|
362
|
+
SENSITIVE: []
|
363
|
+
end
|
364
|
+
|
365
|
+
class TableRow
|
366
|
+
attr_accessor row_id: ::String
|
367
|
+
attr_accessor cells: ::Array[Types::Cell]
|
368
|
+
SENSITIVE: []
|
369
|
+
end
|
370
|
+
|
371
|
+
class TagResourceRequest
|
372
|
+
attr_accessor resource_arn: ::String
|
373
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
374
|
+
SENSITIVE: []
|
375
|
+
end
|
376
|
+
|
377
|
+
class TagResourceResult < Aws::EmptyStructure
|
378
|
+
end
|
379
|
+
|
380
|
+
class ThrottlingException
|
381
|
+
attr_accessor message: ::String
|
382
|
+
SENSITIVE: []
|
383
|
+
end
|
384
|
+
|
385
|
+
class UntagResourceRequest
|
386
|
+
attr_accessor resource_arn: ::String
|
387
|
+
attr_accessor tag_keys: ::Array[::String]
|
388
|
+
SENSITIVE: []
|
389
|
+
end
|
390
|
+
|
391
|
+
class UntagResourceResult < Aws::EmptyStructure
|
392
|
+
end
|
393
|
+
|
394
|
+
class UpdateRowData
|
395
|
+
attr_accessor row_id: ::String
|
396
|
+
attr_accessor cells_to_update: ::Hash[::String, Types::CellInput]
|
397
|
+
SENSITIVE: []
|
398
|
+
end
|
399
|
+
|
400
|
+
class UpsertRowData
|
401
|
+
attr_accessor batch_item_id: ::String
|
402
|
+
attr_accessor filter: Types::Filter
|
403
|
+
attr_accessor cells_to_update: ::Hash[::String, Types::CellInput]
|
404
|
+
SENSITIVE: []
|
405
|
+
end
|
406
|
+
|
407
|
+
class UpsertRowsResult
|
408
|
+
attr_accessor row_ids: ::Array[::String]
|
409
|
+
attr_accessor upsert_action: ("UPDATED" | "APPENDED")
|
410
|
+
SENSITIVE: []
|
411
|
+
end
|
412
|
+
|
413
|
+
class ValidationException
|
414
|
+
attr_accessor message: ::String
|
415
|
+
SENSITIVE: []
|
416
|
+
end
|
417
|
+
|
418
|
+
class VariableValue
|
419
|
+
attr_accessor raw_value: ::String
|
420
|
+
SENSITIVE: []
|
421
|
+
end
|
422
|
+
end
|
423
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Honeycode
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
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.30.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-04-25 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.193.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.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,13 +66,18 @@ files:
|
|
66
66
|
- lib/aws-sdk-honeycode/plugins/endpoints.rb
|
67
67
|
- lib/aws-sdk-honeycode/resource.rb
|
68
68
|
- lib/aws-sdk-honeycode/types.rb
|
69
|
+
- sig/client.rbs
|
70
|
+
- sig/errors.rbs
|
71
|
+
- sig/resource.rbs
|
72
|
+
- sig/types.rbs
|
73
|
+
- sig/waiters.rbs
|
69
74
|
homepage: https://github.com/aws/aws-sdk-ruby
|
70
75
|
licenses:
|
71
76
|
- Apache-2.0
|
72
77
|
metadata:
|
73
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-honeycode
|
74
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-honeycode/CHANGELOG.md
|
75
|
-
post_install_message:
|
80
|
+
post_install_message:
|
76
81
|
rdoc_options: []
|
77
82
|
require_paths:
|
78
83
|
- lib
|
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
92
|
- !ruby/object:Gem::Version
|
88
93
|
version: '0'
|
89
94
|
requirements: []
|
90
|
-
rubygems_version: 3.
|
91
|
-
signing_key:
|
95
|
+
rubygems_version: 3.4.10
|
96
|
+
signing_key:
|
92
97
|
specification_version: 4
|
93
98
|
summary: AWS SDK for Ruby - Honeycode
|
94
99
|
test_files: []
|