aws-sdk-qapps 1.10.0 → 1.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-qapps/client.rb +37 -10
- data/lib/aws-sdk-qapps/client_api.rb +3 -0
- data/lib/aws-sdk-qapps/types.rb +14 -2
- data/lib/aws-sdk-qapps.rb +1 -1
- data/sig/client.rbs +6 -2
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +3 -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: 7306a875d59a83e41587c09763560cce961b1dc1477f82c7800c05fcb49cbd86
|
4
|
+
data.tar.gz: 6c52e327ace84660005e684bbfdd25abc25f292832b56a234c83babb59fa577b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7564a2c6535458b74372f7b59ebd3578928aeb00ffe66bcd01f110b8343902b494de5636d476298672e535a01716557fc8396e82f92624d284cc7a098d7185b1
|
7
|
+
data.tar.gz: e9984fdfd329ee56e2747ac4c34447c01d0b3fa60bea1948ebe7267a2e841aaec21a3e0a86089b72b27cd9b271a268f43e037952572860844d23d83ecb591271
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.12.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.11.0 (2024-12-03)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add support for 11 new plugins as action cards to help automate repetitive tasks and improve productivity.
|
13
|
+
|
4
14
|
1.10.0 (2024-11-26)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.12.0
|
data/lib/aws-sdk-qapps/client.rb
CHANGED
@@ -257,11 +257,34 @@ module Aws::QApps
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -806,7 +829,7 @@ module Aws::QApps
|
|
806
829
|
# resp = client.create_presigned_url({
|
807
830
|
# app_id: "4263767c-d889-4cb2-a8f6-8b649bc66af0",
|
808
831
|
# card_id: "82f69028-22a9-4bea-8727-0eabf58e9fed",
|
809
|
-
# file_contents_sha_256: "
|
832
|
+
# file_contents_sha_256: "wXY7GD8m4fmHhdtuQyBdXzNQpdCseVwBcOBIlzfm+kg=",
|
810
833
|
# file_name: "myFile.txt",
|
811
834
|
# instance_id: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f",
|
812
835
|
# scope: "SESSION",
|
@@ -816,13 +839,13 @@ module Aws::QApps
|
|
816
839
|
# resp.to_h outputs the following:
|
817
840
|
# {
|
818
841
|
# file_id: "412aa1b4-341c-45af-936d-da52f8a1a3b4",
|
819
|
-
# presigned_url: "https://
|
842
|
+
# presigned_url: "https://qapps-uploaded-files-us-east-1-c819fab7cf78c9205158297913deb9e0.s3.us-east-1.amazonaws.com/",
|
820
843
|
# presigned_url_expiration: Time.parse("2024-09-14T00:11:54.232Z"),
|
821
844
|
# presigned_url_fields: {
|
822
|
-
# "x-amz-checksum-sha256" => "
|
845
|
+
# "x-amz-checksum-sha256" => "wXY7GD8m4fmHhdtuQyBdXzNQpdCseVwBcOBIlzfm+kg=",
|
823
846
|
# "x-amz-server-side-encryption" => "aws:kms",
|
824
847
|
# "x-amz-server-side-encryption-aws-kms-key-id" => "0a6a474b-f2ca-46ea-9e72-deea9077d92f",
|
825
|
-
# "x-amz-server-side-encryption-context" => "
|
848
|
+
# "x-amz-server-side-encryption-context" => "eyJBUFBMSUNBVElPTl9JRCI6IjAxMjM0NTY3ODkwMSJ9",
|
826
849
|
# },
|
827
850
|
# }
|
828
851
|
#
|
@@ -831,7 +854,7 @@ module Aws::QApps
|
|
831
854
|
# resp = client.create_presigned_url({
|
832
855
|
# app_id: "4263767c-d889-4cb2-a8f6-8b649bc66af0",
|
833
856
|
# card_id: "7a11f34b-42d4-4bc8-b668-ae4a788dae1e",
|
834
|
-
# file_contents_sha_256: "
|
857
|
+
# file_contents_sha_256: "wXY7GD8m4fmHhdtuQyBdXzNQpdCseVwBcOBIlzfm+kg=",
|
835
858
|
# file_name: "anApplicationFile.txt",
|
836
859
|
# instance_id: "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f",
|
837
860
|
# scope: "APPLICATION",
|
@@ -840,13 +863,13 @@ module Aws::QApps
|
|
840
863
|
# resp.to_h outputs the following:
|
841
864
|
# {
|
842
865
|
# file_id: "412aa1b4-341c-45af-936d-da52f8a1a3b4",
|
843
|
-
# presigned_url: "https://
|
866
|
+
# presigned_url: "https://qapps-uploaded-files-us-east-1-c819fab7cf78c9205158297913deb9e0.s3.us-east-1.amazonaws.com/",
|
844
867
|
# presigned_url_expiration: Time.parse("2024-09-14T00:11:54.232Z"),
|
845
868
|
# presigned_url_fields: {
|
846
|
-
# "x-amz-checksum-sha256" => "
|
869
|
+
# "x-amz-checksum-sha256" => "wXY7GD8m4fmHhdtuQyBdXzNQpdCseVwBcOBIlzfm+kg=",
|
847
870
|
# "x-amz-server-side-encryption" => "aws:kms",
|
848
871
|
# "x-amz-server-side-encryption-aws-kms-key-id" => "0a6a474b-f2ca-46ea-9e72-deea9077d92f",
|
849
|
-
# "x-amz-server-side-encryption-context" => "
|
872
|
+
# "x-amz-server-side-encryption-context" => "eyJBUFBMSUNBVElPTl9JRCI6IjAxMjM0NTY3ODkwMSJ9",
|
850
873
|
# },
|
851
874
|
# }
|
852
875
|
#
|
@@ -1067,6 +1090,7 @@ module Aws::QApps
|
|
1067
1090
|
# type: "text-input", # required, accepts text-input, q-query, file-upload, q-plugin, form-input
|
1068
1091
|
# prompt: "Prompt", # required
|
1069
1092
|
# plugin_id: "PluginId", # required
|
1093
|
+
# action_identifier: "ActionIdentifier",
|
1070
1094
|
# },
|
1071
1095
|
# file_upload: {
|
1072
1096
|
# title: "Title", # required
|
@@ -1649,8 +1673,9 @@ module Aws::QApps
|
|
1649
1673
|
# resp.app_definition.cards[0].q_plugin.dependencies[0] #=> String
|
1650
1674
|
# resp.app_definition.cards[0].q_plugin.type #=> String, one of "text-input", "q-query", "file-upload", "q-plugin", "form-input"
|
1651
1675
|
# resp.app_definition.cards[0].q_plugin.prompt #=> String
|
1652
|
-
# resp.app_definition.cards[0].q_plugin.plugin_type #=> String, one of "SERVICE_NOW", "SALESFORCE", "JIRA", "ZENDESK", "CUSTOM"
|
1676
|
+
# resp.app_definition.cards[0].q_plugin.plugin_type #=> String, one of "SERVICE_NOW", "SALESFORCE", "JIRA", "ZENDESK", "CUSTOM", "ASANA", "ATLASSIAN_CONFLUENCE", "GOOGLE_CALENDAR", "JIRA_CLOUD", "MICROSOFT_EXCHANGE", "MICROSOFT_TEAMS", "PAGERDUTY_ADVANCE", "SALESFORCE_CRM", "SERVICENOW_NOW_PLATFORM", "SMARTSHEET", "ZENDESK_SUITE"
|
1653
1677
|
# resp.app_definition.cards[0].q_plugin.plugin_id #=> String
|
1678
|
+
# resp.app_definition.cards[0].q_plugin.action_identifier #=> String
|
1654
1679
|
# resp.app_definition.cards[0].file_upload.id #=> String
|
1655
1680
|
# resp.app_definition.cards[0].file_upload.title #=> String
|
1656
1681
|
# resp.app_definition.cards[0].file_upload.dependencies #=> Array
|
@@ -2415,6 +2440,7 @@ module Aws::QApps
|
|
2415
2440
|
# resp.app.app_definition.cards[0].q_plugin.type #=> String, one of "text-input", "q-query", "file-upload", "q-plugin", "form-input"
|
2416
2441
|
# resp.app.app_definition.cards[0].q_plugin.prompt #=> String
|
2417
2442
|
# resp.app.app_definition.cards[0].q_plugin.plugin_id #=> String
|
2443
|
+
# resp.app.app_definition.cards[0].q_plugin.action_identifier #=> String
|
2418
2444
|
# resp.app.app_definition.cards[0].file_upload.title #=> String
|
2419
2445
|
# resp.app.app_definition.cards[0].file_upload.id #=> String
|
2420
2446
|
# resp.app.app_definition.cards[0].file_upload.type #=> String, one of "text-input", "q-query", "file-upload", "q-plugin", "form-input"
|
@@ -2979,6 +3005,7 @@ module Aws::QApps
|
|
2979
3005
|
# type: "text-input", # required, accepts text-input, q-query, file-upload, q-plugin, form-input
|
2980
3006
|
# prompt: "Prompt", # required
|
2981
3007
|
# plugin_id: "PluginId", # required
|
3008
|
+
# action_identifier: "ActionIdentifier",
|
2982
3009
|
# },
|
2983
3010
|
# file_upload: {
|
2984
3011
|
# title: "Title", # required
|
@@ -3306,7 +3333,7 @@ module Aws::QApps
|
|
3306
3333
|
tracer: tracer
|
3307
3334
|
)
|
3308
3335
|
context[:gem_name] = 'aws-sdk-qapps'
|
3309
|
-
context[:gem_version] = '1.
|
3336
|
+
context[:gem_version] = '1.12.0'
|
3310
3337
|
Seahorse::Client::Request.new(handlers, context)
|
3311
3338
|
end
|
3312
3339
|
|
@@ -15,6 +15,7 @@ module Aws::QApps
|
|
15
15
|
include Seahorse::Model
|
16
16
|
|
17
17
|
AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
|
18
|
+
ActionIdentifier = Shapes::StringShape.new(name: 'ActionIdentifier')
|
18
19
|
AmazonResourceName = Shapes::StringShape.new(name: 'AmazonResourceName')
|
19
20
|
AppArn = Shapes::StringShape.new(name: 'AppArn')
|
20
21
|
AppDefinition = Shapes::StructureShape.new(name: 'AppDefinition')
|
@@ -680,6 +681,7 @@ module Aws::QApps
|
|
680
681
|
QPluginCard.add_member(:prompt, Shapes::ShapeRef.new(shape: Prompt, required: true, location_name: "prompt"))
|
681
682
|
QPluginCard.add_member(:plugin_type, Shapes::ShapeRef.new(shape: PluginType, required: true, location_name: "pluginType"))
|
682
683
|
QPluginCard.add_member(:plugin_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "pluginId"))
|
684
|
+
QPluginCard.add_member(:action_identifier, Shapes::ShapeRef.new(shape: ActionIdentifier, location_name: "actionIdentifier"))
|
683
685
|
QPluginCard.struct_class = Types::QPluginCard
|
684
686
|
|
685
687
|
QPluginCardInput.add_member(:title, Shapes::ShapeRef.new(shape: Title, required: true, location_name: "title"))
|
@@ -687,6 +689,7 @@ module Aws::QApps
|
|
687
689
|
QPluginCardInput.add_member(:type, Shapes::ShapeRef.new(shape: CardType, required: true, location_name: "type"))
|
688
690
|
QPluginCardInput.add_member(:prompt, Shapes::ShapeRef.new(shape: Prompt, required: true, location_name: "prompt"))
|
689
691
|
QPluginCardInput.add_member(:plugin_id, Shapes::ShapeRef.new(shape: PluginId, required: true, location_name: "pluginId"))
|
692
|
+
QPluginCardInput.add_member(:action_identifier, Shapes::ShapeRef.new(shape: ActionIdentifier, location_name: "actionIdentifier"))
|
690
693
|
QPluginCardInput.struct_class = Types::QPluginCardInput
|
691
694
|
|
692
695
|
QQueryCard.add_member(:id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "id"))
|
data/lib/aws-sdk-qapps/types.rb
CHANGED
@@ -2077,6 +2077,11 @@ module Aws::QApps
|
|
2077
2077
|
# The unique identifier of the plugin used by the card.
|
2078
2078
|
# @return [String]
|
2079
2079
|
#
|
2080
|
+
# @!attribute [rw] action_identifier
|
2081
|
+
# The action identifier of the action to be performed by the plugin
|
2082
|
+
# card.
|
2083
|
+
# @return [String]
|
2084
|
+
#
|
2080
2085
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qapps-2023-11-27/QPluginCard AWS API Documentation
|
2081
2086
|
#
|
2082
2087
|
class QPluginCard < Struct.new(
|
@@ -2086,7 +2091,8 @@ module Aws::QApps
|
|
2086
2091
|
:type,
|
2087
2092
|
:prompt,
|
2088
2093
|
:plugin_type,
|
2089
|
-
:plugin_id
|
2094
|
+
:plugin_id,
|
2095
|
+
:action_identifier)
|
2090
2096
|
SENSITIVE = []
|
2091
2097
|
include Aws::Structure
|
2092
2098
|
end
|
@@ -2113,6 +2119,11 @@ module Aws::QApps
|
|
2113
2119
|
# The unique identifier of the plugin used by the card.
|
2114
2120
|
# @return [String]
|
2115
2121
|
#
|
2122
|
+
# @!attribute [rw] action_identifier
|
2123
|
+
# The action identifier of the action to be performed by the plugin
|
2124
|
+
# card.
|
2125
|
+
# @return [String]
|
2126
|
+
#
|
2116
2127
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qapps-2023-11-27/QPluginCardInput AWS API Documentation
|
2117
2128
|
#
|
2118
2129
|
class QPluginCardInput < Struct.new(
|
@@ -2120,7 +2131,8 @@ module Aws::QApps
|
|
2120
2131
|
:id,
|
2121
2132
|
:type,
|
2122
2133
|
:prompt,
|
2123
|
-
:plugin_id
|
2134
|
+
:plugin_id,
|
2135
|
+
:action_identifier)
|
2124
2136
|
SENSITIVE = []
|
2125
2137
|
include Aws::Structure
|
2126
2138
|
end
|
data/lib/aws-sdk-qapps.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -275,7 +277,8 @@ module Aws
|
|
275
277
|
id: ::String,
|
276
278
|
type: ("text-input" | "q-query" | "file-upload" | "q-plugin" | "form-input"),
|
277
279
|
prompt: ::String,
|
278
|
-
plugin_id: ::String
|
280
|
+
plugin_id: ::String,
|
281
|
+
action_identifier: ::String?
|
279
282
|
}?,
|
280
283
|
file_upload: {
|
281
284
|
title: ::String,
|
@@ -735,7 +738,8 @@ module Aws
|
|
735
738
|
id: ::String,
|
736
739
|
type: ("text-input" | "q-query" | "file-upload" | "q-plugin" | "form-input"),
|
737
740
|
prompt: ::String,
|
738
|
-
plugin_id: ::String
|
741
|
+
plugin_id: ::String,
|
742
|
+
action_identifier: ::String?
|
739
743
|
}?,
|
740
744
|
file_upload: {
|
741
745
|
title: ::String,
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/types.rbs
CHANGED
@@ -605,8 +605,9 @@ module Aws::QApps
|
|
605
605
|
attr_accessor dependencies: ::Array[::String]
|
606
606
|
attr_accessor type: ("text-input" | "q-query" | "file-upload" | "q-plugin" | "form-input")
|
607
607
|
attr_accessor prompt: ::String
|
608
|
-
attr_accessor plugin_type: ("SERVICE_NOW" | "SALESFORCE" | "JIRA" | "ZENDESK" | "CUSTOM")
|
608
|
+
attr_accessor plugin_type: ("SERVICE_NOW" | "SALESFORCE" | "JIRA" | "ZENDESK" | "CUSTOM" | "ASANA" | "ATLASSIAN_CONFLUENCE" | "GOOGLE_CALENDAR" | "JIRA_CLOUD" | "MICROSOFT_EXCHANGE" | "MICROSOFT_TEAMS" | "PAGERDUTY_ADVANCE" | "SALESFORCE_CRM" | "SERVICENOW_NOW_PLATFORM" | "SMARTSHEET" | "ZENDESK_SUITE")
|
609
609
|
attr_accessor plugin_id: ::String
|
610
|
+
attr_accessor action_identifier: ::String
|
610
611
|
SENSITIVE: []
|
611
612
|
end
|
612
613
|
|
@@ -616,6 +617,7 @@ module Aws::QApps
|
|
616
617
|
attr_accessor type: ("text-input" | "q-query" | "file-upload" | "q-plugin" | "form-input")
|
617
618
|
attr_accessor prompt: ::String
|
618
619
|
attr_accessor plugin_id: ::String
|
620
|
+
attr_accessor action_identifier: ::String
|
619
621
|
SENSITIVE: []
|
620
622
|
end
|
621
623
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-qapps
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.12.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: 2025-01-15 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.216.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.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|