aws-sdk-honeycode 1.18.0 → 1.19.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2268405146d479beb85e870dd176ef0c6078d840feda812cf5e637caf9338530
4
- data.tar.gz: 0227b365f2c912e207ba18ceab4529d4a8d55a29f00d7ac8a546fedde02c0121
3
+ metadata.gz: 95ed66ba131aff84a29ed1253fcf0a30307cfdd8680b467a819d3a2e618c8517
4
+ data.tar.gz: cf392c6c5cb0d245f9fb2089c12a3b9514437111a780ac34a673639aed53c1f1
5
5
  SHA512:
6
- metadata.gz: 357918a86d65c395271010a664c2a99e3d36ae49793fc3f81352f8942453e7826588e4f28c8d304807e05909e74bd40c84ff544f448c9169489080f76a79f108
7
- data.tar.gz: 28f605b5763de16ab9b4269ca767b4bf055d5e75cafea5ad54fec72d19ef2e8b7a41811e9d7e8b5e1b1964a60697f457058c864043215dac8a19b10af9b767a6
6
+ metadata.gz: fa61e29fd8267d50cc19a1d04410662386c187a78495b77c366102c670a8a4bb24c8034a446b2e1026a14028e3453fcc463f2cd1c957a6616ed99935a6c178ce
7
+ data.tar.gz: 537216515cf69e6ef0ce477b41c703a669939043105f5ae81bc402de90bd5afcb92406b14428d84b4babb60d1f207747b37aa7cb1c13be76a442b62755889323
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.19.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.18.0 (2022-10-25)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.18.0
1
+ 1.19.0
@@ -1372,7 +1372,7 @@ module Aws::Honeycode
1372
1372
  params: params,
1373
1373
  config: config)
1374
1374
  context[:gem_name] = 'aws-sdk-honeycode'
1375
- context[:gem_version] = '1.18.0'
1375
+ context[:gem_version] = '1.19.0'
1376
1376
  Seahorse::Client::Request.new(handlers, context)
1377
1377
  end
1378
1378
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::Honeycode
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://honeycode-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://honeycode-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://honeycode.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://honeycode.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2hvbmV5Y29kZS1maXBzLntSZWdpb259LntQ
77
- YXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRp
78
- ZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJj
79
- b25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJl
80
- IGVuYWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0
81
- IG9uZSBvciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMi
82
- Olt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJ
83
- UFMifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
84
- b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZu
85
- IjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9
86
- LCJzdXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
87
- ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25k
88
- aXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9ob25leWNv
89
- ZGUtZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0i
90
- LCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9p
91
- bnQifV19XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVu
92
- YWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQ
93
- UyIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJv
94
- b2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0
95
- cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
96
- eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0
97
- QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBw
98
- b3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
99
- Y29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vaG9u
100
- ZXljb2RlLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5z
101
- U3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUi
102
- OiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFs
103
- U3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qg
104
- c3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0
105
- aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vaG9uZXljb2Rl
106
- LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3Bl
107
- cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1d
108
- fQ==
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -51,26 +51,6 @@ module Aws::Honeycode
51
51
  include Aws::Structure
52
52
  end
53
53
 
54
- # @note When making an API call, you may pass BatchCreateTableRowsRequest
55
- # data as a hash:
56
- #
57
- # {
58
- # workbook_id: "ResourceId", # required
59
- # table_id: "ResourceId", # required
60
- # rows_to_create: [ # required
61
- # {
62
- # batch_item_id: "BatchItemId", # required
63
- # cells_to_create: { # required
64
- # "ResourceId" => {
65
- # fact: "Fact",
66
- # facts: ["Fact"],
67
- # },
68
- # },
69
- # },
70
- # ],
71
- # client_request_token: "ClientRequestToken",
72
- # }
73
- #
74
54
  # @!attribute [rw] workbook_id
75
55
  # The ID of the workbook where the new rows are being added.
76
56
  #
@@ -146,16 +126,6 @@ module Aws::Honeycode
146
126
  include Aws::Structure
147
127
  end
148
128
 
149
- # @note When making an API call, you may pass BatchDeleteTableRowsRequest
150
- # data as a hash:
151
- #
152
- # {
153
- # workbook_id: "ResourceId", # required
154
- # table_id: "ResourceId", # required
155
- # row_ids: ["RowId"], # required
156
- # client_request_token: "ClientRequestToken",
157
- # }
158
- #
159
129
  # @!attribute [rw] workbook_id
