aws-sdk-codestarconnections 1.25.0 → 1.27.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7e9c9e03af83d3efa51dd3fb97e01714e07497377dab5213253fba5891b35c3f
4
- data.tar.gz: 0d132f49600bde6144af6dcad18ee3244d7e06ccd694f1b71479d461d760d39f
3
+ metadata.gz: 2134ba680d8ab2a490186880f863cca9a16c74263f70d0d1adb1b7996a9815c2
4
+ data.tar.gz: cc7e6a85a9999546652c1836fc19bd00248d8bdbadefb2ba15ad68f7050ebb0c
5
5
  SHA512:
6
- metadata.gz: a6fdff885e84ad9eefb269449068a8e8af293c2b08afaa17c197bfbdd423d3a25a9dabf9761b1f7ae0d56eb7e94e7086f1850d9ec38fe4702f8b250acae9a174
7
- data.tar.gz: ade5de2683d52cd397ae12d02491516b6173c29b3a6d1a2dff36bd6f789bbc3b89a8cf25f297ee87ff9c59d458143a3bee94d6c320b9585dd0fa087e8f7c9e1c
6
+ metadata.gz: 7ca94fbc8d9e256a689a8433356472763552b0b1808a1b9de2def58093bfcb644a16747a16f95a3c9aa8796ba026c7da38b2f5f948aad60d07d022e6544e6d72
7
+ data.tar.gz: 000ab1eb60cc04dc3a4ce3ebcc4e3aca586d7da2c4995b21c0bf3451961cd06b4b6aa731cb7471e5afde1cc76f1cd262c8a783851e7b9af419852e6437f5af1f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.27.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.26.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.25.0 (2022-10-25)
5
17
  ------------------
6
18
 
@@ -135,4 +147,4 @@ Unreleased Changes
135
147
  1.0.0 (2019-12-19)
136
148
  ------------------
137
149
 
138
- * Feature - Initial release of `aws-sdk-codestarconnections`.
150
+ * Feature - Initial release of `aws-sdk-codestarconnections`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.25.0
1
+ 1.27.0
@@ -275,6 +275,11 @@ module Aws::CodeStarconnections
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
@@ -884,7 +889,7 @@ module Aws::CodeStarconnections
884
889
  params: params,
885
890
  config: config)
886
891
  context[:gem_name] = 'aws-sdk-codestarconnections'
887
- context[:gem_version] = '1.25.0'
892
+ context[:gem_version] = '1.27.0'
888
893
  Seahorse::Client::Request.new(handlers, context)
889
894
  end
890
895
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::CodeStarconnections
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
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://codestar-connections-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://codestar-connections-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://codestar-connections.#{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://codestar-connections.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
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
- dCI6eyJ1cmwiOiJodHRwczovL2NvZGVzdGFyLWNvbm5lY3Rpb25zLWZpcHMu
77
- e1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9
78
- IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBv
79
- aW50In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1
80
- YWxTdGFjayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMg
81
- bm90IHN1cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsi
82
- Y29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3si
83
- cmVmIjoiVXNlRklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMi
84
- Olt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3Yi
85
- Olt0cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0
86
- aW9uUmVzdWx0In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUi
87
- LCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVs
88
- ZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRw
89
- czovL2NvZGVzdGFyLWNvbm5lY3Rpb25zLWZpcHMue1JlZ2lvbn0ue1BhcnRp
90
- dGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRl
91
- cnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6
92
- W10sImVycm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlv
93
- biBkb2VzIG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsi
94
- Y29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3si
95
- cmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJy
96
- dWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwi
97
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
98
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
99
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
100
- dCI6eyJ1cmwiOiJodHRwczovL2NvZGVzdGFyLWNvbm5lY3Rpb25zLntSZWdp
101
- b259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInBy
102
- b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
103
- XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5h
104
- YmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFs
105
- U3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVu
106
- ZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vY29kZXN0YXItY29ubmVjdGlvbnMu
107
- e1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVy
108
- dGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -78,21 +78,6 @@ module Aws::CodeStarconnections
78
78
  include Aws::Structure
79
79
  end
80
80
 
81
- # @note When making an API call, you may pass CreateConnectionInput
82
- # data as a hash:
83
- #
84
- # {
85
- # provider_type: "Bitbucket", # accepts Bitbucket, GitHub, GitHubEnterpriseServer
86
- # connection_name: "ConnectionName", # required
87
- # tags: [
88
- # {
89
- # key: "TagKey", # required
90
- # value: "TagValue", # required
91
- # },
92
- # ],
93
- # host_arn: "HostArn",
94
- # }
95
- #
96
81
  # @!attribute [rw] provider_type
