aws-sdk-supportapp 1.3.0 → 1.5.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 +12 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-supportapp/client.rb +9 -4
- data/lib/aws-sdk-supportapp/endpoint_provider.rb +35 -95
- data/lib/aws-sdk-supportapp/types.rb +3 -74
- data/lib/aws-sdk-supportapp.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fb504a7fdbcead54773b6b2698be93b922cbfa7067de3904c0a26e589907f836
|
4
|
+
data.tar.gz: e3c08608287fc250042d0edf4ebcbb5f8dadfb036a8e1cf1ac8cde140843aa6a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9fd283fab90b5bc0217c5edbae0b33ea11268797227ae645f9d80cf93b718d0eb1ff43ac377bbfa72c5123df13cc876848155e9e74b17f057a9fd95ddb52ff08
|
7
|
+
data.tar.gz: 17f03f275bf8abfdcbb027af7db3d574934f9c3e2e78c8901f05cd61dea9b941eec96bab4ff8d392f40631a2ee4d4ea0eb051c53491c65549f39aeeaf677ff3b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,18 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.5.0 (2023-05-31)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.4.0 (2023-01-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
15
|
+
|
4
16
|
1.3.0 (2022-10-28)
|
5
17
|
------------------
|
6
18
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.5.0
|
@@ -275,6 +275,11 @@ module Aws::SupportApp
|
|
275
275
|
# in the future.
|
276
276
|
#
|
277
277
|
#
|
278
|
+
# @option options [String] :sdk_ua_app_id
|
279
|
+
# A unique and opaque application ID that is appended to the
|
280
|
+
# User-Agent header as app/<sdk_ua_app_id>. It should have a
|
281
|
+
# maximum length of 50.
|
282
|
+
#
|
278
283
|
# @option options [String] :secret_access_key
|
279
284
|
#
|
280
285
|
# @option options [String] :session_token
|
@@ -428,7 +433,7 @@ module Aws::SupportApp
|
|
428
433
|
# * `notifyOnResolveCase`
|
429
434
|
#
|
430
435
|
# If you specify `none`, the following parameters must be null or
|
431
|
-
# `false
|
436
|
+
# `false`:
|
432
437
|
#
|
433
438
|
# * `notifyOnAddCorrespondenceToCase`
|
434
439
|
#
|
@@ -780,7 +785,7 @@ module Aws::SupportApp
|
|
780
785
|
# notifications.
|
781
786
|
#
|
782
787
|
# If you specify `high` or `all`, at least one of the following
|
783
|
-
# parameters must be `true
|
788
|
+
# parameters must be `true`:
|
784
789
|
#
|
785
790
|
# * `notifyOnAddCorrespondenceToCase`
|
786
791
|
#
|
@@ -789,7 +794,7 @@ module Aws::SupportApp
|
|
789
794
|
# * `notifyOnResolveCase`
|
790
795
|
#
|
791
796
|
# If you specify `none`, any of the following parameters that you
|
792
|
-
# specify in your request must be `false
|
797
|
+
# specify in your request must be `false`:
|
793
798
|
#
|
794
799
|
# * `notifyOnAddCorrespondenceToCase`
|
795
800
|
#
|
@@ -870,7 +875,7 @@ module Aws::SupportApp
|
|
870
875
|
params: params,
|
871
876
|
config: config)
|
872
877
|
context[:gem_name] = 'aws-sdk-supportapp'
|
873
|
-
context[:gem_version] = '1.
|
878
|
+
context[:gem_version] = '1.5.0'
|
874
879
|
Seahorse::Client::Request.new(handlers, context)
|
875
880
|
end
|
876
881
|
|
@@ -9,103 +9,43 @@
|
|
9
9
|
|
10
10
|
module Aws::SupportApp
|
11
11
|
class EndpointProvider
|
12
|
-
def
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
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://supportapp-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://supportapp-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://supportapp.#{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://supportapp.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
21
46
|
end
|
22
|
-
|
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
|
-
dCI6eyJ1cmwiOiJodHRwczovL3N1cHBvcnRhcHAtZmlwcy57UmVnaW9ufS57
|
77
|
-
UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0
|
78
|
-
aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsi
|
79
|
-
Y29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBhbmQgRHVhbFN0YWNrIGFy
|
80
|
-
ZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9y
|
81
|
-
dCBvbmUgb3IgYm90aCIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25z
|
82
|
-
IjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VG
|
83
|
-
SVBTIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
|
84
|
-
aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJm
|
85
|
-
biI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQi
|
86
|
-
fSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpb
|
87
|
-
eyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9z
|
88
|
-
dXBwb3J0YXBwLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNT
|
89
|
-
dWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6
|
90
|
-
ImVuZHBvaW50In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMg
|
91
|
-
aXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9y
|
92
|
-
dCBGSVBTIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZu
|
93
|
-
IjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFj
|
94
|
-
ayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlv
|
95
|
-
bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
|
96
|
-
OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
|
97
|
-
InN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVz
|
98
|
-
IjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6
|
99
|
-
Ly9zdXBwb3J0YXBwLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0
|
100
|
-
YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0s
|
101
|
-
InR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3Ii
|
102
|
-
OiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9l
|
103
|
-
cyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsi
|
104
|
-
Y29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vc3Vw
|
105
|
-
cG9ydGFwcC57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0i
|
106
|
-
LCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9p
|
107
|
-
bnQifV19XX0=
|
108
|
-
|
109
|
-
JSON
|
110
50
|
end
|
111
51
|
end
|
@@ -55,20 +55,6 @@ module Aws::SupportApp
|
|
55
55
|
include Aws::Structure
|
56
56
|
end
|
57
57
|
|
58
|
-
# @note When making an API call, you may pass CreateSlackChannelConfigurationRequest
|
59
|
-
# data as a hash:
|
60
|
-
#
|
61
|
-
# {
|
62
|
-
# channel_id: "channelId", # required
|
63
|
-
# channel_name: "channelName",
|
64
|
-
# channel_role_arn: "roleArn", # required
|
65
|
-
# notify_on_add_correspondence_to_case: false,
|
66
|
-
# notify_on_case_severity: "none", # required, accepts none, all, high
|
67
|
-
# notify_on_create_or_reopen_case: false,
|
68
|
-
# notify_on_resolve_case: false,
|
69
|
-
# team_id: "teamId", # required
|
70
|
-
# }
|
71
|
-
#
|
72
58
|
# @!attribute [rw] channel_id
|
73
59
|
# The channel ID in Slack. This ID identifies a channel within a Slack
|
74
60
|
# workspace.
|
@@ -109,7 +95,7 @@ module Aws::SupportApp
|
|
109
95
|
# * `notifyOnResolveCase`
|
110
96
|
#
|
111
97
|
# If you specify `none`, the following parameters must be null or
|
112
|
-
# `false
|
98
|
+
# `false`:
|
113
99
|
#
|
114
100
|
# * `notifyOnAddCorrespondenceToCase`
|
115
101
|
#
|
@@ -166,14 +152,6 @@ module Aws::SupportApp
|
|
166
152
|
#
|
167
153
|
class DeleteAccountAliasResult < Aws::EmptyStructure; end
|
168
154
|
|
169
|
-
# @note When making an API call, you may pass DeleteSlackChannelConfigurationRequest
|
170
|
-
# data as a hash:
|
171
|
-
#
|
172
|
-
# {
|
173
|
-
# channel_id: "channelId", # required
|
174
|
-
# team_id: "teamId", # required
|
175
|
-
# }
|
176
|
-
#
|
177
155
|
# @!attribute [rw] channel_id
|
178
156
|
# The channel ID in Slack. This ID identifies a channel within a Slack
|
179
157
|
# workspace.
|
@@ -197,13 +175,6 @@ module Aws::SupportApp
|
|
197
175
|
#
|
198
176
|
class DeleteSlackChannelConfigurationResult < Aws::EmptyStructure; end
|
199
177
|
|
200
|
-
# @note When making an API call, you may pass DeleteSlackWorkspaceConfigurationRequest
|
201
|
-
# data as a hash:
|
202
|
-
#
|
203
|
-
# {
|
204
|
-
# team_id: "teamId", # required
|
205
|
-
# }
|
206
|
-
#
|
207
178
|
# @!attribute [rw] team_id
|
208
179
|
# The team ID in Slack. This ID uniquely identifies a Slack workspace,
|
209
180
|
# such as `T012ABCDEFG`.
|
@@ -253,13 +224,6 @@ module Aws::SupportApp
|
|
253
224
|
include Aws::Structure
|
254
225
|
end
|
255
226
|
|
256
|
-
# @note When making an API call, you may pass ListSlackChannelConfigurationsRequest
|
257
|
-
# data as a hash:
|
258
|
-
#
|
259
|
-
# {
|
260
|
-
# next_token: "paginationToken",
|
261
|
-
# }
|
262
|
-
#
|
263
227
|
# @!attribute [rw] next_token
|
264
228
|
# If the results of a search are large, the API only returns a portion
|
265
229
|
# of the results and includes a `nextToken` pagination token in the
|
@@ -295,13 +259,6 @@ module Aws::SupportApp
|
|
295
259
|
include Aws::Structure
|
296
260
|
end
|
297
261
|
|
298
|
-
# @note When making an API call, you may pass ListSlackWorkspaceConfigurationsRequest
|
299
|
-
# data as a hash:
|
300
|
-
#
|
301
|
-
# {
|
302
|
-
# next_token: "paginationToken",
|
303
|
-
# }
|
304
|
-
#
|
305
262
|
# @!attribute [rw] next_token
|
306
263
|
# If the results of a search are large, the API only returns a portion
|
307
264
|
# of the results and includes a `nextToken` pagination token in the
|
@@ -337,13 +294,6 @@ module Aws::SupportApp
|
|
337
294
|
include Aws::Structure
|
338
295
|
end
|
339
296
|
|
340
|
-
# @note When making an API call, you may pass PutAccountAliasRequest
|
341
|
-
# data as a hash:
|
342
|
-
#
|
343
|
-
# {
|
344
|
-
# account_alias: "awsAccountAlias", # required
|
345
|
-
# }
|
346
|
-
#
|
347
297
|
# @!attribute [rw] account_alias
|
348
298
|
# An alias or short name for an Amazon Web Services account.
|
349
299
|
# @return [String]
|
@@ -360,13 +310,6 @@ module Aws::SupportApp
|
|
360
310
|
#
|
361
311
|
class PutAccountAliasResult < Aws::EmptyStructure; end
|
362
312
|
|
363
|
-
# @note When making an API call, you may pass RegisterSlackWorkspaceForOrganizationRequest
|
364
|
-
# data as a hash:
|
365
|
-
#
|
366
|
-
# {
|
367
|
-
# team_id: "teamId", # required
|
368
|
-
# }
|
369
|
-
#
|
370
313
|
# @!attribute [rw] team_id
|
371
314
|
# The team ID in Slack. This ID uniquely identifies a Slack workspace,
|
372
315
|
# such as `T012ABCDEFG`. Specify the Slack workspace that you want to
|
@@ -526,20 +469,6 @@ module Aws::SupportApp
|
|
526
469
|
include Aws::Structure
|
527
470
|
end
|
528
471
|
|
529
|
-
# @note When making an API call, you may pass UpdateSlackChannelConfigurationRequest
|
530
|
-
# data as a hash:
|
531
|
-
#
|
532
|
-
# {
|
533
|
-
# channel_id: "channelId", # required
|
534
|
-
# channel_name: "channelName",
|
535
|
-
# channel_role_arn: "roleArn",
|
536
|
-
# notify_on_add_correspondence_to_case: false,
|
537
|
-
# notify_on_case_severity: "none", # accepts none, all, high
|
538
|
-
# notify_on_create_or_reopen_case: false,
|
539
|
-
# notify_on_resolve_case: false,
|
540
|
-
# team_id: "teamId", # required
|
541
|
-
# }
|
542
|
-
#
|
543
472
|
# @!attribute [rw] channel_id
|
544
473
|
# The channel ID in Slack. This ID identifies a channel within a Slack
|
545
474
|
# workspace.
|
@@ -570,7 +499,7 @@ module Aws::SupportApp
|
|
570
499
|
# notifications.
|
571
500
|
#
|
572
501
|
# If you specify `high` or `all`, at least one of the following
|
573
|
-
# parameters must be `true
|
502
|
+
# parameters must be `true`:
|
574
503
|
#
|
575
504
|
# * `notifyOnAddCorrespondenceToCase`
|
576
505
|
#
|
@@ -579,7 +508,7 @@ module Aws::SupportApp
|
|
579
508
|
# * `notifyOnResolveCase`
|
580
509
|
#
|
581
510
|
# If you specify `none`, any of the following parameters that you
|
582
|
-
# specify in your request must be `false
|
511
|
+
# specify in your request must be `false`:
|
583
512
|
#
|
584
513
|
# * `notifyOnAddCorrespondenceToCase`
|
585
514
|
#
|
data/lib/aws-sdk-supportapp.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-supportapp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.5.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: 2023-05-31 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.174.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.174.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|