160
130
  # The ID of the workbook where the rows are being deleted.
161
131
  #
@@ -222,26 +192,6 @@ module Aws::Honeycode
222
192
  include Aws::Structure
223
193
  end
224
194
 
225
- # @note When making an API call, you may pass BatchUpdateTableRowsRequest
226
- # data as a hash:
227
- #
228
- # {
229
- # workbook_id: "ResourceId", # required
230
- # table_id: "ResourceId", # required
231
- # rows_to_update: [ # required
232
- # {
233
- # row_id: "RowId", # required
234
- # cells_to_update: { # required
235
- # "ResourceId" => {
236
- # fact: "Fact",
237
- # facts: ["Fact"],
238
- # },
239
- # },
240
- # },
241
- # ],
242
- # client_request_token: "ClientRequestToken",
243
- # }
244
- #
245
195
  # @!attribute [rw] workbook_id
246
196
  # The ID of the workbook where the rows are being updated.
247
197
  #
@@ -312,30 +262,6 @@ module Aws::Honeycode
312
262
  include Aws::Structure
313
263
  end
314
264
 
315
- # @note When making an API call, you may pass BatchUpsertTableRowsRequest
316
- # data as a hash:
317
- #
318
- # {
319
- # workbook_id: "ResourceId", # required
320
- # table_id: "ResourceId", # required
321
- # rows_to_upsert: [ # required
322
- # {
323
- # batch_item_id: "BatchItemId", # required
324
- # filter: { # required
325
- # formula: "Formula", # required
326
- # context_row_id: "RowId",
327
- # },
328
- # cells_to_update: { # required
329
- # "ResourceId" => {
330
- # fact: "Fact",
331
- # facts: ["Fact"],
332
- # },
333
- # },
334
- # },
335
- # ],
336
- # client_request_token: "ClientRequestToken",
337
- # }
338
- #
339
265
  # @!attribute [rw] workbook_id
340
266
  # The ID of the workbook where the rows are being upserted.
341
267
  #
@@ -536,14 +462,6 @@ module Aws::Honeycode
536
462
  #
537
463
  # </note>
538
464
  #
539
- # @note When making an API call, you may pass CellInput
540
- # data as a hash:
541
- #
542
- # {
543
- # fact: "Fact",
544
- # facts: ["Fact"],
545
- # }
546
- #
547
465
  # @!attribute [rw] fact
548
466
  # Fact represents the data that is entered into a cell. This data can
549
467
  # be free text or a formula. Formulas need to start with the equals
@@ -587,19 +505,6 @@ module Aws::Honeycode
587
505
  # Data needed to create a single row in a table as part of the
588
506
  # BatchCreateTableRows request.
589
507
  #
590
- # @note When making an API call, you may pass CreateRowData
591
- # data as a hash:
592
- #
593
- # {
594
- # batch_item_id: "BatchItemId", # required
595
- # cells_to_create: { # required
596
- # "ResourceId" => {
597
- # fact: "Fact",
598
- # facts: ["Fact"],
599
- # },
600
- # },
601
- # }
602
- #
603
508
  # @!attribute [rw] batch_item_id
604
509
  # An external identifier that represents the single row that is being
605
510
  # created as part of the BatchCreateTableRows request. This can be any
@@ -652,16 +557,6 @@ module Aws::Honeycode
652
557
  # An object that contains the options relating to parsing delimited text
653
558
  # as part of an import request.
654
559
  #
655
- # @note When making an API call, you may pass DelimitedTextImportOptions
656
- # data as a hash:
657
- #
658
- # {
659
- # delimiter: "DelimitedTextDelimiter", # required
660
- # has_header_row: false,
661
- # ignore_empty_rows: false,
662
- # data_character_encoding: "UTF-8", # accepts UTF-8, US-ASCII, ISO-8859-1, UTF-16BE, UTF-16LE, UTF-16
663
- # }
664
- #
665
560
  # @!attribute [rw] delimiter
666
561
  # The delimiter to use for separating columns in a single row of the
667
562
  # input.
@@ -692,15 +587,6 @@ module Aws::Honeycode
692
587
  include Aws::Structure
693
588
  end
694
589
 
695
- # @note When making an API call, you may pass DescribeTableDataImportJobRequest
696
- # data as a hash:
697
- #
698
- # {
699
- # workbook_id: "ResourceId", # required
700
- # table_id: "ResourceId", # required
701
- # job_id: "JobId", # required
702
- # }
703
- #
704
590
  # @!attribute [rw] workbook_id
