aws-sdk-appintegrationsservice 1.70.0 → 1.72.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-appintegrationsservice/client.rb +16 -3
- data/lib/aws-sdk-appintegrationsservice/client_api.rb +6 -0
- data/lib/aws-sdk-appintegrationsservice/errors.rb +16 -0
- data/lib/aws-sdk-appintegrationsservice/types.rb +28 -1
- data/lib/aws-sdk-appintegrationsservice.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +6 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 999540546c2cd3358b4eb924dc4b58e42954ac53044be1f0fa714a8d64fc324c
|
|
4
|
+
data.tar.gz: 8456311abd77d6b9dc62020b1d08c65008f13ca626606b5b72303177d9db83e1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d621329ccfefd4248504beeda58cca65e38b038532814d80c7cd467898fb637bdf08b7dc317d62635f1f75fa1ce5a1c7b5d2c0a5cd259a6c87e57c5f4a15a8eb
|
|
7
|
+
data.tar.gz: a6ba5d505b39b7c48ab0294c5bfcd369d8bf45a492669efeca73f0c4b1f6c9969adf11973b2cc0d47c64e3b3ef52e8fbffac793a04965ea1c7584570ddddad38
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.72.0 (2026-09-02)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds a force parameter to DeleteApplication and a ConflictException to UpdateApplication, letting customers delete applications with existing associations in one call and get a clear error when an update conflicts with the application's current state.
|
|
8
|
+
|
|
9
|
+
1.71.0 (2026-07-09)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.70.0 (2026-06-04)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.72.0
|
|
@@ -891,12 +891,24 @@ module Aws::AppIntegrationsService
|
|
|
891
891
|
req.send_request(options)
|
|
892
892
|
end
|
|
893
893
|
|
|
894
|
-
# Deletes
|
|
895
|
-
#
|
|
894
|
+
# Deletes an application. If the application has associations, you must
|
|
895
|
+
# delete them first. Alternatively, use the `force` option to delete the
|
|
896
|
+
# application and remove its associations.
|
|
896
897
|
#
|
|
897
898
|
# @option params [required, String] :arn
|
|
898
899
|
# The Amazon Resource Name (ARN) of the Application.
|
|
899
900
|
#
|
|
901
|
+
# @option params [Boolean] :force
|
|
902
|
+
# Specifies whether to delete the application even if it still has
|
|
903
|
+
# application associations. If `true`, the operation removes the
|
|
904
|
+
# application and its associations. If `false` or absent, the delete
|
|
905
|
+
# fails when associations exist.
|
|
906
|
+
#
|
|
907
|
+
# Setting this parameter to `true` permanently removes all of the
|
|
908
|
+
# application's associations. Doing so might impact other resources
|
|
909
|
+
# that rely on and reference the application. This action can't be
|
|
910
|
+
# undone.
|
|
911
|
+
#
|
|
900
912
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
901
913
|
#
|
|
902
914
|
#
|
|
@@ -916,6 +928,7 @@ module Aws::AppIntegrationsService
|
|
|
916
928
|
#
|
|
917
929
|
# resp = client.delete_application({
|
|
918
930
|
# arn: "ArnOrUUID", # required
|
|
931
|
+
# force: false,
|
|
919
932
|
# })
|
|
920
933
|
#
|
|
921
934
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/DeleteApplication AWS API Documentation
|
|
@@ -1858,7 +1871,7 @@ module Aws::AppIntegrationsService
|
|
|
1858
1871
|
tracer: tracer
|
|
1859
1872
|
)
|
|
1860
1873
|
context[:gem_name] = 'aws-sdk-appintegrationsservice'
|
|
1861
|
-
context[:gem_version] = '1.
|
|
1874
|
+
context[:gem_version] = '1.72.0'
|
|
1862
1875
|
Seahorse::Client::Request.new(handlers, context)
|
|
1863
1876
|
end
|
|
1864
1877
|
|
|
@@ -31,6 +31,7 @@ module Aws::AppIntegrationsService
|
|
|
31
31
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
32
32
|
ClientAssociationMetadata = Shapes::MapShape.new(name: 'ClientAssociationMetadata')
|
|
33
33
|
ClientId = Shapes::StringShape.new(name: 'ClientId')
|
|
34
|
+
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
|
34
35
|
ContactHandling = Shapes::StructureShape.new(name: 'ContactHandling')
|
|
35
36
|
ContactHandlingScope = Shapes::StringShape.new(name: 'ContactHandlingScope')
|
|
36
37
|
CreateApplicationRequest = Shapes::StructureShape.new(name: 'CreateApplicationRequest')
|
|
@@ -176,6 +177,9 @@ module Aws::AppIntegrationsService
|
|
|
176
177
|
ClientAssociationMetadata.key = Shapes::ShapeRef.new(shape: NonBlankString)
|
|
177
178
|
ClientAssociationMetadata.value = Shapes::ShapeRef.new(shape: NonBlankString)
|
|
178
179
|
|
|
180
|
+
ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
|
181
|
+
ConflictException.struct_class = Types::ConflictException
|
|
182
|
+
|
|
179
183
|
ContactHandling.add_member(:scope, Shapes::ShapeRef.new(shape: ContactHandlingScope, location_name: "Scope"))
|
|
180
184
|
ContactHandling.struct_class = Types::ContactHandling
|
|
181
185
|
|
|
@@ -265,6 +269,7 @@ module Aws::AppIntegrationsService
|
|
|
265
269
|
DataIntegrationsList.member = Shapes::ShapeRef.new(shape: DataIntegrationSummary)
|
|
266
270
|
|
|
267
271
|
DeleteApplicationRequest.add_member(:arn, Shapes::ShapeRef.new(shape: ArnOrUUID, required: true, location: "uri", location_name: "ApplicationIdentifier"))
|
|
272
|
+
DeleteApplicationRequest.add_member(:force, Shapes::ShapeRef.new(shape: Boolean, location: "querystring", location_name: "force"))
|
|
268
273
|
DeleteApplicationRequest.struct_class = Types::DeleteApplicationRequest
|
|
269
274
|
|
|
270
275
|
DeleteApplicationResponse.struct_class = Types::DeleteApplicationResponse
|
|
@@ -853,6 +858,7 @@ module Aws::AppIntegrationsService
|
|
|
853
858
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
|
854
859
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
855
860
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
|
|
861
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
856
862
|
end)
|
|
857
863
|
|
|
858
864
|
api.add_operation(:update_data_integration, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -28,6 +28,7 @@ module Aws::AppIntegrationsService
|
|
|
28
28
|
#
|
|
29
29
|
# ## Error Classes
|
|
30
30
|
# * {AccessDeniedException}
|
|
31
|
+
# * {ConflictException}
|
|
31
32
|
# * {DuplicateResourceException}
|
|
32
33
|
# * {InternalServiceError}
|
|
33
34
|
# * {InvalidRequestException}
|
|
@@ -57,6 +58,21 @@ module Aws::AppIntegrationsService
|
|
|
57
58
|
end
|
|
58
59
|
end
|
|
59
60
|
|
|
61
|
+
class ConflictException < ServiceError
|
|
62
|
+
|
|
63
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
64
|
+
# @param [String] message
|
|
65
|
+
# @param [Aws::AppIntegrationsService::Types::ConflictException] data
|
|
66
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
67
|
+
super(context, message, data)
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
# @return [String]
|
|
71
|
+
def message
|
|
72
|
+
@message || @data[:message]
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
|
|
60
76
|
class DuplicateResourceException < ServiceError
|
|
61
77
|
|
|
62
78
|
# @param [Seahorse::Client::RequestContext] context
|
|
@@ -125,6 +125,20 @@ module Aws::AppIntegrationsService
|
|
|
125
125
|
include Aws::Structure
|
|
126
126
|
end
|
|
127
127
|
|
|
128
|
+
# The request conflicts with the current state of the resource. Verify
|
|
129
|
+
# the application's current state and retry the request.
|
|
130
|
+
#
|
|
131
|
+
# @!attribute [rw] message
|
|
132
|
+
# @return [String]
|
|
133
|
+
#
|
|
134
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/ConflictException AWS API Documentation
|
|
135
|
+
#
|
|
136
|
+
class ConflictException < Struct.new(
|
|
137
|
+
:message)
|
|
138
|
+
SENSITIVE = []
|
|
139
|
+
include Aws::Structure
|
|
140
|
+
end
|
|
141
|
+
|
|
128
142
|
# The contact handling configuration for the application.
|
|
129
143
|
#
|
|
130
144
|
# @!attribute [rw] scope
|
|
@@ -586,10 +600,23 @@ module Aws::AppIntegrationsService
|
|
|
586
600
|
# The Amazon Resource Name (ARN) of the Application.
|
|
587
601
|
# @return [String]
|
|
588
602
|
#
|
|
603
|
+
# @!attribute [rw] force
|
|
604
|
+
# Specifies whether to delete the application even if it still has
|
|
605
|
+
# application associations. If `true`, the operation removes the
|
|
606
|
+
# application and its associations. If `false` or absent, the delete
|
|
607
|
+
# fails when associations exist.
|
|
608
|
+
#
|
|
609
|
+
# Setting this parameter to `true` permanently removes all of the
|
|
610
|
+
# application's associations. Doing so might impact other resources
|
|
611
|
+
# that rely on and reference the application. This action can't be
|
|
612
|
+
# undone.
|
|
613
|
+
# @return [Boolean]
|
|
614
|
+
#
|
|
589
615
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appintegrations-2020-07-29/DeleteApplicationRequest AWS API Documentation
|
|
590
616
|
#
|
|
591
617
|
class DeleteApplicationRequest < Struct.new(
|
|
592
|
-
:arn
|
|
618
|
+
:arn,
|
|
619
|
+
:force)
|
|
593
620
|
SENSITIVE = []
|
|
594
621
|
include Aws::Structure
|
|
595
622
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -199,7 +199,8 @@ module Aws
|
|
|
199
199
|
end
|
|
200
200
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppIntegrationsService/Client.html#delete_application-instance_method
|
|
201
201
|
def delete_application: (
|
|
202
|
-
arn: ::String
|
|
202
|
+
arn: ::String,
|
|
203
|
+
?force: bool
|
|
203
204
|
) -> _DeleteApplicationResponseSuccess
|
|
204
205
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteApplicationResponseSuccess
|
|
205
206
|
|
data/sig/errors.rbs
CHANGED
|
@@ -14,6 +14,9 @@ module Aws
|
|
|
14
14
|
class AccessDeniedException < ::Aws::Errors::ServiceError
|
|
15
15
|
def message: () -> ::String
|
|
16
16
|
end
|
|
17
|
+
class ConflictException < ::Aws::Errors::ServiceError
|
|
18
|
+
def message: () -> ::String
|
|
19
|
+
end
|
|
17
20
|
class DuplicateResourceException < ::Aws::Errors::ServiceError
|
|
18
21
|
def message: () -> ::String
|
|
19
22
|
end
|
data/sig/types.rbs
CHANGED
|
@@ -42,6 +42,11 @@ module Aws::AppIntegrationsService
|
|
|
42
42
|
SENSITIVE: []
|
|
43
43
|
end
|
|
44
44
|
|
|
45
|
+
class ConflictException
|
|
46
|
+
attr_accessor message: ::String
|
|
47
|
+
SENSITIVE: []
|
|
48
|
+
end
|
|
49
|
+
|
|
45
50
|
class ContactHandling
|
|
46
51
|
attr_accessor scope: ("CROSS_CONTACTS" | "PER_CONTACT")
|
|
47
52
|
SENSITIVE: []
|
|
@@ -150,6 +155,7 @@ module Aws::AppIntegrationsService
|
|
|
150
155
|
|
|
151
156
|
class DeleteApplicationRequest
|
|
152
157
|
attr_accessor arn: ::String
|
|
158
|
+
attr_accessor force: bool
|
|
153
159
|
SENSITIVE: []
|
|
154
160
|
end
|
|
155
161
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-appintegrationsservice
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.72.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.254.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.254.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|