aws-sdk-codeconnections 1.0.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 +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-codeconnections/client.rb +1687 -0
- data/lib/aws-sdk-codeconnections/client_api.rb +941 -0
- data/lib/aws-sdk-codeconnections/customizations.rb +0 -0
- data/lib/aws-sdk-codeconnections/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-codeconnections/endpoint_provider.rb +54 -0
- data/lib/aws-sdk-codeconnections/endpoints.rb +394 -0
- data/lib/aws-sdk-codeconnections/errors.rb +310 -0
- data/lib/aws-sdk-codeconnections/plugins/endpoints.rb +124 -0
- data/lib/aws-sdk-codeconnections/resource.rb +26 -0
- data/lib/aws-sdk-codeconnections/types.rb +1856 -0
- data/lib/aws-sdk-codeconnections.rb +57 -0
- data/sig/client.rbs +435 -0
- data/sig/errors.rbs +67 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +553 -0
- data/sig/waiters.rbs +13 -0
- metadata +99 -0
data/sig/types.rbs
ADDED
@@ -0,0 +1,553 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::CodeConnections
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class ConcurrentModificationException
|
17
|
+
attr_accessor message: ::String
|
18
|
+
SENSITIVE: []
|
19
|
+
end
|
20
|
+
|
21
|
+
class ConditionalCheckFailedException
|
22
|
+
attr_accessor message: ::String
|
23
|
+
SENSITIVE: []
|
24
|
+
end
|
25
|
+
|
26
|
+
class ConflictException
|
27
|
+
attr_accessor message: ::String
|
28
|
+
SENSITIVE: []
|
29
|
+
end
|
30
|
+
|
31
|
+
class Connection
|
32
|
+
attr_accessor connection_name: ::String
|
33
|
+
attr_accessor connection_arn: ::String
|
34
|
+
attr_accessor provider_type: ("Bitbucket" | "GitHub" | "GitHubEnterpriseServer" | "GitLab" | "GitLabSelfManaged")
|
35
|
+
attr_accessor owner_account_id: ::String
|
36
|
+
attr_accessor connection_status: ("PENDING" | "AVAILABLE" | "ERROR")
|
37
|
+
attr_accessor host_arn: ::String
|
38
|
+
SENSITIVE: []
|
39
|
+
end
|
40
|
+
|
41
|
+
class CreateConnectionInput
|
42
|
+
attr_accessor provider_type: ("Bitbucket" | "GitHub" | "GitHubEnterpriseServer" | "GitLab" | "GitLabSelfManaged")
|
43
|
+
attr_accessor connection_name: ::String
|
44
|
+
attr_accessor tags: ::Array[Types::Tag]
|
45
|
+
attr_accessor host_arn: ::String
|
46
|
+
SENSITIVE: []
|
47
|
+
end
|
48
|
+
|
49
|
+
class CreateConnectionOutput
|
50
|
+
attr_accessor connection_arn: ::String
|
51
|
+
attr_accessor tags: ::Array[Types::Tag]
|
52
|
+
SENSITIVE: []
|
53
|
+
end
|
54
|
+
|
55
|
+
class CreateHostInput
|
56
|
+
attr_accessor name: ::String
|
57
|
+
attr_accessor provider_type: ("Bitbucket" | "GitHub" | "GitHubEnterpriseServer" | "GitLab" | "GitLabSelfManaged")
|
58
|
+
attr_accessor provider_endpoint: ::String
|
59
|
+
attr_accessor vpc_configuration: Types::VpcConfiguration
|
60
|
+
attr_accessor tags: ::Array[Types::Tag]
|
61
|
+
SENSITIVE: []
|
62
|
+
end
|
63
|
+
|
64
|
+
class CreateHostOutput
|
65
|
+
attr_accessor host_arn: ::String
|
66
|
+
attr_accessor tags: ::Array[Types::Tag]
|
67
|
+
SENSITIVE: []
|
68
|
+
end
|
69
|
+
|
70
|
+
class CreateRepositoryLinkInput
|
71
|
+
attr_accessor connection_arn: ::String
|
72
|
+
attr_accessor owner_id: ::String
|
73
|
+
attr_accessor repository_name: ::String
|
74
|
+
attr_accessor encryption_key_arn: ::String
|
75
|
+
attr_accessor tags: ::Array[Types::Tag]
|
76
|
+
SENSITIVE: []
|
77
|
+
end
|
78
|
+
|
79
|
+
class CreateRepositoryLinkOutput
|
80
|
+
attr_accessor repository_link_info: Types::RepositoryLinkInfo
|
81
|
+
SENSITIVE: []
|
82
|
+
end
|
83
|
+
|
84
|
+
class CreateSyncConfigurationInput
|
85
|
+
attr_accessor branch: ::String
|
86
|
+
attr_accessor config_file: ::String
|
87
|
+
attr_accessor repository_link_id: ::String
|
88
|
+
attr_accessor resource_name: ::String
|
89
|
+
attr_accessor role_arn: ::String
|
90
|
+
attr_accessor sync_type: ("CFN_STACK_SYNC")
|
91
|
+
attr_accessor publish_deployment_status: ("ENABLED" | "DISABLED")
|
92
|
+
attr_accessor trigger_resource_update_on: ("ANY_CHANGE" | "FILE_CHANGE")
|
93
|
+
SENSITIVE: []
|
94
|
+
end
|
95
|
+
|
96
|
+
class CreateSyncConfigurationOutput
|
97
|
+
attr_accessor sync_configuration: Types::SyncConfiguration
|
98
|
+
SENSITIVE: []
|
99
|
+
end
|
100
|
+
|
101
|
+
class DeleteConnectionInput
|
102
|
+
attr_accessor connection_arn: ::String
|
103
|
+
SENSITIVE: []
|
104
|
+
end
|
105
|
+
|
106
|
+
class DeleteConnectionOutput < Aws::EmptyStructure
|
107
|
+
end
|
108
|
+
|
109
|
+
class DeleteHostInput
|
110
|
+
attr_accessor host_arn: ::String
|
111
|
+
SENSITIVE: []
|
112
|
+
end
|
113
|
+
|
114
|
+
class DeleteHostOutput < Aws::EmptyStructure
|
115
|
+
end
|
116
|
+
|
117
|
+
class DeleteRepositoryLinkInput
|
118
|
+
attr_accessor repository_link_id: ::String
|
119
|
+
SENSITIVE: []
|
120
|
+
end
|
121
|
+
|
122
|
+
class DeleteRepositoryLinkOutput < Aws::EmptyStructure
|
123
|
+
end
|
124
|
+
|
125
|
+
class DeleteSyncConfigurationInput
|
126
|
+
attr_accessor sync_type: ("CFN_STACK_SYNC")
|
127
|
+
attr_accessor resource_name: ::String
|
128
|
+
SENSITIVE: []
|
129
|
+
end
|
130
|
+
|
131
|
+
class DeleteSyncConfigurationOutput < Aws::EmptyStructure
|
132
|
+
end
|
133
|
+
|
134
|
+
class GetConnectionInput
|
135
|
+
attr_accessor connection_arn: ::String
|
136
|
+
SENSITIVE: []
|
137
|
+
end
|
138
|
+
|
139
|
+
class GetConnectionOutput
|
140
|
+
attr_accessor connection: Types::Connection
|
141
|
+
SENSITIVE: []
|
142
|
+
end
|
143
|
+
|
144
|
+
class GetHostInput
|
145
|
+
attr_accessor host_arn: ::String
|
146
|
+
SENSITIVE: []
|
147
|
+
end
|
148
|
+
|
149
|
+
class GetHostOutput
|
150
|
+
attr_accessor name: ::String
|
151
|
+
attr_accessor status: ::String
|
152
|
+
attr_accessor provider_type: ("Bitbucket" | "GitHub" | "GitHubEnterpriseServer" | "GitLab" | "GitLabSelfManaged")
|
153
|
+
attr_accessor provider_endpoint: ::String
|
154
|
+
attr_accessor vpc_configuration: Types::VpcConfiguration
|
155
|
+
SENSITIVE: []
|
156
|
+
end
|
157
|
+
|
158
|
+
class GetRepositoryLinkInput
|
159
|
+
attr_accessor repository_link_id: ::String
|
160
|
+
SENSITIVE: []
|
161
|
+
end
|
162
|
+
|
163
|
+
class GetRepositoryLinkOutput
|
164
|
+
attr_accessor repository_link_info: Types::RepositoryLinkInfo
|
165
|
+
SENSITIVE: []
|
166
|
+
end
|
167
|
+
|
168
|
+
class GetRepositorySyncStatusInput
|
169
|
+
attr_accessor branch: ::String
|
170
|
+
attr_accessor repository_link_id: ::String
|
171
|
+
attr_accessor sync_type: ("CFN_STACK_SYNC")
|
172
|
+
SENSITIVE: []
|
173
|
+
end
|
174
|
+
|
175
|
+
class GetRepositorySyncStatusOutput
|
176
|
+
attr_accessor latest_sync: Types::RepositorySyncAttempt
|
177
|
+
SENSITIVE: []
|
178
|
+
end
|
179
|
+
|
180
|
+
class GetResourceSyncStatusInput
|
181
|
+
attr_accessor resource_name: ::String
|
182
|
+
attr_accessor sync_type: ("CFN_STACK_SYNC")
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class GetResourceSyncStatusOutput
|
187
|
+
attr_accessor desired_state: Types::Revision
|
188
|
+
attr_accessor latest_successful_sync: Types::ResourceSyncAttempt
|
189
|
+
attr_accessor latest_sync: Types::ResourceSyncAttempt
|
190
|
+
SENSITIVE: []
|
191
|
+
end
|
192
|
+
|
193
|
+
class GetSyncBlockerSummaryInput
|
194
|
+
attr_accessor sync_type: ("CFN_STACK_SYNC")
|
195
|
+
attr_accessor resource_name: ::String
|
196
|
+
SENSITIVE: []
|
197
|
+
end
|
198
|
+
|
199
|
+
class GetSyncBlockerSummaryOutput
|
200
|
+
attr_accessor sync_blocker_summary: Types::SyncBlockerSummary
|
201
|
+
SENSITIVE: []
|
202
|
+
end
|
203
|
+
|
204
|
+
class GetSyncConfigurationInput
|
205
|
+
attr_accessor sync_type: ("CFN_STACK_SYNC")
|
206
|
+
attr_accessor resource_name: ::String
|
207
|
+
SENSITIVE: []
|
208
|
+
end
|
209
|
+
|
210
|
+
class GetSyncConfigurationOutput
|
211
|
+
attr_accessor sync_configuration: Types::SyncConfiguration
|
212
|
+
SENSITIVE: []
|
213
|
+
end
|
214
|
+
|
215
|
+
class Host
|
216
|
+
attr_accessor name: ::String
|
217
|
+
attr_accessor host_arn: ::String
|
218
|
+
attr_accessor provider_type: ("Bitbucket" | "GitHub" | "GitHubEnterpriseServer" | "GitLab" | "GitLabSelfManaged")
|
219
|
+
attr_accessor provider_endpoint: ::String
|
220
|
+
attr_accessor vpc_configuration: Types::VpcConfiguration
|
221
|
+
attr_accessor status: ::String
|
222
|
+
attr_accessor status_message: ::String
|
223
|
+
SENSITIVE: []
|
224
|
+
end
|
225
|
+
|
226
|
+
class InternalServerException
|
227
|
+
attr_accessor message: ::String
|
228
|
+
SENSITIVE: []
|
229
|
+
end
|
230
|
+
|
231
|
+
class InvalidInputException
|
232
|
+
attr_accessor message: ::String
|
233
|
+
SENSITIVE: []
|
234
|
+
end
|
235
|
+
|
236
|
+
class LimitExceededException
|
237
|
+
attr_accessor message: ::String
|
238
|
+
SENSITIVE: []
|
239
|
+
end
|
240
|
+
|
241
|
+
class ListConnectionsInput
|
242
|
+
attr_accessor provider_type_filter: ("Bitbucket" | "GitHub" | "GitHubEnterpriseServer" | "GitLab" | "GitLabSelfManaged")
|
243
|
+
attr_accessor host_arn_filter: ::String
|
244
|
+
attr_accessor max_results: ::Integer
|
245
|
+
attr_accessor next_token: ::String
|
246
|
+
SENSITIVE: []
|
247
|
+
end
|
248
|
+
|
249
|
+
class ListConnectionsOutput
|
250
|
+
attr_accessor connections: ::Array[Types::Connection]
|
251
|
+
attr_accessor next_token: ::String
|
252
|
+
SENSITIVE: []
|
253
|
+
end
|
254
|
+
|
255
|
+
class ListHostsInput
|
256
|
+
attr_accessor max_results: ::Integer
|
257
|
+
attr_accessor next_token: ::String
|
258
|
+
SENSITIVE: []
|
259
|
+
end
|
260
|
+
|
261
|
+
class ListHostsOutput
|
262
|
+
attr_accessor hosts: ::Array[Types::Host]
|
263
|
+
attr_accessor next_token: ::String
|
264
|
+
SENSITIVE: []
|
265
|
+
end
|
266
|
+
|
267
|
+
class ListRepositoryLinksInput
|
268
|
+
attr_accessor max_results: ::Integer
|
269
|
+
attr_accessor next_token: ::String
|
270
|
+
SENSITIVE: []
|
271
|
+
end
|
272
|
+
|
273
|
+
class ListRepositoryLinksOutput
|
274
|
+
attr_accessor repository_links: ::Array[Types::RepositoryLinkInfo]
|
275
|
+
attr_accessor next_token: ::String
|
276
|
+
SENSITIVE: []
|
277
|
+
end
|
278
|
+
|
279
|
+
class ListRepositorySyncDefinitionsInput
|
280
|
+
attr_accessor repository_link_id: ::String
|
281
|
+
attr_accessor sync_type: ("CFN_STACK_SYNC")
|
282
|
+
SENSITIVE: []
|
283
|
+
end
|
284
|
+
|
285
|
+
class ListRepositorySyncDefinitionsOutput
|
286
|
+
attr_accessor repository_sync_definitions: ::Array[Types::RepositorySyncDefinition]
|
287
|
+
attr_accessor next_token: ::String
|
288
|
+
SENSITIVE: []
|
289
|
+
end
|
290
|
+
|
291
|
+
class ListSyncConfigurationsInput
|
292
|
+
attr_accessor max_results: ::Integer
|
293
|
+
attr_accessor next_token: ::String
|
294
|
+
attr_accessor repository_link_id: ::String
|
295
|
+
attr_accessor sync_type: ("CFN_STACK_SYNC")
|
296
|
+
SENSITIVE: []
|
297
|
+
end
|
298
|
+
|
299
|
+
class ListSyncConfigurationsOutput
|
300
|
+
attr_accessor sync_configurations: ::Array[Types::SyncConfiguration]
|
301
|
+
attr_accessor next_token: ::String
|
302
|
+
SENSITIVE: []
|
303
|
+
end
|
304
|
+
|
305
|
+
class ListTagsForResourceInput
|
306
|
+
attr_accessor resource_arn: ::String
|
307
|
+
SENSITIVE: []
|
308
|
+
end
|
309
|
+
|
310
|
+
class ListTagsForResourceOutput
|
311
|
+
attr_accessor tags: ::Array[Types::Tag]
|
312
|
+
SENSITIVE: []
|
313
|
+
end
|
314
|
+
|
315
|
+
class RepositoryLinkInfo
|
316
|
+
attr_accessor connection_arn: ::String
|
317
|
+
attr_accessor encryption_key_arn: ::String
|
318
|
+
attr_accessor owner_id: ::String
|
319
|
+
attr_accessor provider_type: ("Bitbucket" | "GitHub" | "GitHubEnterpriseServer" | "GitLab" | "GitLabSelfManaged")
|
320
|
+
attr_accessor repository_link_arn: ::String
|
321
|
+
attr_accessor repository_link_id: ::String
|
322
|
+
attr_accessor repository_name: ::String
|
323
|
+
SENSITIVE: []
|
324
|
+
end
|
325
|
+
|
326
|
+
class RepositorySyncAttempt
|
327
|
+
attr_accessor started_at: ::Time
|
328
|
+
attr_accessor status: ("FAILED" | "INITIATED" | "IN_PROGRESS" | "SUCCEEDED" | "QUEUED")
|
329
|
+
attr_accessor events: ::Array[Types::RepositorySyncEvent]
|
330
|
+
SENSITIVE: []
|
331
|
+
end
|
332
|
+
|
333
|
+
class RepositorySyncDefinition
|
334
|
+
attr_accessor branch: ::String
|
335
|
+
attr_accessor directory: ::String
|
336
|
+
attr_accessor parent: ::String
|
337
|
+
attr_accessor target: ::String
|
338
|
+
SENSITIVE: []
|
339
|
+
end
|
340
|
+
|
341
|
+
class RepositorySyncEvent
|
342
|
+
attr_accessor event: ::String
|
343
|
+
attr_accessor external_id: ::String
|
344
|
+
attr_accessor time: ::Time
|
345
|
+
attr_accessor type: ::String
|
346
|
+
SENSITIVE: []
|
347
|
+
end
|
348
|
+
|
349
|
+
class ResourceAlreadyExistsException
|
350
|
+
attr_accessor message: ::String
|
351
|
+
SENSITIVE: []
|
352
|
+
end
|
353
|
+
|
354
|
+
class ResourceNotFoundException
|
355
|
+
attr_accessor message: ::String
|
356
|
+
SENSITIVE: []
|
357
|
+
end
|
358
|
+
|
359
|
+
class ResourceSyncAttempt
|
360
|
+
attr_accessor events: ::Array[Types::ResourceSyncEvent]
|
361
|
+
attr_accessor initial_revision: Types::Revision
|
362
|
+
attr_accessor started_at: ::Time
|
363
|
+
attr_accessor status: ("FAILED" | "INITIATED" | "IN_PROGRESS" | "SUCCEEDED")
|
364
|
+
attr_accessor target_revision: Types::Revision
|
365
|
+
attr_accessor target: ::String
|
366
|
+
SENSITIVE: []
|
367
|
+
end
|
368
|
+
|
369
|
+
class ResourceSyncEvent
|
370
|
+
attr_accessor event: ::String
|
371
|
+
attr_accessor external_id: ::String
|
372
|
+
attr_accessor time: ::Time
|
373
|
+
attr_accessor type: ::String
|
374
|
+
SENSITIVE: []
|
375
|
+
end
|
376
|
+
|
377
|
+
class ResourceUnavailableException
|
378
|
+
attr_accessor message: ::String
|
379
|
+
SENSITIVE: []
|
380
|
+
end
|
381
|
+
|
382
|
+
class RetryLatestCommitFailedException
|
383
|
+
attr_accessor message: ::String
|
384
|
+
SENSITIVE: []
|
385
|
+
end
|
386
|
+
|
387
|
+
class Revision
|
388
|
+
attr_accessor branch: ::String
|
389
|
+
attr_accessor directory: ::String
|
390
|
+
attr_accessor owner_id: ::String
|
391
|
+
attr_accessor repository_name: ::String
|
392
|
+
attr_accessor provider_type: ("Bitbucket" | "GitHub" | "GitHubEnterpriseServer" | "GitLab" | "GitLabSelfManaged")
|
393
|
+
attr_accessor sha: ::String
|
394
|
+
SENSITIVE: []
|
395
|
+
end
|
396
|
+
|
397
|
+
class SyncBlocker
|
398
|
+
attr_accessor id: ::String
|
399
|
+
attr_accessor type: ("AUTOMATED")
|
400
|
+
attr_accessor status: ("ACTIVE" | "RESOLVED")
|
401
|
+
attr_accessor created_reason: ::String
|
402
|
+
attr_accessor created_at: ::Time
|
403
|
+
attr_accessor contexts: ::Array[Types::SyncBlockerContext]
|
404
|
+
attr_accessor resolved_reason: ::String
|
405
|
+
attr_accessor resolved_at: ::Time
|
406
|
+
SENSITIVE: []
|
407
|
+
end
|
408
|
+
|
409
|
+
class SyncBlockerContext
|
410
|
+
attr_accessor key: ::String
|
411
|
+
attr_accessor value: ::String
|
412
|
+
SENSITIVE: []
|
413
|
+
end
|
414
|
+
|
415
|
+
class SyncBlockerDoesNotExistException
|
416
|
+
attr_accessor message: ::String
|
417
|
+
SENSITIVE: []
|
418
|
+
end
|
419
|
+
|
420
|
+
class SyncBlockerSummary
|
421
|
+
attr_accessor resource_name: ::String
|
422
|
+
attr_accessor parent_resource_name: ::String
|
423
|
+
attr_accessor latest_blockers: ::Array[Types::SyncBlocker]
|
424
|
+
SENSITIVE: []
|
425
|
+
end
|
426
|
+
|
427
|
+
class SyncConfiguration
|
428
|
+
attr_accessor branch: ::String
|
429
|
+
attr_accessor config_file: ::String
|
430
|
+
attr_accessor owner_id: ::String
|
431
|
+
attr_accessor provider_type: ("Bitbucket" | "GitHub" | "GitHubEnterpriseServer" | "GitLab" | "GitLabSelfManaged")
|
432
|
+
attr_accessor repository_link_id: ::String
|
433
|
+
attr_accessor repository_name: ::String
|
434
|
+
attr_accessor resource_name: ::String
|
435
|
+
attr_accessor role_arn: ::String
|
436
|
+
attr_accessor sync_type: ("CFN_STACK_SYNC")
|
437
|
+
attr_accessor publish_deployment_status: ("ENABLED" | "DISABLED")
|
438
|
+
attr_accessor trigger_resource_update_on: ("ANY_CHANGE" | "FILE_CHANGE")
|
439
|
+
SENSITIVE: []
|
440
|
+
end
|
441
|
+
|
442
|
+
class SyncConfigurationStillExistsException
|
443
|
+
attr_accessor message: ::String
|
444
|
+
SENSITIVE: []
|
445
|
+
end
|
446
|
+
|
447
|
+
class Tag
|
448
|
+
attr_accessor key: ::String
|
449
|
+
attr_accessor value: ::String
|
450
|
+
SENSITIVE: []
|
451
|
+
end
|
452
|
+
|
453
|
+
class TagResourceInput
|
454
|
+
attr_accessor resource_arn: ::String
|
455
|
+
attr_accessor tags: ::Array[Types::Tag]
|
456
|
+
SENSITIVE: []
|
457
|
+
end
|
458
|
+
|
459
|
+
class TagResourceOutput < Aws::EmptyStructure
|
460
|
+
end
|
461
|
+
|
462
|
+
class ThrottlingException
|
463
|
+
attr_accessor message: ::String
|
464
|
+
SENSITIVE: []
|
465
|
+
end
|
466
|
+
|
467
|
+
class UnsupportedOperationException
|
468
|
+
attr_accessor message: ::String
|
469
|
+
SENSITIVE: []
|
470
|
+
end
|
471
|
+
|
472
|
+
class UnsupportedProviderTypeException
|
473
|
+
attr_accessor message: ::String
|
474
|
+
SENSITIVE: []
|
475
|
+
end
|
476
|
+
|
477
|
+
class UntagResourceInput
|
478
|
+
attr_accessor resource_arn: ::String
|
479
|
+
attr_accessor tag_keys: ::Array[::String]
|
480
|
+
SENSITIVE: []
|
481
|
+
end
|
482
|
+
|
483
|
+
class UntagResourceOutput < Aws::EmptyStructure
|
484
|
+
end
|
485
|
+
|
486
|
+
class UpdateHostInput
|
487
|
+
attr_accessor host_arn: ::String
|
488
|
+
attr_accessor provider_endpoint: ::String
|
489
|
+
attr_accessor vpc_configuration: Types::VpcConfiguration
|
490
|
+
SENSITIVE: []
|
491
|
+
end
|
492
|
+
|
493
|
+
class UpdateHostOutput < Aws::EmptyStructure
|
494
|
+
end
|
495
|
+
|
496
|
+
class UpdateOutOfSyncException
|
497
|
+
attr_accessor message: ::String
|
498
|
+
SENSITIVE: []
|
499
|
+
end
|
500
|
+
|
501
|
+
class UpdateRepositoryLinkInput
|
502
|
+
attr_accessor connection_arn: ::String
|
503
|
+
attr_accessor encryption_key_arn: ::String
|
504
|
+
attr_accessor repository_link_id: ::String
|
505
|
+
SENSITIVE: []
|
506
|
+
end
|
507
|
+
|
508
|
+
class UpdateRepositoryLinkOutput
|
509
|
+
attr_accessor repository_link_info: Types::RepositoryLinkInfo
|
510
|
+
SENSITIVE: []
|
511
|
+
end
|
512
|
+
|
513
|
+
class UpdateSyncBlockerInput
|
514
|
+
attr_accessor id: ::String
|
515
|
+
attr_accessor sync_type: ("CFN_STACK_SYNC")
|
516
|
+
attr_accessor resource_name: ::String
|
517
|
+
attr_accessor resolved_reason: ::String
|
518
|
+
SENSITIVE: []
|
519
|
+
end
|
520
|
+
|
521
|
+
class UpdateSyncBlockerOutput
|
522
|
+
attr_accessor resource_name: ::String
|
523
|
+
attr_accessor parent_resource_name: ::String
|
524
|
+
attr_accessor sync_blocker: Types::SyncBlocker
|
525
|
+
SENSITIVE: []
|
526
|
+
end
|
527
|
+
|
528
|
+
class UpdateSyncConfigurationInput
|
529
|
+
attr_accessor branch: ::String
|
530
|
+
attr_accessor config_file: ::String
|
531
|
+
attr_accessor repository_link_id: ::String
|
532
|
+
attr_accessor resource_name: ::String
|
533
|
+
attr_accessor role_arn: ::String
|
534
|
+
attr_accessor sync_type: ("CFN_STACK_SYNC")
|
535
|
+
attr_accessor publish_deployment_status: ("ENABLED" | "DISABLED")
|
536
|
+
attr_accessor trigger_resource_update_on: ("ANY_CHANGE" | "FILE_CHANGE")
|
537
|
+
SENSITIVE: []
|
538
|
+
end
|
539
|
+
|
540
|
+
class UpdateSyncConfigurationOutput
|
541
|
+
attr_accessor sync_configuration: Types::SyncConfiguration
|
542
|
+
SENSITIVE: []
|
543
|
+
end
|
544
|
+
|
545
|
+
class VpcConfiguration
|
546
|
+
attr_accessor vpc_id: ::String
|
547
|
+
attr_accessor subnet_ids: ::Array[::String]
|
548
|
+
attr_accessor security_group_ids: ::Array[::String]
|
549
|
+
attr_accessor tls_certificate: ::String
|
550
|
+
SENSITIVE: []
|
551
|
+
end
|
552
|
+
end
|
553
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module CodeConnections
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: aws-sdk-codeconnections
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Amazon Web Services
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-03-29 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: aws-sdk-core
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 3.191.0
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '3'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 3.191.0
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: aws-sigv4
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '1.1'
|
40
|
+
type: :runtime
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '1.1'
|
47
|
+
description: Official AWS Ruby gem for AWS CodeConnections. This gem is part of the
|
48
|
+
AWS SDK for Ruby.
|
49
|
+
email:
|
50
|
+
- aws-dr-rubygems@amazon.com
|
51
|
+
executables: []
|
52
|
+
extensions: []
|
53
|
+
extra_rdoc_files: []
|
54
|
+
files:
|
55
|
+
- CHANGELOG.md
|
56
|
+
- LICENSE.txt
|
57
|
+
- VERSION
|
58
|
+
- lib/aws-sdk-codeconnections.rb
|
59
|
+
- lib/aws-sdk-codeconnections/client.rb
|
60
|
+
- lib/aws-sdk-codeconnections/client_api.rb
|
61
|
+
- lib/aws-sdk-codeconnections/customizations.rb
|
62
|
+
- lib/aws-sdk-codeconnections/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-codeconnections/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-codeconnections/endpoints.rb
|
65
|
+
- lib/aws-sdk-codeconnections/errors.rb
|
66
|
+
- lib/aws-sdk-codeconnections/plugins/endpoints.rb
|
67
|
+
- lib/aws-sdk-codeconnections/resource.rb
|
68
|
+
- lib/aws-sdk-codeconnections/types.rb
|
69
|
+
- sig/client.rbs
|
70
|
+
- sig/errors.rbs
|
71
|
+
- sig/resource.rbs
|
72
|
+
- sig/types.rbs
|
73
|
+
- sig/waiters.rbs
|
74
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
75
|
+
licenses:
|
76
|
+
- Apache-2.0
|
77
|
+
metadata:
|
78
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-codeconnections
|
79
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-codeconnections/CHANGELOG.md
|
80
|
+
post_install_message:
|
81
|
+
rdoc_options: []
|
82
|
+
require_paths:
|
83
|
+
- lib
|
84
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '2.5'
|
89
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
90
|
+
requirements:
|
91
|
+
- - ">="
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
requirements: []
|
95
|
+
rubygems_version: 3.4.10
|
96
|
+
signing_key:
|
97
|
+
specification_version: 4
|
98
|
+
summary: AWS SDK for Ruby - AWS CodeConnections
|
99
|
+
test_files: []
|