705
591
  # The ID of the workbook into which data was imported.
706
592
  #
@@ -765,17 +651,6 @@ module Aws::Honeycode
765
651
  # An object that contains the options relating to the destination of the
766
652
  # import request.
767
653
  #
768
- # @note When making an API call, you may pass DestinationOptions
769
- # data as a hash:
770
- #
771
- # {
772
- # column_map: {
773
- # "ResourceId" => {
774
- # column_index: 1,
775
- # },
776
- # },
777
- # }
778
- #
779
654
  # @!attribute [rw] column_map
780
655
  # A map of the column id to the import properties for each column.
781
656
  # @return [Hash<String,Types::SourceDataColumnProperties>]
@@ -814,14 +689,6 @@ module Aws::Honeycode
814
689
  # An object that represents a filter formula along with the id of the
815
690
  # context row under which the filter function needs to evaluate.
816
691
  #
817
- # @note When making an API call, you may pass Filter
818
- # data as a hash:
819
- #
820
- # {
821
- # formula: "Formula", # required
822
- # context_row_id: "RowId",
823
- # }
824
- #
825
692
  # @!attribute [rw] formula
826
693
  # A formula representing a filter function that returns zero or more
827
694
  # matching rows from a table. Valid formulas in this field return a
@@ -848,22 +715,6 @@ module Aws::Honeycode
848
715
  include Aws::Structure
849
716
  end
850
717
 
851
- # @note When making an API call, you may pass GetScreenDataRequest
852
- # data as a hash:
853
- #
854
- # {
855
- # workbook_id: "ResourceId", # required
856
- # app_id: "ResourceId", # required
857
- # screen_id: "ResourceId", # required
858
- # variables: {
859
- # "VariableName" => {
860
- # raw_value: "RawValue", # required
861
- # },
862
- # },
863
- # max_results: 1,
864
- # next_token: "PaginationToken",
865
- # }
866
- #
867
718
  # @!attribute [rw] workbook_id
868
719
  # The ID of the workbook that contains the screen.
869
720
  # @return [String]
@@ -944,15 +795,6 @@ module Aws::Honeycode
944
795
  # An object that has details about the source of the data that was
945
796
  # submitted for import.
946
797
  #
947
- # @note When making an API call, you may pass ImportDataSource
948
- # data as a hash:
949
- #
950
- # {
951
- # data_source_config: { # required
952
- # data_source_url: "SecureURL",
953
- # },
954
- # }
955
- #
956
798
  # @!attribute [rw] data_source_config
957
799
  # The configuration parameters for the data source of the import
958
800
  # @return [Types::ImportDataSourceConfig]
@@ -968,13 +810,6 @@ module Aws::Honeycode
968
810
  # An object that contains the configuration parameters for the data
969
811
  # source of an import request.
970
812
  #
971
- # @note When making an API call, you may pass ImportDataSourceConfig
972
- # data as a hash:
973
- #
974
- # {
975
- # data_source_url: "SecureURL",
976
- # }
977
- #
978
813
  # @!attribute [rw] data_source_url
979
814
  # The URL from which source data will be downloaded for the import
980
815
  # request.
@@ -1011,25 +846,6 @@ module Aws::Honeycode
1011
846
  # An object that contains the options specified by the sumitter of the
1012
847
  # import request.
1013
848
  #
1014
- # @note When making an API call, you may pass ImportOptions
1015
- # data as a hash:
1016
- #
1017
- # {
1018
- # destination_options: {
1019
- # column_map: {
1020
- # "ResourceId" => {
1021
- # column_index: 1,
1022
- # },
1023
- # },
1024
- # },
1025
- # delimited_text_options: {
1026
- # delimiter: "DelimitedTextDelimiter", # required
1027
- # has_header_row: false,
1028
- # ignore_empty_rows: false,
1029
- # data_character_encoding: "UTF-8", # accepts UTF-8, US-ASCII, ISO-8859-1, UTF-16BE, UTF-16LE, UTF-16
1030
- # },
1031
- # }
1032
- #
1033
849
  # @!attribute [rw] destination_options
1034
850
  # Options relating to the destination of the import request.
1035
851
  # @return [Types::DestinationOptions]
@@ -1061,23 +877,6 @@ module Aws::Honeycode
1061
877
  include Aws::Structure
1062
878
  end
1063
879
 
