aws-sdk-appregistry 1.0.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 +33 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-appregistry.rb +2 -2
- data/lib/aws-sdk-appregistry/client.rb +184 -43
- data/lib/aws-sdk-appregistry/client_api.rb +85 -2
- data/lib/aws-sdk-appregistry/errors.rb +1 -1
- data/lib/aws-sdk-appregistry/resource.rb +1 -1
- data/lib/aws-sdk-appregistry/types.rb +225 -86
- metadata +8 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e60d9a116085ddf3f778e74a4c58f847b4bacc0b243e175381880718300a8687
|
4
|
+
data.tar.gz: 056d26989d7677710a99dd2a9af915deaeb5193266e4086c348274dd69225ad2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a9e450326935e8c3c1bf84535f489674f545cc016204831269409ec0794ad911e33573ef88df336465244d7b15ffbc11b0264aaaaeba059267801806ba223d5c
|
7
|
+
data.tar.gz: 81fdf619ca54fb0b8c6439aebd5228b35ab7c3f7d55aad3483e08046aab57f4a26d71c1a5626ed57dd92767c4f899ff76780c1e82c2c96eed55750d1dde4842f
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
Unreleased Changes
|
2
|
+
------------------
|
3
|
+
|
4
|
+
1.5.0 (2021-03-10)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.4.0 (2021-02-02)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.3.0 (2020-12-21)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - New API `SyncResouce` to update AppRegistry system tags.
|
18
|
+
|
19
|
+
1.2.0 (2020-12-07)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - AWS Service Catalog AppRegistry now supports adding, removing, and listing tags on resources after they are created.
|
23
|
+
|
24
|
+
1.1.0 (2020-11-20)
|
25
|
+
------------------
|
26
|
+
|
27
|
+
* Feature - AWS Service Catalog AppRegistry Documentation update
|
28
|
+
|
29
|
+
1.0.0 (2020-11-12)
|
30
|
+
------------------
|
31
|
+
|
32
|
+
* Feature - Initial release of `aws-sdk-appregistry`.
|
33
|
+
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,202 @@
|
|
1
|
+
|
2
|
+
Apache License
|
3
|
+
Version 2.0, January 2004
|
4
|
+
http://www.apache.org/licenses/
|
5
|
+
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7
|
+
|
8
|
+
1. Definitions.
|
9
|
+
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
12
|
+
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14
|
+
the copyright owner that is granting the License.
|
15
|
+
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
17
|
+
other entities that control, are controlled by, or are under common
|
18
|
+
control with that entity. For the purposes of this definition,
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
20
|
+
direction or management of such entity, whether by contract or
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
23
|
+
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25
|
+
exercising permissions granted by this License.
|
26
|
+
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
28
|
+
including but not limited to software source code, documentation
|
29
|
+
source, and configuration files.
|
30
|
+
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
32
|
+
transformation or translation of a Source form, including but
|
33
|
+
not limited to compiled object code, generated documentation,
|
34
|
+
and conversions to other media types.
|
35
|
+
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
37
|
+
Object form, made available under the License, as indicated by a
|
38
|
+
copyright notice that is included in or attached to the work
|
39
|
+
(an example is provided in the Appendix below).
|
40
|
+
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47
|
+
the Work and Derivative Works thereof.
|
48
|
+
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
50
|
+
the original version of the Work and any modifications or additions
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
62
|
+
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
65
|
+
subsequently incorporated within the Work.
|
66
|
+
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
73
|
+
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79
|
+
where such license applies only to those patent claims licensable
|
80
|
+
by such Contributor that are necessarily infringed by their
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
83
|
+
institute patent litigation against any entity (including a
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
86
|
+
or contributory patent infringement, then any patent licenses
|
87
|
+
granted to You under this License for that Work shall terminate
|
88
|
+
as of the date such litigation is filed.
|
89
|
+
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
92
|
+
modifications, and in Source or Object form, provided that You
|
93
|
+
meet the following conditions:
|
94
|
+
|
95
|
+
(a) You must give any other recipients of the Work or
|
96
|
+
Derivative Works a copy of this License; and
|
97
|
+
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
99
|
+
stating that You changed the files; and
|
100
|
+
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
103
|
+
attribution notices from the Source form of the Work,
|
104
|
+
excluding those notices that do not pertain to any part of
|
105
|
+
the Derivative Works; and
|
106
|
+
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
109
|
+
include a readable copy of the attribution notices contained
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
112
|
+
of the following places: within a NOTICE text file distributed
|
113
|
+
as part of the Derivative Works; within the Source form or
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
115
|
+
within a display generated by the Derivative Works, if and
|
116
|
+
wherever such third-party notices normally appear. The contents
|
117
|
+
of the NOTICE file are for informational purposes only and
|
118
|
+
do not modify the License. You may add Your own attribution
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
121
|
+
that such additional attribution notices cannot be construed
|
122
|
+
as modifying the License.
|
123
|
+
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
125
|
+
may provide additional or different license terms and conditions
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
129
|
+
the conditions stated in this License.
|
130
|
+
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
134
|
+
this License, without any additional terms or conditions.
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
136
|
+
the terms of any separate license agreement you may have executed
|
137
|
+
with Licensor regarding such Contributions.
|
138
|
+
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
141
|
+
except as required for reasonable and customary use in describing the
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
143
|
+
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
153
|
+
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
159
|
+
incidental, or consequential damages of any character arising as a
|
160
|
+
result of this License or out of the use or inability to use the
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
163
|
+
other commercial damages or losses), even if such Contributor
|
164
|
+
has been advised of the possibility of such damages.
|
165
|
+
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
169
|
+
or other liability obligations and/or rights consistent with this
|
170
|
+
License. However, in accepting such obligations, You may act only
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
175
|
+
of your accepting any such warranty or additional liability.
|
176
|
+
|
177
|
+
END OF TERMS AND CONDITIONS
|
178
|
+
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
180
|
+
|
181
|
+
To apply the Apache License to your work, attach the following
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
183
|
+
replaced with your own identifying information. (Don't include
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
185
|
+
comment syntax for the file format. We also recommend that a
|
186
|
+
file or class name and description of purpose be included on the
|
187
|
+
same "printed page" as the copyright notice for easier
|
188
|
+
identification within third-party archives.
|
189
|
+
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
191
|
+
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
193
|
+
you may not use this file except in compliance with the License.
|
194
|
+
You may obtain a copy of the License at
|
195
|
+
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
197
|
+
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201
|
+
See the License for the specific language governing permissions and
|
202
|
+
limitations under the License.
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.5.0
|
data/lib/aws-sdk-appregistry.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-appregistry/customizations'
|
|
48
48
|
# @!group service
|
49
49
|
module Aws::AppRegistry
|
50
50
|
|
51
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.5.0'
|
52
52
|
|
53
53
|
end
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -328,9 +328,9 @@ module Aws::AppRegistry
|
|
328
328
|
# @!group API Operations
|
329
329
|
|
330
330
|
# Associates an attribute group with an application to augment the
|
331
|
-
# application's metadata with the group's attributes. This
|
332
|
-
# applications
|
333
|
-
# machine-readable
|
331
|
+
# application's metadata with the group's attributes. This feature
|
332
|
+
# enables applications to be described with user-defined details that
|
333
|
+
# are machine-readable, such as third-party integrations.
|
334
334
|
#
|
335
335
|
# @option params [required, String] :application
|
336
336
|
# The name or ID of the application.
|
@@ -356,7 +356,7 @@ module Aws::AppRegistry
|
|
356
356
|
# resp.application_arn #=> String
|
357
357
|
# resp.attribute_group_arn #=> String
|
358
358
|
#
|
359
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/AssociateAttributeGroup AWS API Documentation
|
359
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/AssociateAttributeGroup AWS API Documentation
|
360
360
|
#
|
361
361
|
# @overload associate_attribute_group(params = {})
|
362
362
|
# @param [Hash] params ({})
|
@@ -372,6 +372,7 @@ module Aws::AppRegistry
|
|
372
372
|
# The name or ID of the application.
|
373
373
|
#
|
374
374
|
# @option params [required, String] :resource_type
|
375
|
+
# The type of resource of which the application will be associated.
|
375
376
|
#
|
376
377
|
# @option params [required, String] :resource
|
377
378
|
# The name or ID of the resource of which the application will be
|
@@ -395,7 +396,7 @@ module Aws::AppRegistry
|
|
395
396
|
# resp.application_arn #=> String
|
396
397
|
# resp.resource_arn #=> String
|
397
398
|
#
|
398
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/AssociateResource AWS API Documentation
|
399
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/AssociateResource AWS API Documentation
|
399
400
|
#
|
400
401
|
# @overload associate_resource(params = {})
|
401
402
|
# @param [Hash] params ({})
|
@@ -418,9 +419,12 @@ module Aws::AppRegistry
|
|
418
419
|
# Key-value pairs you can use to associate with the application.
|
419
420
|
#
|
420
421
|
# @option params [required, String] :client_token
|
421
|
-
# A unique identifier that you provide to ensure idempotency. If
|
422
|
-
#
|
423
|
-
#
|
422
|
+
# A unique identifier that you provide to ensure idempotency. If you
|
423
|
+
# retry a request that completed successfully using the same client
|
424
|
+
# token and the same parameters, the retry succeeds without performing
|
425
|
+
# any further actions. If you retry a successful request using the same
|
426
|
+
# client token, but one or more of the parameters are different, the
|
427
|
+
# retry fails.
|
424
428
|
#
|
425
429
|
# **A suitable default value is auto-generated.** You should normally
|
426
430
|
# not need to pass this option.**
|
@@ -451,7 +455,7 @@ module Aws::AppRegistry
|
|
451
455
|
# resp.application.tags #=> Hash
|
452
456
|
# resp.application.tags["TagKey"] #=> String
|
453
457
|
#
|
454
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/CreateApplication AWS API Documentation
|
458
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/CreateApplication AWS API Documentation
|
455
459
|
#
|
456
460
|
# @overload create_application(params = {})
|
457
461
|
# @param [Hash] params ({})
|
@@ -461,10 +465,9 @@ module Aws::AppRegistry
|
|
461
465
|
end
|
462
466
|
|
463
467
|
# Creates a new attribute group as a container for user-defined
|
464
|
-
# attributes. This
|
465
|
-
#
|
466
|
-
#
|
467
|
-
# tools.
|
468
|
+
# attributes. This feature enables users to have full control over their
|
469
|
+
# cloud application's metadata in a rich machine-readable format to
|
470
|
+
# facilitate integration with automated workflows and third-party tools.
|
468
471
|
#
|
469
472
|
# @option params [required, String] :name
|
470
473
|
# The name of the attribute group.
|
@@ -481,9 +484,12 @@ module Aws::AppRegistry
|
|
481
484
|
# Key-value pairs you can use to associate with the attribute group.
|
482
485
|
#
|
483
486
|
# @option params [required, String] :client_token
|
484
|
-
# A unique identifier that you provide to ensure idempotency. If
|
485
|
-
#
|
486
|
-
#
|
487
|
+
# A unique identifier that you provide to ensure idempotency. If you
|
488
|
+
# retry a request that completed successfully using the same client
|
489
|
+
# token and the same parameters, the retry succeeds without performing
|
490
|
+
# any further actions. If you retry a successful request using the same
|
491
|
+
# client token, but one or more of the parameters are different, the
|
492
|
+
# retry fails.
|
487
493
|
#
|
488
494
|
# **A suitable default value is auto-generated.** You should normally
|
489
495
|
# not need to pass this option.**
|
@@ -515,7 +521,7 @@ module Aws::AppRegistry
|
|
515
521
|
# resp.attribute_group.tags #=> Hash
|
516
522
|
# resp.attribute_group.tags["TagKey"] #=> String
|
517
523
|
#
|
518
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/CreateAttributeGroup AWS API Documentation
|
524
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/CreateAttributeGroup AWS API Documentation
|
519
525
|
#
|
520
526
|
# @overload create_attribute_group(params = {})
|
521
527
|
# @param [Hash] params ({})
|
@@ -524,7 +530,9 @@ module Aws::AppRegistry
|
|
524
530
|
req.send_request(options)
|
525
531
|
end
|
526
532
|
|
527
|
-
#
|
533
|
+
# Deletes an application that is specified either by its application ID
|
534
|
+
# or name. All associated attribute groups and resources must be
|
535
|
+
# disassociated from it before deleting an application.
|
528
536
|
#
|
529
537
|
# @option params [required, String] :application
|
530
538
|
# The name or ID of the application.
|
@@ -548,7 +556,7 @@ module Aws::AppRegistry
|
|
548
556
|
# resp.application.creation_time #=> Time
|
549
557
|
# resp.application.last_update_time #=> Time
|
550
558
|
#
|
551
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DeleteApplication AWS API Documentation
|
559
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DeleteApplication AWS API Documentation
|
552
560
|
#
|
553
561
|
# @overload delete_application(params = {})
|
554
562
|
# @param [Hash] params ({})
|
@@ -583,7 +591,7 @@ module Aws::AppRegistry
|
|
583
591
|
# resp.attribute_group.creation_time #=> Time
|
584
592
|
# resp.attribute_group.last_update_time #=> Time
|
585
593
|
#
|
586
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DeleteAttributeGroup AWS API Documentation
|
594
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DeleteAttributeGroup AWS API Documentation
|
587
595
|
#
|
588
596
|
# @overload delete_attribute_group(params = {})
|
589
597
|
# @param [Hash] params ({})
|
@@ -595,7 +603,7 @@ module Aws::AppRegistry
|
|
595
603
|
# Disassociates an attribute group from an application to remove the
|
596
604
|
# extra attributes contained in the attribute group from the
|
597
605
|
# application's metadata. This operation reverts
|
598
|
-
# AssociateAttributeGroup
|
606
|
+
# `AssociateAttributeGroup`.
|
599
607
|
#
|
600
608
|
# @option params [required, String] :application
|
601
609
|
# The name or ID of the application.
|
@@ -621,7 +629,7 @@ module Aws::AppRegistry
|
|
621
629
|
# resp.application_arn #=> String
|
622
630
|
# resp.attribute_group_arn #=> String
|
623
631
|
#
|
624
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DisassociateAttributeGroup AWS API Documentation
|
632
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DisassociateAttributeGroup AWS API Documentation
|
625
633
|
#
|
626
634
|
# @overload disassociate_attribute_group(params = {})
|
627
635
|
# @param [Hash] params ({})
|
@@ -637,11 +645,10 @@ module Aws::AppRegistry
|
|
637
645
|
# The name or ID of the application.
|
638
646
|
#
|
639
647
|
# @option params [required, String] :resource_type
|
640
|
-
# The type of the resource that
|
648
|
+
# The type of the resource that is being disassociated.
|
641
649
|
#
|
642
650
|
# @option params [required, String] :resource
|
643
|
-
# The name or ID of the resource
|
644
|
-
# associated.
|
651
|
+
# The name or ID of the resource.
|
645
652
|
#
|
646
653
|
# @return [Types::DisassociateResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
647
654
|
#
|
@@ -661,7 +668,7 @@ module Aws::AppRegistry
|
|
661
668
|
# resp.application_arn #=> String
|
662
669
|
# resp.resource_arn #=> String
|
663
670
|
#
|
664
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/DisassociateResource AWS API Documentation
|
671
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/DisassociateResource AWS API Documentation
|
665
672
|
#
|
666
673
|
# @overload disassociate_resource(params = {})
|
667
674
|
# @param [Hash] params ({})
|
@@ -675,7 +682,7 @@ module Aws::AppRegistry
|
|
675
682
|
# (which is unique within one account in one region at a given point in
|
676
683
|
# time). Specify by ID in automated workflows if you want to make sure
|
677
684
|
# that the exact same application is returned or a
|
678
|
-
# ResourceNotFoundException is thrown, avoiding the ABA addressing
|
685
|
+
# `ResourceNotFoundException` is thrown, avoiding the ABA addressing
|
679
686
|
# problem.
|
680
687
|
#
|
681
688
|
# @option params [required, String] :application
|
@@ -710,7 +717,7 @@ module Aws::AppRegistry
|
|
710
717
|
# resp.tags #=> Hash
|
711
718
|
# resp.tags["TagKey"] #=> String
|
712
719
|
#
|
713
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/GetApplication AWS API Documentation
|
720
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetApplication AWS API Documentation
|
714
721
|
#
|
715
722
|
# @overload get_application(params = {})
|
716
723
|
# @param [Hash] params ({})
|
@@ -719,7 +726,9 @@ module Aws::AppRegistry
|
|
719
726
|
req.send_request(options)
|
720
727
|
end
|
721
728
|
|
722
|
-
# Retrieves an attribute group, either by its name or its ID.
|
729
|
+
# Retrieves an attribute group, either by its name or its ID. The
|
730
|
+
# attribute group can be specified either by its unique ID or by its
|
731
|
+
# name.
|
723
732
|
#
|
724
733
|
# @option params [required, String] :attribute_group
|
725
734
|
# The name or ID of the attribute group that holds the attributes to
|
@@ -754,7 +763,7 @@ module Aws::AppRegistry
|
|
754
763
|
# resp.tags #=> Hash
|
755
764
|
# resp.tags["TagKey"] #=> String
|
756
765
|
#
|
757
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/GetAttributeGroup AWS API Documentation
|
766
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/GetAttributeGroup AWS API Documentation
|
758
767
|
#
|
759
768
|
# @overload get_attribute_group(params = {})
|
760
769
|
# @param [Hash] params ({})
|
@@ -799,7 +808,7 @@ module Aws::AppRegistry
|
|
799
808
|
# resp.applications[0].last_update_time #=> Time
|
800
809
|
# resp.next_token #=> String
|
801
810
|
#
|
802
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListApplications AWS API Documentation
|
811
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListApplications AWS API Documentation
|
803
812
|
#
|
804
813
|
# @overload list_applications(params = {})
|
805
814
|
# @param [Hash] params ({})
|
@@ -844,7 +853,7 @@ module Aws::AppRegistry
|
|
844
853
|
# resp.attribute_groups[0] #=> String
|
845
854
|
# resp.next_token #=> String
|
846
855
|
#
|
847
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListAssociatedAttributeGroups AWS API Documentation
|
856
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListAssociatedAttributeGroups AWS API Documentation
|
848
857
|
#
|
849
858
|
# @overload list_associated_attribute_groups(params = {})
|
850
859
|
# @param [Hash] params ({})
|
@@ -890,7 +899,7 @@ module Aws::AppRegistry
|
|
890
899
|
# resp.resources[0].arn #=> String
|
891
900
|
# resp.next_token #=> String
|
892
901
|
#
|
893
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListAssociatedResources AWS API Documentation
|
902
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListAssociatedResources AWS API Documentation
|
894
903
|
#
|
895
904
|
# @overload list_associated_resources(params = {})
|
896
905
|
# @param [Hash] params ({})
|
@@ -936,7 +945,7 @@ module Aws::AppRegistry
|
|
936
945
|
# resp.attribute_groups[0].last_update_time #=> Time
|
937
946
|
# resp.next_token #=> String
|
938
947
|
#
|
939
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/ListAttributeGroups AWS API Documentation
|
948
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListAttributeGroups AWS API Documentation
|
940
949
|
#
|
941
950
|
# @overload list_attribute_groups(params = {})
|
942
951
|
# @param [Hash] params ({})
|
@@ -945,18 +954,150 @@ module Aws::AppRegistry
|
|
945
954
|
req.send_request(options)
|
946
955
|
end
|
947
956
|
|
957
|
+
# Lists all of the tags on the resource.
|
958
|
+
#
|
959
|
+
# @option params [required, String] :resource_arn
|
960
|
+
# The Amazon resource name (ARN) that specifies the resource.
|
961
|
+
#
|
962
|
+
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
963
|
+
#
|
964
|
+
# * {Types::ListTagsForResourceResponse#tags #tags} => Hash<String,String>
|
965
|
+
#
|
966
|
+
# @example Request syntax with placeholder values
|
967
|
+
#
|
968
|
+
# resp = client.list_tags_for_resource({
|
969
|
+
# resource_arn: "Arn", # required
|
970
|
+
# })
|
971
|
+
#
|
972
|
+
# @example Response structure
|
973
|
+
#
|
974
|
+
# resp.tags #=> Hash
|
975
|
+
# resp.tags["TagKey"] #=> String
|
976
|
+
#
|
977
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/ListTagsForResource AWS API Documentation
|
978
|
+
#
|
979
|
+
# @overload list_tags_for_resource(params = {})
|
980
|
+
# @param [Hash] params ({})
|
981
|
+
def list_tags_for_resource(params = {}, options = {})
|
982
|
+
req = build_request(:list_tags_for_resource, params)
|
983
|
+
req.send_request(options)
|
984
|
+
end
|
985
|
+
|
986
|
+
# Syncs the resource with what is currently recorded in App registry.
|
987
|
+
# Specifically, the resource’s App registry system tags are synced with
|
988
|
+
# its associated application. The resource is removed if it is not
|
989
|
+
# associated with the application. The caller must have permissions to
|
990
|
+
# read and update the resource.
|
991
|
+
#
|
992
|
+
# @option params [required, String] :resource_type
|
993
|
+
# The type of resource of which the application will be associated.
|
994
|
+
#
|
995
|
+
# @option params [required, String] :resource
|
996
|
+
# An entity you can work with and specify with a name or ID. Examples
|
997
|
+
# include an Amazon EC2 instance, an AWS CloudFormation stack, or an
|
998
|
+
# Amazon S3 bucket.
|
999
|
+
#
|
1000
|
+
# @return [Types::SyncResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1001
|
+
#
|
1002
|
+
# * {Types::SyncResourceResponse#application_arn #application_arn} => String
|
1003
|
+
# * {Types::SyncResourceResponse#resource_arn #resource_arn} => String
|
1004
|
+
# * {Types::SyncResourceResponse#action_taken #action_taken} => String
|
1005
|
+
#
|
1006
|
+
# @example Request syntax with placeholder values
|
1007
|
+
#
|
1008
|
+
# resp = client.sync_resource({
|
1009
|
+
# resource_type: "CFN_STACK", # required, accepts CFN_STACK
|
1010
|
+
# resource: "ResourceSpecifier", # required
|
1011
|
+
# })
|
1012
|
+
#
|
1013
|
+
# @example Response structure
|
1014
|
+
#
|
1015
|
+
# resp.application_arn #=> String
|
1016
|
+
# resp.resource_arn #=> String
|
1017
|
+
# resp.action_taken #=> String, one of "START_SYNC", "NO_ACTION"
|
1018
|
+
#
|
1019
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/SyncResource AWS API Documentation
|
1020
|
+
#
|
1021
|
+
# @overload sync_resource(params = {})
|
1022
|
+
# @param [Hash] params ({})
|
1023
|
+
def sync_resource(params = {}, options = {})
|
1024
|
+
req = build_request(:sync_resource, params)
|
1025
|
+
req.send_request(options)
|
1026
|
+
end
|
1027
|
+
|
1028
|
+
# Assigns one or more tags (key-value pairs) to the specified resource.
|
1029
|
+
#
|
1030
|
+
# Each tag consists of a key and an optional value. If a tag with the
|
1031
|
+
# same key is already associated with the resource, this action updates
|
1032
|
+
# its value.
|
1033
|
+
#
|
1034
|
+
# This operation returns an empty response if the call was successful.
|
1035
|
+
#
|
1036
|
+
# @option params [required, String] :resource_arn
|
1037
|
+
# The Amazon resource name (ARN) that specifies the resource.
|
1038
|
+
#
|
1039
|
+
# @option params [required, Hash<String,String>] :tags
|
1040
|
+
# The new or modified tags for the resource.
|
1041
|
+
#
|
1042
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1043
|
+
#
|
1044
|
+
# @example Request syntax with placeholder values
|
1045
|
+
#
|
1046
|
+
# resp = client.tag_resource({
|
1047
|
+
# resource_arn: "Arn", # required
|
1048
|
+
# tags: { # required
|
1049
|
+
# "TagKey" => "TagValue",
|
1050
|
+
# },
|
1051
|
+
# })
|
1052
|
+
#
|
1053
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/TagResource AWS API Documentation
|
1054
|
+
#
|
1055
|
+
# @overload tag_resource(params = {})
|
1056
|
+
# @param [Hash] params ({})
|
1057
|
+
def tag_resource(params = {}, options = {})
|
1058
|
+
req = build_request(:tag_resource, params)
|
1059
|
+
req.send_request(options)
|
1060
|
+
end
|
1061
|
+
|
1062
|
+
# Removes tags from a resource.
|
1063
|
+
#
|
1064
|
+
# This operation returns an empty response if the call was successful.
|
1065
|
+
#
|
1066
|
+
# @option params [required, String] :resource_arn
|
1067
|
+
# The Amazon resource name (ARN) that specifies the resource.
|
1068
|
+
#
|
1069
|
+
# @option params [required, Array<String>] :tag_keys
|
1070
|
+
# A list of the tag keys to remove from the specified resource.
|
1071
|
+
#
|
1072
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1073
|
+
#
|
1074
|
+
# @example Request syntax with placeholder values
|
1075
|
+
#
|
1076
|
+
# resp = client.untag_resource({
|
1077
|
+
# resource_arn: "Arn", # required
|
1078
|
+
# tag_keys: ["TagKey"], # required
|
1079
|
+
# })
|
1080
|
+
#
|
1081
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/UntagResource AWS API Documentation
|
1082
|
+
#
|
1083
|
+
# @overload untag_resource(params = {})
|
1084
|
+
# @param [Hash] params ({})
|
1085
|
+
def untag_resource(params = {}, options = {})
|
1086
|
+
req = build_request(:untag_resource, params)
|
1087
|
+
req.send_request(options)
|
1088
|
+
end
|
1089
|
+
|
948
1090
|
# Updates an existing application with new attributes.
|
949
1091
|
#
|
950
1092
|
# @option params [required, String] :application
|
951
|
-
# The name or ID of the application
|
952
|
-
# region in which you are updating the attribute group.
|
1093
|
+
# The name or ID of the application that will be updated.
|
953
1094
|
#
|
954
1095
|
# @option params [String] :name
|
955
|
-
# The
|
956
|
-
# which you are
|
1096
|
+
# The new name of the application. The name must be unique in the region
|
1097
|
+
# in which you are updating the application.
|
957
1098
|
#
|
958
1099
|
# @option params [String] :description
|
959
|
-
# The description of the application.
|
1100
|
+
# The new description of the application.
|
960
1101
|
#
|
961
1102
|
# @return [Types::UpdateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
962
1103
|
#
|
@@ -981,7 +1122,7 @@ module Aws::AppRegistry
|
|
981
1122
|
# resp.application.tags #=> Hash
|
982
1123
|
# resp.application.tags["TagKey"] #=> String
|
983
1124
|
#
|
984
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/UpdateApplication AWS API Documentation
|
1125
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/UpdateApplication AWS API Documentation
|
985
1126
|
#
|
986
1127
|
# @overload update_application(params = {})
|
987
1128
|
# @param [Hash] params ({})
|
@@ -1032,7 +1173,7 @@ module Aws::AppRegistry
|
|
1032
1173
|
# resp.attribute_group.tags #=> Hash
|
1033
1174
|
# resp.attribute_group.tags["TagKey"] #=> String
|
1034
1175
|
#
|
1035
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry/UpdateAttributeGroup AWS API Documentation
|
1176
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/AWS242AppRegistry-2020-06-24/UpdateAttributeGroup AWS API Documentation
|
1036
1177
|
#
|
1037
1178
|
# @overload update_attribute_group(params = {})
|
1038
1179
|
# @param [Hash] params ({})
|
@@ -1054,7 +1195,7 @@ module Aws::AppRegistry
|
|
1054
1195
|
params: params,
|
1055
1196
|
config: config)
|
1056
1197
|
context[:gem_name] = 'aws-sdk-appregistry'
|
1057
|
-
context[:gem_version] = '1.
|
1198
|
+
context[:gem_version] = '1.5.0'
|
1058
1199
|
Seahorse::Client::Request.new(handlers, context)
|
1059
1200
|
end
|
1060
1201
|
|