97
82
  # The name of the external provider where your third-party code
98
83
  # repository is configured.
@@ -146,27 +131,6 @@ module Aws::CodeStarconnections
146
131
  include Aws::Structure
147
132
  end
148
133
 
149
- # @note When making an API call, you may pass CreateHostInput
150
- # data as a hash:
151
- #
152
- # {
153
- # name: "HostName", # required
154
- # provider_type: "Bitbucket", # required, accepts Bitbucket, GitHub, GitHubEnterpriseServer
155
- # provider_endpoint: "Url", # required
156
- # vpc_configuration: {
157
- # vpc_id: "VpcId", # required
158
- # subnet_ids: ["SubnetId"], # required
159
- # security_group_ids: ["SecurityGroupId"], # required
160
- # tls_certificate: "TlsCertificate",
161
- # },
162
- # tags: [
163
- # {
164
- # key: "TagKey", # required
165
- # value: "TagValue", # required
166
- # },
167
- # ],
168
- # }
169
- #
170
134
  # @!attribute [rw] name
171
135
  # The name of the host to be created. The name must be unique in the
172
136
  # calling AWS account.
@@ -221,13 +185,6 @@ module Aws::CodeStarconnections
221
185
  include Aws::Structure
222
186
  end
223
187
 
224
- # @note When making an API call, you may pass DeleteConnectionInput
225
- # data as a hash:
226
- #
227
- # {
228
- # connection_arn: "ConnectionArn", # required
229
- # }
230
- #
231
188
  # @!attribute [rw] connection_arn
232
189
  # The Amazon Resource Name (ARN) of the connection to be deleted.
233
190
  #
@@ -248,13 +205,6 @@ module Aws::CodeStarconnections
248
205
  #
249
206
  class DeleteConnectionOutput < Aws::EmptyStructure; end
250
207
 
251
- # @note When making an API call, you may pass DeleteHostInput
252
- # data as a hash:
253
- #
254
- # {
255
- # host_arn: "HostArn", # required
256
- # }
257
- #
258
208
  # @!attribute [rw] host_arn
259
209
  # The Amazon Resource Name (ARN) of the host to be deleted.
260
210
  # @return [String]
@@ -271,13 +221,6 @@ module Aws::CodeStarconnections
271
221
  #
272
222
  class DeleteHostOutput < Aws::EmptyStructure; end
273
223
 
274
- # @note When making an API call, you may pass GetConnectionInput
275
- # data as a hash:
276
- #
277
- # {
278
- # connection_arn: "ConnectionArn", # required
279
- # }
280
- #
281
224
  # @!attribute [rw] connection_arn
282
225
  # The Amazon Resource Name (ARN) of a connection.
283
226
  # @return [String]
@@ -302,13 +245,6 @@ module Aws::CodeStarconnections
302
245
  include Aws::Structure
303
246
  end
304
247
 
305
- # @note When making an API call, you may pass GetHostInput
306
- # data as a hash:
307
- #
308
- # {
309
- # host_arn: "HostArn", # required
310
- # }
311
- #
312
248
  # @!attribute [rw] host_arn
313
249
  # The Amazon Resource Name (ARN) of the requested host.
314
250
  # @return [String]
@@ -427,16 +363,6 @@ module Aws::CodeStarconnections
427
363
  include Aws::Structure
428
364
  end
429
365
 
430
- # @note When making an API call, you may pass ListConnectionsInput
431
- # data as a hash:
432
- #
433
- # {
434
- # provider_type_filter: "Bitbucket", # accepts Bitbucket, GitHub, GitHubEnterpriseServer
435
- # host_arn_filter: "HostArn",
436
- # max_results: 1,
437
- # next_token: "NextToken",
438
- # }
439
- #
440
366
  # @!attribute [rw] provider_type_filter
441
367
  # Filters the list of connections to those associated with a specified
442
368
  # provider, such as Bitbucket.
@@ -490,14 +416,6 @@ module Aws::CodeStarconnections
490
416
  include Aws::Structure
491
417
  end
492
418
 