1064
- # @note When making an API call, you may pass InvokeScreenAutomationRequest
1065
- # data as a hash:
1066
- #
1067
- # {
1068
- # workbook_id: "ResourceId", # required
1069
- # app_id: "ResourceId", # required
1070
- # screen_id: "ResourceId", # required
1071
- # screen_automation_id: "ResourceId", # required
1072
- # variables: {
1073
- # "VariableName" => {
1074
- # raw_value: "RawValue", # required
1075
- # },
1076
- # },
1077
- # row_id: "RowId",
1078
- # client_request_token: "ClientRequestToken",
1079
- # }
1080
- #
1081
880
  # @!attribute [rw] workbook_id
1082
881
  # The ID of the workbook that contains the screen automation.
1083
882
  # @return [String]
@@ -1146,15 +945,6 @@ module Aws::Honeycode
1146
945
  include Aws::Structure
1147
946
  end
1148
947
 
1149
- # @note When making an API call, you may pass ListTableColumnsRequest
1150
- # data as a hash:
1151
- #
1152
- # {
1153
- # workbook_id: "ResourceId", # required
1154
- # table_id: "ResourceId", # required
1155
- # next_token: "PaginationToken",
1156
- # }
1157
- #
1158
948
  # @!attribute [rw] workbook_id
1159
949
  # The ID of the workbook that contains the table whose columns are
1160
950
  # being retrieved.
@@ -1216,17 +1006,6 @@ module Aws::Honeycode
1216
1006
  include Aws::Structure
1217
1007
  end
1218
1008
 
1219
- # @note When making an API call, you may pass ListTableRowsRequest
1220
- # data as a hash:
1221
- #
1222
- # {
1223
- # workbook_id: "ResourceId", # required
1224
- # table_id: "ResourceId", # required
1225
- # row_ids: ["RowId"],
1226
- # max_results: 1,
1227
- # next_token: "PaginationToken",
1228
- # }
1229
- #
1230
1009
  # @!attribute [rw] workbook_id
1231
1010
  # The ID of the workbook that contains the table whose rows are being
1232
1011
  # retrieved.
@@ -1314,15 +1093,6 @@ module Aws::Honeycode
1314
1093
  include Aws::Structure
1315
1094
  end
1316
1095
 
1317
- # @note When making an API call, you may pass ListTablesRequest
1318
- # data as a hash:
1319
- #
1320
- # {
1321
- # workbook_id: "ResourceId", # required
1322
- # max_results: 1,
1323
- # next_token: "PaginationToken",
1324
- # }
1325
- #
1326
1096
  # @!attribute [rw] workbook_id
1327
1097
  # The ID of the workbook whose tables are being retrieved.
1328
1098
  #
@@ -1380,13 +1150,6 @@ module Aws::Honeycode
1380
1150
  include Aws::Structure
1381
1151
  end
1382
1152
 
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
1153
  # @!attribute [rw] resource_arn
1391
1154
  # The resource's Amazon Resource Name (ARN).
1392
1155
  # @return [String]
@@ -1411,20 +1174,6 @@ module Aws::Honeycode
1411
1174
  include Aws::Structure
1412
1175
  end
1413
1176
 
1414
- # @note When making an API call, you may pass QueryTableRowsRequest
1415
- # data as a hash:
1416
- #
1417
- # {
1418
- # workbook_id: "ResourceId", # required
1419
- # table_id: "ResourceId", # required
1420
- # filter_formula: { # required
1421
- # formula: "Formula", # required
1422
- # context_row_id: "RowId",
1423
- # },
1424
- # max_results: 1,
1425
- # next_token: "PaginationToken",
1426
- # }
1427
- #
1428
1177
  # @!attribute [rw] workbook_id
1429
1178
  # The ID of the workbook whose table rows are being queried.
1430
1179
  #
@@ -1613,13 +1362,6 @@ module Aws::Honeycode
1613
1362
  # An object that contains the properties for importing data to a
1614
1363
  # specific column in a table.
1615
1364
  #
1616
- # @note When making an API call, you may pass SourceDataColumnProperties
1617
- # data as a hash:
1618
- #
1619
- # {
1620
- # column_index: 1,
1621
- # }
1622
- #
1623
1365
  # @!attribute [rw] column_index
1624
1366
  # The index of the column in the input file.
1625
1367
  # @return [Integer]
@@ -1632,36 +1374,6 @@ module Aws::Honeycode
1632
1374
  include Aws::Structure
1633
1375
  end
1634
1376
 
