aws-sdk-codestarconnections 1.25.0 → 1.26.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7e9c9e03af83d3efa51dd3fb97e01714e07497377dab5213253fba5891b35c3f
4
- data.tar.gz: 0d132f49600bde6144af6dcad18ee3244d7e06ccd694f1b71479d461d760d39f
3
+ metadata.gz: 55c83ed7ff16838fbc9c8d3a19dd806cbde028b943dbefd206a9c24ff7a128b4
4
+ data.tar.gz: 3b0868b2155cc0beba0b2d9bb32188935542e8aa17e151e286553fb54d9238a2
5
5
  SHA512:
6
- metadata.gz: a6fdff885e84ad9eefb269449068a8e8af293c2b08afaa17c197bfbdd423d3a25a9dabf9761b1f7ae0d56eb7e94e7086f1850d9ec38fe4702f8b250acae9a174
7
- data.tar.gz: ade5de2683d52cd397ae12d02491516b6173c29b3a6d1a2dff36bd6f789bbc3b89a8cf25f297ee87ff9c59d458143a3bee94d6c320b9585dd0fa087e8f7c9e1c
6
+ metadata.gz: 1f9c14839378342626bb043c515abc09485da3883e463e7ed33befbd49c1aa2f411b718cb86e7868dca44dd46ac89ca30c94e5e6e28a21558ea80b6f4a8cf81d
7
+ data.tar.gz: a8e4d887ada17a0057623f701a4c2a0d5659b9e7d055bb5f4ec922dc6933b899bb971778a0d4ef36748392292cb388ce4bf4345c0c12b1c9df11304ecd1c0550
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.26.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.25.0 (2022-10-25)
5
12
  ------------------
6
13
 
@@ -135,4 +142,4 @@ Unreleased Changes
135
142
  1.0.0 (2019-12-19)
136
143
  ------------------
137
144
 
138
- * Feature - Initial release of `aws-sdk-codestarconnections`.
145
+ * Feature - Initial release of `aws-sdk-codestarconnections`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.25.0
1
+ 1.26.0
@@ -884,7 +884,7 @@ module Aws::CodeStarconnections
884
884
  params: params,
885
885
  config: config)
886
886
  context[:gem_name] = 'aws-sdk-codestarconnections'
887
- context[:gem_version] = '1.25.0'
887
+ context[:gem_version] = '1.26.0'
888
888
  Seahorse::Client::Request.new(handlers, context)
889
889
  end
890
890
 
@@ -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.26.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.26.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-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core