aws-sdk-appregistry 1.18.0 → 1.19.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 +7 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appregistry/client.rb +1 -1
- data/lib/aws-sdk-appregistry/endpoint_provider.rb +38 -103
- data/lib/aws-sdk-appregistry/types.rb +0 -218
- data/lib/aws-sdk-appregistry.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 575ee9d400fa192c16b210d9c0948e32ff94cd960cd665564316a3d55739cea7
|
4
|
+
data.tar.gz: 279a825a34592bb525b6cc45b4cbf170dbffee25a9eb21fd32dd70f2f9344448
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a727db0cccda89d71599908c54e898cbe283048072758436ec944bf69dbab8327cb1b32e39e29214bd190fc1d2a54ae39d02b1dc334a5269aaf5140393ed78e
|
7
|
+
data.tar.gz: 72473760de684020d20c1bd53b4b7b2dc1b8bcc1ed6524d17b95f1cd87358c8a80ea4e25e482e08d00c1d1666c6dc8a18e223640e6367bc46ad8479497811285
|
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-11-17)
|
5
12
|
------------------
|
6
13
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.19.0
|
@@ -1386,7 +1386,7 @@ module Aws::AppRegistry
|
|
1386
1386
|
params: params,
|
1387
1387
|
config: config)
|
1388
1388
|
context[:gem_name] = 'aws-sdk-appregistry'
|
1389
|
-
context[:gem_version] = '1.
|
1389
|
+
context[:gem_version] = '1.19.0'
|
1390
1390
|
Seahorse::Client::Request.new(handlers, context)
|
1391
1391
|
end
|
1392
1392
|
|
@@ -9,111 +9,46 @@
|
|
9
9
|
|
10
10
|
module Aws::AppRegistry
|
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://servicecatalog-appregistry-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
|
+
if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
|
36
|
+
return Aws::Endpoints::Endpoint.new(url: "https://servicecatalog-appregistry.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
|
+
end
|
38
|
+
return Aws::Endpoints::Endpoint.new(url: "https://servicecatalog-appregistry-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
39
|
+
end
|
40
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
41
|
+
end
|
42
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
43
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
44
|
+
return Aws::Endpoints::Endpoint.new(url: "https://servicecatalog-appregistry.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
45
|
+
end
|
46
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
47
|
+
end
|
48
|
+
return Aws::Endpoints::Endpoint.new(url: "https://servicecatalog-appregistry.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
21
49
|
end
|
22
|
-
|
23
|
-
end
|
50
|
+
raise ArgumentError, 'No endpoint could be resolved'
|
24
51
|
|
25
|
-
def resolve_endpoint(parameters)
|
26
|
-
@provider.resolve_endpoint(parameters)
|
27
52
|
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
|
-
dCI6eyJ1cmwiOiJodHRwczovL3NlcnZpY2VjYXRhbG9nLWFwcHJlZ2lzdHJ5
|
77
|
-
LWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNT
|
78
|
-
dWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6
|
79
|
-
ImVuZHBvaW50In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMg
|
80
|
-
YW5kIER1YWxTdGFjayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9u
|
81
|
-
IGRvZXMgbm90IHN1cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3Ii
|
82
|
-
fV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJn
|
83
|
-
diI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwi
|
84
|
-
cnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIs
|
85
|
-
ImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoi
|
86
|
-
UGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6
|
87
|
-
InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVl
|
88
|
-
IiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoic3RyaW5nRXF1YWxz
|
89
|
-
IiwiYXJndiI6WyJhd3MtdXMtZ292Iix7ImZuIjoiZ2V0QXR0ciIsImFyZ3Yi
|
90
|
-
Olt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJuYW1lIl19XX1dLCJlbmRw
|
91
|
-
b2ludCI6eyJ1cmwiOiJodHRwczovL3NlcnZpY2VjYXRhbG9nLWFwcHJlZ2lz
|
92
|
-
dHJ5LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInBy
|
93
|
-
b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
|
94
|
-
LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8v
|
95
|
-
c2VydmljZWNhdGFsb2ctYXBwcmVnaXN0cnktZmlwcy57UmVnaW9ufS57UGFy
|
96
|
-
dGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVh
|
97
|
-
ZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25z
|
98
|
-
IjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0
|
99
|
-
aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQUyIsInR5cGUiOiJlcnJvciJ9XX0s
|
100
|
-
eyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2Ijpb
|
101
|
-
eyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIs
|
102
|
-
InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
103
|
-
LCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6
|
104
|
-
IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwi
|
105
|
-
dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBv
|
106
|
-
aW50Ijp7InVybCI6Imh0dHBzOi8vc2VydmljZWNhdGFsb2ctYXBwcmVnaXN0
|
107
|
-
cnkue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZm
|
108
|
-
aXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVu
|
109
|
-
ZHBvaW50In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkR1YWxTdGFj
|
110
|
-
ayBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBw
|
111
|
-
b3J0IER1YWxTdGFjayIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25z
|
112
|
-
IjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9zZXJ2aWNlY2F0YWxv
|
113
|
-
Zy1hcHByZWdpc3RyeS57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1
|
114
|
-
ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoi
|
115
|
-
ZW5kcG9pbnQifV19XX0=
|
116
|
-
|
117
|
-
JSON
|
118
53
|
end
|
119
54
|
end
|
@@ -12,15 +12,6 @@ module Aws::AppRegistry
|
|
12
12
|
|
13
13
|
# Includes all of the Service Catalog AppRegistry settings.
|
14
14
|
#
|
15
|
-
# @note When making an API call, you may pass AppRegistryConfiguration
|
16
|
-
# data as a hash:
|
17
|
-
#
|
18
|
-
# {
|
19
|
-
# tag_query_configuration: {
|
20
|
-
# tag_key: "TagKeyConfig",
|
21
|
-
# },
|
22
|
-
# }
|
23
|
-
#
|
24
15
|
# @!attribute [rw] tag_query_configuration
|
25
16
|
# Includes the definition of a `tagQuery`.
|
26
17
|
# @return [Types::TagQueryConfiguration]
|
@@ -127,14 +118,6 @@ module Aws::AppRegistry
|
|
127
118
|
include Aws::Structure
|
128
119
|
end
|
129
120
|
|
130
|
-
# @note When making an API call, you may pass AssociateAttributeGroupRequest
|
131
|
-
# data as a hash:
|
132
|
-
#
|
133
|
-
# {
|
134
|
-
# application: "ApplicationSpecifier", # required
|
135
|
-
# attribute_group: "AttributeGroupSpecifier", # required
|
136
|
-
# }
|
137
|
-
#
|
138
121
|
# @!attribute [rw] application
|
139
122
|
# The name or ID of the application.
|
140
123
|
# @return [String]
|
@@ -172,15 +155,6 @@ module Aws::AppRegistry
|
|
172
155
|
include Aws::Structure
|
173
156
|
end
|
174
157
|
|
175
|
-
# @note When making an API call, you may pass AssociateResourceRequest
|
176
|
-
# data as a hash:
|
177
|
-
#
|
178
|
-
# {
|
179
|
-
# application: "ApplicationSpecifier", # required
|
180
|
-
# resource_type: "CFN_STACK", # required, accepts CFN_STACK, RESOURCE_TAG_VALUE
|
181
|
-
# resource: "ResourceSpecifier", # required
|
182
|
-
# }
|
183
|
-
#
|
184
158
|
# @!attribute [rw] application
|
185
159
|
# The name or ID of the application.
|
186
160
|
# @return [String]
|
@@ -359,18 +333,6 @@ module Aws::AppRegistry
|
|
359
333
|
include Aws::Structure
|
360
334
|
end
|
361
335
|
|
362
|
-
# @note When making an API call, you may pass CreateApplicationRequest
|
363
|
-
# data as a hash:
|
364
|
-
#
|
365
|
-
# {
|
366
|
-
# name: "Name", # required
|
367
|
-
# description: "Description",
|
368
|
-
# tags: {
|
369
|
-
# "TagKey" => "TagValue",
|
370
|
-
# },
|
371
|
-
# client_token: "ClientToken", # required
|
372
|
-
# }
|
373
|
-
#
|
374
336
|
# @!attribute [rw] name
|
375
337
|
# The name of the application. The name must be unique in the region
|
376
338
|
# in which you are creating the application.
|
@@ -419,19 +381,6 @@ module Aws::AppRegistry
|
|
419
381
|
include Aws::Structure
|
420
382
|
end
|
421
383
|
|
422
|
-
# @note When making an API call, you may pass CreateAttributeGroupRequest
|
423
|
-
# data as a hash:
|
424
|
-
#
|
425
|
-
# {
|
426
|
-
# name: "Name", # required
|
427
|
-
# description: "Description",
|
428
|
-
# attributes: "Attributes", # required
|
429
|
-
# tags: {
|
430
|
-
# "TagKey" => "TagValue",
|
431
|
-
# },
|
432
|
-
# client_token: "ClientToken", # required
|
433
|
-
# }
|
434
|
-
#
|
435
384
|
# @!attribute [rw] name
|
436
385
|
# The name of the attribute group.
|
437
386
|
# @return [String]
|
@@ -486,13 +435,6 @@ module Aws::AppRegistry
|
|
486
435
|
include Aws::Structure
|
487
436
|
end
|
488
437
|
|
489
|
-
# @note When making an API call, you may pass DeleteApplicationRequest
|
490
|
-
# data as a hash:
|
491
|
-
#
|
492
|
-
# {
|
493
|
-
# application: "ApplicationSpecifier", # required
|
494
|
-
# }
|
495
|
-
#
|
496
438
|
# @!attribute [rw] application
|
497
439
|
# The name or ID of the application.
|
498
440
|
# @return [String]
|
@@ -517,13 +459,6 @@ module Aws::AppRegistry
|
|
517
459
|
include Aws::Structure
|
518
460
|
end
|
519
461
|
|
520
|
-
# @note When making an API call, you may pass DeleteAttributeGroupRequest
|
521
|
-
# data as a hash:
|
522
|
-
#
|
523
|
-
# {
|
524
|
-
# attribute_group: "AttributeGroupSpecifier", # required
|
525
|
-
# }
|
526
|
-
#
|
527
462
|
# @!attribute [rw] attribute_group
|
528
463
|
# The name or ID of the attribute group that holds the attributes to
|
529
464
|
# describe the application.
|
@@ -549,14 +484,6 @@ module Aws::AppRegistry
|
|
549
484
|
include Aws::Structure
|
550
485
|
end
|
551
486
|
|
552
|
-
# @note When making an API call, you may pass DisassociateAttributeGroupRequest
|
553
|
-
# data as a hash:
|
554
|
-
#
|
555
|
-
# {
|
556
|
-
# application: "ApplicationSpecifier", # required
|
557
|
-
# attribute_group: "AttributeGroupSpecifier", # required
|
558
|
-
# }
|
559
|
-
#
|
560
487
|
# @!attribute [rw] application
|
561
488
|
# The name or ID of the application.
|
562
489
|
# @return [String]
|
@@ -592,15 +519,6 @@ module Aws::AppRegistry
|
|
592
519
|
include Aws::Structure
|
593
520
|
end
|
594
521
|
|
595
|
-
# @note When making an API call, you may pass DisassociateResourceRequest
|
596
|
-
# data as a hash:
|
597
|
-
#
|
598
|
-
# {
|
599
|
-
# application: "ApplicationSpecifier", # required
|
600
|
-
# resource_type: "CFN_STACK", # required, accepts CFN_STACK, RESOURCE_TAG_VALUE
|
601
|
-
# resource: "ResourceSpecifier", # required
|
602
|
-
# }
|
603
|
-
#
|
604
522
|
# @!attribute [rw] application
|
605
523
|
# The name or ID of the application.
|
606
524
|
# @return [String]
|
@@ -640,13 +558,6 @@ module Aws::AppRegistry
|
|
640
558
|
include Aws::Structure
|
641
559
|
end
|
642
560
|
|
643
|
-
# @note When making an API call, you may pass GetApplicationRequest
|
644
|
-
# data as a hash:
|
645
|
-
#
|
646
|
-
# {
|
647
|
-
# application: "ApplicationSpecifier", # required
|
648
|
-
# }
|
649
|
-
#
|
650
561
|
# @!attribute [rw] application
|
651
562
|
# The name or ID of the application.
|
652
563
|
# @return [String]
|
@@ -717,15 +628,6 @@ module Aws::AppRegistry
|
|
717
628
|
include Aws::Structure
|
718
629
|
end
|
719
630
|
|
720
|
-
# @note When making an API call, you may pass GetAssociatedResourceRequest
|
721
|
-
# data as a hash:
|
722
|
-
#
|
723
|
-
# {
|
724
|
-
# application: "ApplicationSpecifier", # required
|
725
|
-
# resource_type: "CFN_STACK", # required, accepts CFN_STACK, RESOURCE_TAG_VALUE
|
726
|
-
# resource: "ResourceSpecifier", # required
|
727
|
-
# }
|
728
|
-
#
|
729
631
|
# @!attribute [rw] application
|
730
632
|
# The name or ID of the application.
|
731
633
|
# @return [String]
|
@@ -760,13 +662,6 @@ module Aws::AppRegistry
|
|
760
662
|
include Aws::Structure
|
761
663
|
end
|
762
664
|
|
763
|
-
# @note When making an API call, you may pass GetAttributeGroupRequest
|
764
|
-
# data as a hash:
|
765
|
-
#
|
766
|
-
# {
|
767
|
-
# attribute_group: "AttributeGroupSpecifier", # required
|
768
|
-
# }
|
769
|
-
#
|
770
665
|
# @!attribute [rw] attribute_group
|
771
666
|
# The name or ID of the attribute group that holds the attributes to
|
772
667
|
# describe the application.
|
@@ -872,14 +767,6 @@ module Aws::AppRegistry
|
|
872
767
|
include Aws::Structure
|
873
768
|
end
|
874
769
|
|
875
|
-
# @note When making an API call, you may pass ListApplicationsRequest
|
876
|
-
# data as a hash:
|
877
|
-
#
|
878
|
-
# {
|
879
|
-
# next_token: "NextToken",
|
880
|
-
# max_results: 1,
|
881
|
-
# }
|
882
|
-
#
|
883
770
|
# @!attribute [rw] next_token
|
884
771
|
# The token to use to get the next page of results after a previous
|
885
772
|
# API call.
|
@@ -918,15 +805,6 @@ module Aws::AppRegistry
|
|
918
805
|
include Aws::Structure
|
919
806
|
end
|
920
807
|
|
921
|
-
# @note When making an API call, you may pass ListAssociatedAttributeGroupsRequest
|
922
|
-
# data as a hash:
|
923
|
-
#
|
924
|
-
# {
|
925
|
-
# application: "ApplicationSpecifier", # required
|
926
|
-
# next_token: "NextToken",
|
927
|
-
# max_results: 1,
|
928
|
-
# }
|
929
|
-
#
|
930
808
|
# @!attribute [rw] application
|
931
809
|
# The name or ID of the application.
|
932
810
|
# @return [String]
|
@@ -970,15 +848,6 @@ module Aws::AppRegistry
|
|
970
848
|
include Aws::Structure
|
971
849
|
end
|
972
850
|
|
973
|
-
# @note When making an API call, you may pass ListAssociatedResourcesRequest
|
974
|
-
# data as a hash:
|
975
|
-
#
|
976
|
-
# {
|
977
|
-
# application: "ApplicationSpecifier", # required
|
978
|
-
# next_token: "NextToken",
|
979
|
-
# max_results: 1,
|
980
|
-
# }
|
981
|
-
#
|
982
851
|
# @!attribute [rw] application
|
983
852
|
# The name or ID of the application.
|
984
853
|
# @return [String]
|
@@ -1022,15 +891,6 @@ module Aws::AppRegistry
|
|
1022
891
|
include Aws::Structure
|
1023
892
|
end
|
1024
893
|
|
1025
|
-
# @note When making an API call, you may pass ListAttributeGroupsForApplicationRequest
|
1026
|
-
# data as a hash:
|
1027
|
-
#
|
1028
|
-
# {
|
1029
|
-
# application: "ApplicationSpecifier", # required
|
1030
|
-
# next_token: "NextToken",
|
1031
|
-
# max_results: 1,
|
1032
|
-
# }
|
1033
|
-
#
|
1034
894
|
# @!attribute [rw] application
|
1035
895
|
# The name or ID of the application.
|
1036
896
|
# @return [String]
|
@@ -1074,14 +934,6 @@ module Aws::AppRegistry
|
|
1074
934
|
include Aws::Structure
|
1075
935
|
end
|
1076
936
|
|
1077
|
-
# @note When making an API call, you may pass ListAttributeGroupsRequest
|
1078
|
-
# data as a hash:
|
1079
|
-
#
|
1080
|
-
# {
|
1081
|
-
# next_token: "NextToken",
|
1082
|
-
# max_results: 1,
|
1083
|
-
# }
|
1084
|
-
#
|
1085
937
|
# @!attribute [rw] next_token
|
1086
938
|
# The token to use to get the next page of results after a previous
|
1087
939
|
# API call.
|
@@ -1120,13 +972,6 @@ module Aws::AppRegistry
|
|
1120
972
|
include Aws::Structure
|
1121
973
|
end
|
1122
974
|
|
1123
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
1124
|
-
# data as a hash:
|
1125
|
-
#
|
1126
|
-
# {
|
1127
|
-
# resource_arn: "Arn", # required
|
1128
|
-
# }
|
1129
|
-
#
|
1130
975
|
# @!attribute [rw] resource_arn
|
1131
976
|
# The Amazon resource name (ARN) that specifies the resource.
|
1132
977
|
# @return [String]
|
@@ -1151,17 +996,6 @@ module Aws::AppRegistry
|
|
1151
996
|
include Aws::Structure
|
1152
997
|
end
|
1153
998
|
|
1154
|
-
# @note When making an API call, you may pass PutConfigurationRequest
|
1155
|
-
# data as a hash:
|
1156
|
-
#
|
1157
|
-
# {
|
1158
|
-
# configuration: { # required
|
1159
|
-
# tag_query_configuration: {
|
1160
|
-
# tag_key: "TagKeyConfig",
|
1161
|
-
# },
|
1162
|
-
# },
|
1163
|
-
# }
|
1164
|
-
#
|
1165
999
|
# @!attribute [rw] configuration
|
1166
1000
|
# Associates a `TagKey` configuration to an account.
|
1167
1001
|
# @return [Types::AppRegistryConfiguration]
|
@@ -1326,14 +1160,6 @@ module Aws::AppRegistry
|
|
1326
1160
|
include Aws::Structure
|
1327
1161
|
end
|
1328
1162
|
|
1329
|
-
# @note When making an API call, you may pass SyncResourceRequest
|
1330
|
-
# data as a hash:
|
1331
|
-
#
|
1332
|
-
# {
|
1333
|
-
# resource_type: "CFN_STACK", # required, accepts CFN_STACK, RESOURCE_TAG_VALUE
|
1334
|
-
# resource: "ResourceSpecifier", # required
|
1335
|
-
# }
|
1336
|
-
#
|
1337
1163
|
# @!attribute [rw] resource_type
|
1338
1164
|
# The type of resource of which the application will be associated.
|
1339
1165
|
# @return [String]
|
@@ -1379,13 +1205,6 @@ module Aws::AppRegistry
|
|
1379
1205
|
# The definition of `tagQuery`. Specifies which resources are associated
|
1380
1206
|
# with an application.
|
1381
1207
|
#
|
1382
|
-
# @note When making an API call, you may pass TagQueryConfiguration
|
1383
|
-
# data as a hash:
|
1384
|
-
#
|
1385
|
-
# {
|
1386
|
-
# tag_key: "TagKeyConfig",
|
1387
|
-
# }
|
1388
|
-
#
|
1389
1208
|
# @!attribute [rw] tag_key
|
1390
1209
|
# Condition in the IAM policy that associates resources to an
|
1391
1210
|
# application.
|
@@ -1399,16 +1218,6 @@ module Aws::AppRegistry
|
|
1399
1218
|
include Aws::Structure
|
1400
1219
|
end
|
1401
1220
|
|
1402
|
-
# @note When making an API call, you may pass TagResourceRequest
|
1403
|
-
# data as a hash:
|
1404
|
-
#
|
1405
|
-
# {
|
1406
|
-
# resource_arn: "Arn", # required
|
1407
|
-
# tags: { # required
|
1408
|
-
# "TagKey" => "TagValue",
|
1409
|
-
# },
|
1410
|
-
# }
|
1411
|
-
#
|
1412
1221
|
# @!attribute [rw] resource_arn
|
1413
1222
|
# The Amazon resource name (ARN) that specifies the resource.
|
1414
1223
|
# @return [String]
|
@@ -1430,14 +1239,6 @@ module Aws::AppRegistry
|
|
1430
1239
|
#
|
1431
1240
|
class TagResourceResponse < Aws::EmptyStructure; end
|
1432
1241
|
|
1433
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
1434
|
-
# data as a hash:
|
1435
|
-
#
|
1436
|
-
# {
|
1437
|
-
# resource_arn: "Arn", # required
|
1438
|
-
# tag_keys: ["TagKey"], # required
|
1439
|
-
# }
|
1440
|
-
#
|
1441
1242
|
# @!attribute [rw] resource_arn
|
1442
1243
|
# The Amazon resource name (ARN) that specifies the resource.
|
1443
1244
|
# @return [String]
|
@@ -1459,15 +1260,6 @@ module Aws::AppRegistry
|
|
1459
1260
|
#
|
1460
1261
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
1461
1262
|
|
1462
|
-
# @note When making an API call, you may pass UpdateApplicationRequest
|
1463
|
-
# data as a hash:
|
1464
|
-
#
|
1465
|
-
# {
|
1466
|
-
# application: "ApplicationSpecifier", # required
|
1467
|
-
# name: "Name",
|
1468
|
-
# description: "Description",
|
1469
|
-
# }
|
1470
|
-
#
|
1471
1263
|
# @!attribute [rw] application
|
1472
1264
|
# The name or ID of the application that will be updated.
|
1473
1265
|
# @return [String]
|
@@ -1504,16 +1296,6 @@ module Aws::AppRegistry
|
|
1504
1296
|
include Aws::Structure
|
1505
1297
|
end
|
1506
1298
|
|
1507
|
-
# @note When making an API call, you may pass UpdateAttributeGroupRequest
|
1508
|
-
# data as a hash:
|
1509
|
-
#
|
1510
|
-
# {
|
1511
|
-
# attribute_group: "AttributeGroupSpecifier", # required
|
1512
|
-
# name: "Name",
|
1513
|
-
# description: "Description",
|
1514
|
-
# attributes: "Attributes",
|
1515
|
-
# }
|
1516
|
-
#
|
1517
1299
|
# @!attribute [rw] attribute_group
|
1518
1300
|
# The name or ID of the attribute group that holds the attributes to
|
1519
1301
|
# describe the application.
|
data/lib/aws-sdk-appregistry.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-appregistry
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
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:
|
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
|