1635
- # @note When making an API call, you may pass StartTableDataImportJobRequest
1636
- # data as a hash:
1637
- #
1638
- # {
1639
- # workbook_id: "ResourceId", # required
1640
- # data_source: { # required
1641
- # data_source_config: { # required
1642
- # data_source_url: "SecureURL",
1643
- # },
1644
- # },
1645
- # data_format: "DELIMITED_TEXT", # required, accepts DELIMITED_TEXT
1646
- # destination_table_id: "ResourceId", # required
1647
- # import_options: { # required
1648
- # destination_options: {
1649
- # column_map: {
1650
- # "ResourceId" => {
1651
- # column_index: 1,
1652
- # },
1653
- # },
1654
- # },
1655
- # delimited_text_options: {
1656
- # delimiter: "DelimitedTextDelimiter", # required
1657
- # has_header_row: false,
1658
- # ignore_empty_rows: false,
1659
- # data_character_encoding: "UTF-8", # accepts UTF-8, US-ASCII, ISO-8859-1, UTF-16BE, UTF-16LE, UTF-16
1660
- # },
1661
- # },
1662
- # client_request_token: "ClientRequestToken", # required
1663
- # }
1664
- #
1665
1377
  # @!attribute [rw] workbook_id
1666
1378
  # The ID of the workbook where the rows are being imported.
1667
1379
  #
@@ -1832,16 +1544,6 @@ module Aws::Honeycode
1832
1544
  include Aws::Structure
1833
1545
  end
1834
1546
 
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
1547
  # @!attribute [rw] resource_arn
1846
1548
  # The resource's Amazon Resource Name (ARN).
1847
1549
  # @return [String]
@@ -1876,14 +1578,6 @@ module Aws::Honeycode
1876
1578
  include Aws::Structure
1877
1579
  end
1878
1580
 
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
1581
  # @!attribute [rw] resource_arn
1888
1582
  # The resource's Amazon Resource Name (ARN).
1889
1583
  # @return [String]
@@ -1908,19 +1602,6 @@ module Aws::Honeycode
1908
1602
  # Data needed to create a single row in a table as part of the
1909
1603
  # BatchCreateTableRows request.
1910
1604
  #
1911
- # @note When making an API call, you may pass UpdateRowData
1912
- # data as a hash:
1913
- #
1914
- # {
1915
- # row_id: "RowId", # required
1916
- # cells_to_update: { # required
1917
- # "ResourceId" => {
1918
- # fact: "Fact",
1919
- # facts: ["Fact"],
1920
- # },
1921
- # },
1922
- # }
1923
- #
1924
1605
  # @!attribute [rw] row_id
1925
1606
  # The id of the row that needs to be updated.
1926
1607
  # @return [String]
@@ -1943,23 +1624,6 @@ module Aws::Honeycode
1943
1624
  # Data needed to upsert rows in a table as part of a single item in the
1944
1625
  # BatchUpsertTableRows request.
1945
1626
  #
1946
- # @note When making an API call, you may pass UpsertRowData
1947
- # data as a hash:
1948
- #
1949
- # {
1950
- # batch_item_id: "BatchItemId", # required
1951
- # filter: { # required
1952
- # formula: "Formula", # required
1953
- # context_row_id: "RowId",
1954
- # },
1955
- # cells_to_update: { # required
1956
- # "ResourceId" => {
1957
- # fact: "Fact",
1958
- # facts: ["Fact"],
1959
- # },
1960
- # },
1961
- # }
1962
- #
1963
1627
  # @!attribute [rw] batch_item_id
1964
1628
  # An external identifier that represents a single item in the request
1965
1629
  # that is being upserted as part of the BatchUpsertTableRows request.
@@ -2040,13 +1704,6 @@ module Aws::Honeycode
2040
1704
  # The input variables to the app to be used by the
2041
1705
  # InvokeScreenAutomation action request.
2042
1706
  #
2043
- # @note When making an API call, you may pass VariableValue
2044
- # data as a hash:
2045
- #
2046
- # {
2047
- # raw_value: "RawValue", # required
2048
- # }
2049
- #
2050
1707
  # @!attribute [rw] raw_value
2051
1708
  # Raw value of the variable.
2052
1709
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-honeycode/customizations'
52
52
  # @!group service
53
53
  module Aws::Honeycode
54
54
 
55
- GEM_VERSION = '1.18.0'
55
+ GEM_VERSION = '1.19.0'
56
56
 
57
57
  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.18.0
4
+ version: 1.19.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: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core