493
- # @note When making an API call, you may pass ListHostsInput
494
- # data as a hash:
495
- #
496
- # {
497
- # max_results: 1,
498
- # next_token: "NextToken",
499
- # }
500
- #
501
419
  # @!attribute [rw] max_results
502
420
  # The maximum number of results to return in a single call. To
503
421
  # retrieve the remaining results, make another call with the returned
@@ -538,13 +456,6 @@ module Aws::CodeStarconnections
538
456
  include Aws::Structure
539
457
  end
540
458
 
541
- # @note When making an API call, you may pass ListTagsForResourceInput
542
- # data as a hash:
543
- #
544
- # {
545
- # resource_arn: "AmazonResourceName", # required
546
- # }
547
- #
548
459
  # @!attribute [rw] resource_arn
549
460
  # The Amazon Resource Name (ARN) of the resource for which you want to
550
461
  # get information about tags, if any.
@@ -602,14 +513,6 @@ module Aws::CodeStarconnections
602
513
  #
603
514
  # This tag is available for use by AWS services that support tags.
604
515
  #
605
- # @note When making an API call, you may pass Tag
606
- # data as a hash:
607
- #
608
- # {
609
- # key: "TagKey", # required
610
- # value: "TagValue", # required
611
- # }
612
- #
613
516
  # @!attribute [rw] key
614
517
  # The tag's key.
615
518
  # @return [String]
@@ -627,19 +530,6 @@ module Aws::CodeStarconnections
627
530
  include Aws::Structure
628
531
  end
629
532
 
630
- # @note When making an API call, you may pass TagResourceInput
631
- # data as a hash:
632
- #
633
- # {
634
- # resource_arn: "AmazonResourceName", # required
635
- # tags: [ # required
636
- # {
637
- # key: "TagKey", # required
638
- # value: "TagValue", # required
639
- # },
640
- # ],
641
- # }
642
- #
643
533
  # @!attribute [rw] resource_arn
644
534
  # The Amazon Resource Name (ARN) of the resource to which you want to
645
535
  # add or update tags.
@@ -676,14 +566,6 @@ module Aws::CodeStarconnections
676
566
  include Aws::Structure
677
567
  end
678
568
 
679
- # @note When making an API call, you may pass UntagResourceInput
680
- # data as a hash:
681
- #
682
- # {
683
- # resource_arn: "AmazonResourceName", # required
684
- # tag_keys: ["TagKey"], # required
685
- # }
686
- #
687
569
  # @!attribute [rw] resource_arn
688
570
  # The Amazon Resource Name (ARN) of the resource to remove tags from.
689
571
  # @return [String]
@@ -705,20 +587,6 @@ module Aws::CodeStarconnections
705
587
  #
706
588
  class UntagResourceOutput < Aws::EmptyStructure; end
707
589
 
708
- # @note When making an API call, you may pass UpdateHostInput
709
- # data as a hash:
710
- #
711
- # {
712
- # host_arn: "HostArn", # required
713
- # provider_endpoint: "Url",
714
- # vpc_configuration: {
715
- # vpc_id: "VpcId", # required
716
- # subnet_ids: ["SubnetId"], # required
717
- # security_group_ids: ["SecurityGroupId"], # required
718
- # tls_certificate: "TlsCertificate",
719
- # },
720
- # }
721
- #
722
590
  # @!attribute [rw] host_arn
723
591
  # The Amazon Resource Name (ARN) of the host to be updated.
724
592
  # @return [String]
@@ -749,16 +617,6 @@ module Aws::CodeStarconnections
749
617
 
750
618
  # The VPC configuration provisioned for the host.
751
619
  #
752
- # @note When making an API call, you may pass VpcConfiguration
753
- # data as a hash:
754
- #
755
- # {
756
- # vpc_id: "VpcId", # required
757
- # subnet_ids: ["SubnetId"], # required
758
- # security_group_ids: ["SecurityGroupId"], # required
759
- # tls_certificate: "TlsCertificate",
760
- # }
761
- #
762
620
  # @!attribute [rw] vpc_id
763
621
  # The ID of the Amazon VPC connected to the infrastructure where your
764
622
  # provider type is installed.
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-codestarconnections/customizations'
52
52
  # @!group service
53
53
  module Aws::CodeStarconnections
54
54
 
55
- GEM_VERSION = '1.25.0'
55
+ GEM_VERSION = '1.27.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-codestarconnections
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.25.0
4
+ version: 1.27.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: 2022-10-25 00:00:00.000000000 Z
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.165.0
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.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement