aws-sdk-codeartifact 1.37.0 → 1.39.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/types.rbs ADDED
@@ -0,0 +1,1016 @@
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::CodeArtifact
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class AssetSummary
17
+ attr_accessor name: ::String
18
+ attr_accessor size: ::Integer
19
+ attr_accessor hashes: ::Hash[("MD5" | "SHA-1" | "SHA-256" | "SHA-512"), ::String]
20
+ SENSITIVE: []
21
+ end
22
+
23
+ class AssociateExternalConnectionRequest
24
+ attr_accessor domain: ::String
25
+ attr_accessor domain_owner: ::String
26
+ attr_accessor repository: ::String
27
+ attr_accessor external_connection: ::String
28
+ SENSITIVE: []
29
+ end
30
+
31
+ class AssociateExternalConnectionResult
32
+ attr_accessor repository: Types::RepositoryDescription
33
+ SENSITIVE: []
34
+ end
35
+
36
+ class AssociatedPackage
37
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
38
+ attr_accessor namespace: ::String
39
+ attr_accessor package: ::String
40
+ attr_accessor association_type: ("STRONG" | "WEAK")
41
+ SENSITIVE: []
42
+ end
43
+
44
+ class ConflictException
45
+ attr_accessor message: ::String
46
+ attr_accessor resource_id: ::String
47
+ attr_accessor resource_type: ("domain" | "repository" | "package" | "package-version" | "asset")
48
+ SENSITIVE: []
49
+ end
50
+
51
+ class CopyPackageVersionsRequest
52
+ attr_accessor domain: ::String
53
+ attr_accessor domain_owner: ::String
54
+ attr_accessor source_repository: ::String
55
+ attr_accessor destination_repository: ::String
56
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
57
+ attr_accessor namespace: ::String
58
+ attr_accessor package: ::String
59
+ attr_accessor versions: ::Array[::String]
60
+ attr_accessor version_revisions: ::Hash[::String, ::String]
61
+ attr_accessor allow_overwrite: bool
62
+ attr_accessor include_from_upstream: bool
63
+ SENSITIVE: []
64
+ end
65
+
66
+ class CopyPackageVersionsResult
67
+ attr_accessor successful_versions: ::Hash[::String, Types::SuccessfulPackageVersionInfo]
68
+ attr_accessor failed_versions: ::Hash[::String, Types::PackageVersionError]
69
+ SENSITIVE: []
70
+ end
71
+
72
+ class CreateDomainRequest
73
+ attr_accessor domain: ::String
74
+ attr_accessor encryption_key: ::String
75
+ attr_accessor tags: ::Array[Types::Tag]
76
+ SENSITIVE: []
77
+ end
78
+
79
+ class CreateDomainResult
80
+ attr_accessor domain: Types::DomainDescription
81
+ SENSITIVE: []
82
+ end
83
+
84
+ class CreatePackageGroupRequest
85
+ attr_accessor domain: ::String
86
+ attr_accessor domain_owner: ::String
87
+ attr_accessor package_group: ::String
88
+ attr_accessor contact_info: ::String
89
+ attr_accessor description: ::String
90
+ attr_accessor tags: ::Array[Types::Tag]
91
+ SENSITIVE: []
92
+ end
93
+
94
+ class CreatePackageGroupResult
95
+ attr_accessor package_group: Types::PackageGroupDescription
96
+ SENSITIVE: []
97
+ end
98
+
99
+ class CreateRepositoryRequest
100
+ attr_accessor domain: ::String
101
+ attr_accessor domain_owner: ::String
102
+ attr_accessor repository: ::String
103
+ attr_accessor description: ::String
104
+ attr_accessor upstreams: ::Array[Types::UpstreamRepository]
105
+ attr_accessor tags: ::Array[Types::Tag]
106
+ SENSITIVE: []
107
+ end
108
+
109
+ class CreateRepositoryResult
110
+ attr_accessor repository: Types::RepositoryDescription
111
+ SENSITIVE: []
112
+ end
113
+
114
+ class DeleteDomainPermissionsPolicyRequest
115
+ attr_accessor domain: ::String
116
+ attr_accessor domain_owner: ::String
117
+ attr_accessor policy_revision: ::String
118
+ SENSITIVE: []
119
+ end
120
+
121
+ class DeleteDomainPermissionsPolicyResult
122
+ attr_accessor policy: Types::ResourcePolicy
123
+ SENSITIVE: []
124
+ end
125
+
126
+ class DeleteDomainRequest
127
+ attr_accessor domain: ::String
128
+ attr_accessor domain_owner: ::String
129
+ SENSITIVE: []
130
+ end
131
+
132
+ class DeleteDomainResult
133
+ attr_accessor domain: Types::DomainDescription
134
+ SENSITIVE: []
135
+ end
136
+
137
+ class DeletePackageGroupRequest
138
+ attr_accessor domain: ::String
139
+ attr_accessor domain_owner: ::String
140
+ attr_accessor package_group: ::String
141
+ SENSITIVE: []
142
+ end
143
+
144
+ class DeletePackageGroupResult
145
+ attr_accessor package_group: Types::PackageGroupDescription
146
+ SENSITIVE: []
147
+ end
148
+
149
+ class DeletePackageRequest
150
+ attr_accessor domain: ::String
151
+ attr_accessor domain_owner: ::String
152
+ attr_accessor repository: ::String
153
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
154
+ attr_accessor namespace: ::String
155
+ attr_accessor package: ::String
156
+ SENSITIVE: []
157
+ end
158
+
159
+ class DeletePackageResult
160
+ attr_accessor deleted_package: Types::PackageSummary
161
+ SENSITIVE: []
162
+ end
163
+
164
+ class DeletePackageVersionsRequest
165
+ attr_accessor domain: ::String
166
+ attr_accessor domain_owner: ::String
167
+ attr_accessor repository: ::String
168
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
169
+ attr_accessor namespace: ::String
170
+ attr_accessor package: ::String
171
+ attr_accessor versions: ::Array[::String]
172
+ attr_accessor expected_status: ("Published" | "Unfinished" | "Unlisted" | "Archived" | "Disposed" | "Deleted")
173
+ SENSITIVE: []
174
+ end
175
+
176
+ class DeletePackageVersionsResult
177
+ attr_accessor successful_versions: ::Hash[::String, Types::SuccessfulPackageVersionInfo]
178
+ attr_accessor failed_versions: ::Hash[::String, Types::PackageVersionError]
179
+ SENSITIVE: []
180
+ end
181
+
182
+ class DeleteRepositoryPermissionsPolicyRequest
183
+ attr_accessor domain: ::String
184
+ attr_accessor domain_owner: ::String
185
+ attr_accessor repository: ::String
186
+ attr_accessor policy_revision: ::String
187
+ SENSITIVE: []
188
+ end
189
+
190
+ class DeleteRepositoryPermissionsPolicyResult
191
+ attr_accessor policy: Types::ResourcePolicy
192
+ SENSITIVE: []
193
+ end
194
+
195
+ class DeleteRepositoryRequest
196
+ attr_accessor domain: ::String
197
+ attr_accessor domain_owner: ::String
198
+ attr_accessor repository: ::String
199
+ SENSITIVE: []
200
+ end
201
+
202
+ class DeleteRepositoryResult
203
+ attr_accessor repository: Types::RepositoryDescription
204
+ SENSITIVE: []
205
+ end
206
+
207
+ class DescribeDomainRequest
208
+ attr_accessor domain: ::String
209
+ attr_accessor domain_owner: ::String
210
+ SENSITIVE: []
211
+ end
212
+
213
+ class DescribeDomainResult
214
+ attr_accessor domain: Types::DomainDescription
215
+ SENSITIVE: []
216
+ end
217
+
218
+ class DescribePackageGroupRequest
219
+ attr_accessor domain: ::String
220
+ attr_accessor domain_owner: ::String
221
+ attr_accessor package_group: ::String
222
+ SENSITIVE: []
223
+ end
224
+
225
+ class DescribePackageGroupResult
226
+ attr_accessor package_group: Types::PackageGroupDescription
227
+ SENSITIVE: []
228
+ end
229
+
230
+ class DescribePackageRequest
231
+ attr_accessor domain: ::String
232
+ attr_accessor domain_owner: ::String
233
+ attr_accessor repository: ::String
234
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
235
+ attr_accessor namespace: ::String
236
+ attr_accessor package: ::String
237
+ SENSITIVE: []
238
+ end
239
+
240
+ class DescribePackageResult
241
+ attr_accessor package: Types::PackageDescription
242
+ SENSITIVE: []
243
+ end
244
+
245
+ class DescribePackageVersionRequest
246
+ attr_accessor domain: ::String
247
+ attr_accessor domain_owner: ::String
248
+ attr_accessor repository: ::String
249
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
250
+ attr_accessor namespace: ::String
251
+ attr_accessor package: ::String
252
+ attr_accessor package_version: ::String
253
+ SENSITIVE: []
254
+ end
255
+
256
+ class DescribePackageVersionResult
257
+ attr_accessor package_version: Types::PackageVersionDescription
258
+ SENSITIVE: []
259
+ end
260
+
261
+ class DescribeRepositoryRequest
262
+ attr_accessor domain: ::String
263
+ attr_accessor domain_owner: ::String
264
+ attr_accessor repository: ::String
265
+ SENSITIVE: []
266
+ end
267
+
268
+ class DescribeRepositoryResult
269
+ attr_accessor repository: Types::RepositoryDescription
270
+ SENSITIVE: []
271
+ end
272
+
273
+ class DisassociateExternalConnectionRequest
274
+ attr_accessor domain: ::String
275
+ attr_accessor domain_owner: ::String
276
+ attr_accessor repository: ::String
277
+ attr_accessor external_connection: ::String
278
+ SENSITIVE: []
279
+ end
280
+
281
+ class DisassociateExternalConnectionResult
282
+ attr_accessor repository: Types::RepositoryDescription
283
+ SENSITIVE: []
284
+ end
285
+
286
+ class DisposePackageVersionsRequest
287
+ attr_accessor domain: ::String
288
+ attr_accessor domain_owner: ::String
289
+ attr_accessor repository: ::String
290
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
291
+ attr_accessor namespace: ::String
292
+ attr_accessor package: ::String
293
+ attr_accessor versions: ::Array[::String]
294
+ attr_accessor version_revisions: ::Hash[::String, ::String]
295
+ attr_accessor expected_status: ("Published" | "Unfinished" | "Unlisted" | "Archived" | "Disposed" | "Deleted")
296
+ SENSITIVE: []
297
+ end
298
+
299
+ class DisposePackageVersionsResult
300
+ attr_accessor successful_versions: ::Hash[::String, Types::SuccessfulPackageVersionInfo]
301
+ attr_accessor failed_versions: ::Hash[::String, Types::PackageVersionError]
302
+ SENSITIVE: []
303
+ end
304
+
305
+ class DomainDescription
306
+ attr_accessor name: ::String
307
+ attr_accessor owner: ::String
308
+ attr_accessor arn: ::String
309
+ attr_accessor status: ("Active" | "Deleted")
310
+ attr_accessor created_time: ::Time
311
+ attr_accessor encryption_key: ::String
312
+ attr_accessor repository_count: ::Integer
313
+ attr_accessor asset_size_bytes: ::Integer
314
+ attr_accessor s3_bucket_arn: ::String
315
+ SENSITIVE: []
316
+ end
317
+
318
+ class DomainEntryPoint
319
+ attr_accessor repository_name: ::String
320
+ attr_accessor external_connection_name: ::String
321
+ SENSITIVE: []
322
+ end
323
+
324
+ class DomainSummary
325
+ attr_accessor name: ::String
326
+ attr_accessor owner: ::String
327
+ attr_accessor arn: ::String
328
+ attr_accessor status: ("Active" | "Deleted")
329
+ attr_accessor created_time: ::Time
330
+ attr_accessor encryption_key: ::String
331
+ SENSITIVE: []
332
+ end
333
+
334
+ class GetAssociatedPackageGroupRequest
335
+ attr_accessor domain: ::String
336
+ attr_accessor domain_owner: ::String
337
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
338
+ attr_accessor namespace: ::String
339
+ attr_accessor package: ::String
340
+ SENSITIVE: []
341
+ end
342
+
343
+ class GetAssociatedPackageGroupResult
344
+ attr_accessor package_group: Types::PackageGroupDescription
345
+ attr_accessor association_type: ("STRONG" | "WEAK")
346
+ SENSITIVE: []
347
+ end
348
+
349
+ class GetAuthorizationTokenRequest
350
+ attr_accessor domain: ::String
351
+ attr_accessor domain_owner: ::String
352
+ attr_accessor duration_seconds: ::Integer
353
+ SENSITIVE: []
354
+ end
355
+
356
+ class GetAuthorizationTokenResult
357
+ attr_accessor authorization_token: ::String
358
+ attr_accessor expiration: ::Time
359
+ SENSITIVE: []
360
+ end
361
+
362
+ class GetDomainPermissionsPolicyRequest
363
+ attr_accessor domain: ::String
364
+ attr_accessor domain_owner: ::String
365
+ SENSITIVE: []
366
+ end
367
+
368
+ class GetDomainPermissionsPolicyResult
369
+ attr_accessor policy: Types::ResourcePolicy
370
+ SENSITIVE: []
371
+ end
372
+
373
+ class GetPackageVersionAssetRequest
374
+ attr_accessor domain: ::String
375
+ attr_accessor domain_owner: ::String
376
+ attr_accessor repository: ::String
377
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
378
+ attr_accessor namespace: ::String
379
+ attr_accessor package: ::String
380
+ attr_accessor package_version: ::String
381
+ attr_accessor asset: ::String
382
+ attr_accessor package_version_revision: ::String
383
+ SENSITIVE: []
384
+ end
385
+
386
+ class GetPackageVersionAssetResult
387
+ attr_accessor asset: ::IO
388
+ attr_accessor asset_name: ::String
389
+ attr_accessor package_version: ::String
390
+ attr_accessor package_version_revision: ::String
391
+ SENSITIVE: []
392
+ end
393
+
394
+ class GetPackageVersionReadmeRequest
395
+ attr_accessor domain: ::String
396
+ attr_accessor domain_owner: ::String
397
+ attr_accessor repository: ::String
398
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
399
+ attr_accessor namespace: ::String
400
+ attr_accessor package: ::String
401
+ attr_accessor package_version: ::String
402
+ SENSITIVE: []
403
+ end
404
+
405
+ class GetPackageVersionReadmeResult
406
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
407
+ attr_accessor namespace: ::String
408
+ attr_accessor package: ::String
409
+ attr_accessor version: ::String
410
+ attr_accessor version_revision: ::String
411
+ attr_accessor readme: ::String
412
+ SENSITIVE: []
413
+ end
414
+
415
+ class GetRepositoryEndpointRequest
416
+ attr_accessor domain: ::String
417
+ attr_accessor domain_owner: ::String
418
+ attr_accessor repository: ::String
419
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
420
+ SENSITIVE: []
421
+ end
422
+
423
+ class GetRepositoryEndpointResult
424
+ attr_accessor repository_endpoint: ::String
425
+ SENSITIVE: []
426
+ end
427
+
428
+ class GetRepositoryPermissionsPolicyRequest
429
+ attr_accessor domain: ::String
430
+ attr_accessor domain_owner: ::String
431
+ attr_accessor repository: ::String
432
+ SENSITIVE: []
433
+ end
434
+
435
+ class GetRepositoryPermissionsPolicyResult
436
+ attr_accessor policy: Types::ResourcePolicy
437
+ SENSITIVE: []
438
+ end
439
+
440
+ class InternalServerException
441
+ attr_accessor message: ::String
442
+ SENSITIVE: []
443
+ end
444
+
445
+ class LicenseInfo
446
+ attr_accessor name: ::String
447
+ attr_accessor url: ::String
448
+ SENSITIVE: []
449
+ end
450
+
451
+ class ListAllowedRepositoriesForGroupRequest
452
+ attr_accessor domain: ::String
453
+ attr_accessor domain_owner: ::String
454
+ attr_accessor package_group: ::String
455
+ attr_accessor origin_restriction_type: ("EXTERNAL_UPSTREAM" | "INTERNAL_UPSTREAM" | "PUBLISH")
456
+ attr_accessor max_results: ::Integer
457
+ attr_accessor next_token: ::String
458
+ SENSITIVE: []
459
+ end
460
+
461
+ class ListAllowedRepositoriesForGroupResult
462
+ attr_accessor allowed_repositories: ::Array[::String]
463
+ attr_accessor next_token: ::String
464
+ SENSITIVE: []
465
+ end
466
+
467
+ class ListAssociatedPackagesRequest
468
+ attr_accessor domain: ::String
469
+ attr_accessor domain_owner: ::String
470
+ attr_accessor package_group: ::String
471
+ attr_accessor max_results: ::Integer
472
+ attr_accessor next_token: ::String
473
+ attr_accessor preview: bool
474
+ SENSITIVE: []
475
+ end
476
+
477
+ class ListAssociatedPackagesResult
478
+ attr_accessor packages: ::Array[Types::AssociatedPackage]
479
+ attr_accessor next_token: ::String
480
+ SENSITIVE: []
481
+ end
482
+
483
+ class ListDomainsRequest
484
+ attr_accessor max_results: ::Integer
485
+ attr_accessor next_token: ::String
486
+ SENSITIVE: []
487
+ end
488
+
489
+ class ListDomainsResult
490
+ attr_accessor domains: ::Array[Types::DomainSummary]
491
+ attr_accessor next_token: ::String
492
+ SENSITIVE: []
493
+ end
494
+
495
+ class ListPackageGroupsRequest
496
+ attr_accessor domain: ::String
497
+ attr_accessor domain_owner: ::String
498
+ attr_accessor max_results: ::Integer
499
+ attr_accessor next_token: ::String
500
+ attr_accessor prefix: ::String
501
+ SENSITIVE: []
502
+ end
503
+
504
+ class ListPackageGroupsResult
505
+ attr_accessor package_groups: ::Array[Types::PackageGroupSummary]
506
+ attr_accessor next_token: ::String
507
+ SENSITIVE: []
508
+ end
509
+
510
+ class ListPackageVersionAssetsRequest
511
+ attr_accessor domain: ::String
512
+ attr_accessor domain_owner: ::String
513
+ attr_accessor repository: ::String
514
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
515
+ attr_accessor namespace: ::String
516
+ attr_accessor package: ::String
517
+ attr_accessor package_version: ::String
518
+ attr_accessor max_results: ::Integer
519
+ attr_accessor next_token: ::String
520
+ SENSITIVE: []
521
+ end
522
+
523
+ class ListPackageVersionAssetsResult
524
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
525
+ attr_accessor namespace: ::String
526
+ attr_accessor package: ::String
527
+ attr_accessor version: ::String
528
+ attr_accessor version_revision: ::String
529
+ attr_accessor next_token: ::String
530
+ attr_accessor assets: ::Array[Types::AssetSummary]
531
+ SENSITIVE: []
532
+ end
533
+
534
+ class ListPackageVersionDependenciesRequest
535
+ attr_accessor domain: ::String
536
+ attr_accessor domain_owner: ::String
537
+ attr_accessor repository: ::String
538
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
539
+ attr_accessor namespace: ::String
540
+ attr_accessor package: ::String
541
+ attr_accessor package_version: ::String
542
+ attr_accessor next_token: ::String
543
+ SENSITIVE: []
544
+ end
545
+
546
+ class ListPackageVersionDependenciesResult
547
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
548
+ attr_accessor namespace: ::String
549
+ attr_accessor package: ::String
550
+ attr_accessor version: ::String
551
+ attr_accessor version_revision: ::String
552
+ attr_accessor next_token: ::String
553
+ attr_accessor dependencies: ::Array[Types::PackageDependency]
554
+ SENSITIVE: []
555
+ end
556
+
557
+ class ListPackageVersionsRequest
558
+ attr_accessor domain: ::String
559
+ attr_accessor domain_owner: ::String
560
+ attr_accessor repository: ::String
561
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
562
+ attr_accessor namespace: ::String
563
+ attr_accessor package: ::String
564
+ attr_accessor status: ("Published" | "Unfinished" | "Unlisted" | "Archived" | "Disposed" | "Deleted")
565
+ attr_accessor sort_by: ("PUBLISHED_TIME")
566
+ attr_accessor max_results: ::Integer
567
+ attr_accessor next_token: ::String
568
+ attr_accessor origin_type: ("INTERNAL" | "EXTERNAL" | "UNKNOWN")
569
+ SENSITIVE: []
570
+ end
571
+
572
+ class ListPackageVersionsResult
573
+ attr_accessor default_display_version: ::String
574
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
575
+ attr_accessor namespace: ::String
576
+ attr_accessor package: ::String
577
+ attr_accessor versions: ::Array[Types::PackageVersionSummary]
578
+ attr_accessor next_token: ::String
579
+ SENSITIVE: []
580
+ end
581
+
582
+ class ListPackagesRequest
583
+ attr_accessor domain: ::String
584
+ attr_accessor domain_owner: ::String
585
+ attr_accessor repository: ::String
586
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
587
+ attr_accessor namespace: ::String
588
+ attr_accessor package_prefix: ::String
589
+ attr_accessor max_results: ::Integer
590
+ attr_accessor next_token: ::String
591
+ attr_accessor publish: ("ALLOW" | "BLOCK")
592
+ attr_accessor upstream: ("ALLOW" | "BLOCK")
593
+ SENSITIVE: []
594
+ end
595
+
596
+ class ListPackagesResult
597
+ attr_accessor packages: ::Array[Types::PackageSummary]
598
+ attr_accessor next_token: ::String
599
+ SENSITIVE: []
600
+ end
601
+
602
+ class ListRepositoriesInDomainRequest
603
+ attr_accessor domain: ::String
604
+ attr_accessor domain_owner: ::String
605
+ attr_accessor administrator_account: ::String
606
+ attr_accessor repository_prefix: ::String
607
+ attr_accessor max_results: ::Integer
608
+ attr_accessor next_token: ::String
609
+ SENSITIVE: []
610
+ end
611
+
612
+ class ListRepositoriesInDomainResult
613
+ attr_accessor repositories: ::Array[Types::RepositorySummary]
614
+ attr_accessor next_token: ::String
615
+ SENSITIVE: []
616
+ end
617
+
618
+ class ListRepositoriesRequest
619
+ attr_accessor repository_prefix: ::String
620
+ attr_accessor max_results: ::Integer
621
+ attr_accessor next_token: ::String
622
+ SENSITIVE: []
623
+ end
624
+
625
+ class ListRepositoriesResult
626
+ attr_accessor repositories: ::Array[Types::RepositorySummary]
627
+ attr_accessor next_token: ::String
628
+ SENSITIVE: []
629
+ end
630
+
631
+ class ListSubPackageGroupsRequest
632
+ attr_accessor domain: ::String
633
+ attr_accessor domain_owner: ::String
634
+ attr_accessor package_group: ::String
635
+ attr_accessor max_results: ::Integer
636
+ attr_accessor next_token: ::String
637
+ SENSITIVE: []
638
+ end
639
+
640
+ class ListSubPackageGroupsResult
641
+ attr_accessor package_groups: ::Array[Types::PackageGroupSummary]
642
+ attr_accessor next_token: ::String
643
+ SENSITIVE: []
644
+ end
645
+
646
+ class ListTagsForResourceRequest
647
+ attr_accessor resource_arn: ::String
648
+ SENSITIVE: []
649
+ end
650
+
651
+ class ListTagsForResourceResult
652
+ attr_accessor tags: ::Array[Types::Tag]
653
+ SENSITIVE: []
654
+ end
655
+
656
+ class PackageDependency
657
+ attr_accessor namespace: ::String
658
+ attr_accessor package: ::String
659
+ attr_accessor dependency_type: ::String
660
+ attr_accessor version_requirement: ::String
661
+ SENSITIVE: []
662
+ end
663
+
664
+ class PackageDescription
665
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
666
+ attr_accessor namespace: ::String
667
+ attr_accessor name: ::String
668
+ attr_accessor origin_configuration: Types::PackageOriginConfiguration
669
+ SENSITIVE: []
670
+ end
671
+
672
+ class PackageGroupAllowedRepository
673
+ attr_accessor repository_name: ::String
674
+ attr_accessor origin_restriction_type: ("EXTERNAL_UPSTREAM" | "INTERNAL_UPSTREAM" | "PUBLISH")
675
+ SENSITIVE: []
676
+ end
677
+
678
+ class PackageGroupDescription
679
+ attr_accessor arn: ::String
680
+ attr_accessor pattern: ::String
681
+ attr_accessor domain_name: ::String
682
+ attr_accessor domain_owner: ::String
683
+ attr_accessor created_time: ::Time
684
+ attr_accessor contact_info: ::String
685
+ attr_accessor description: ::String
686
+ attr_accessor origin_configuration: Types::PackageGroupOriginConfiguration
687
+ attr_accessor parent: Types::PackageGroupReference
688
+ SENSITIVE: []
689
+ end
690
+
691
+ class PackageGroupOriginConfiguration
692
+ attr_accessor restrictions: ::Hash[("EXTERNAL_UPSTREAM" | "INTERNAL_UPSTREAM" | "PUBLISH"), Types::PackageGroupOriginRestriction]
693
+ SENSITIVE: []
694
+ end
695
+
696
+ class PackageGroupOriginRestriction
697
+ attr_accessor mode: ("ALLOW" | "ALLOW_SPECIFIC_REPOSITORIES" | "BLOCK" | "INHERIT")
698
+ attr_accessor effective_mode: ("ALLOW" | "ALLOW_SPECIFIC_REPOSITORIES" | "BLOCK" | "INHERIT")
699
+ attr_accessor inherited_from: Types::PackageGroupReference
700
+ attr_accessor repositories_count: ::Integer
701
+ SENSITIVE: []
702
+ end
703
+
704
+ class PackageGroupReference
705
+ attr_accessor arn: ::String
706
+ attr_accessor pattern: ::String
707
+ SENSITIVE: []
708
+ end
709
+
710
+ class PackageGroupSummary
711
+ attr_accessor arn: ::String
712
+ attr_accessor pattern: ::String
713
+ attr_accessor domain_name: ::String
714
+ attr_accessor domain_owner: ::String
715
+ attr_accessor created_time: ::Time
716
+ attr_accessor contact_info: ::String
717
+ attr_accessor description: ::String
718
+ attr_accessor origin_configuration: Types::PackageGroupOriginConfiguration
719
+ attr_accessor parent: Types::PackageGroupReference
720
+ SENSITIVE: []
721
+ end
722
+
723
+ class PackageOriginConfiguration
724
+ attr_accessor restrictions: Types::PackageOriginRestrictions
725
+ SENSITIVE: []
726
+ end
727
+
728
+ class PackageOriginRestrictions
729
+ attr_accessor publish: ("ALLOW" | "BLOCK")
730
+ attr_accessor upstream: ("ALLOW" | "BLOCK")
731
+ SENSITIVE: []
732
+ end
733
+
734
+ class PackageSummary
735
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
736
+ attr_accessor namespace: ::String
737
+ attr_accessor package: ::String
738
+ attr_accessor origin_configuration: Types::PackageOriginConfiguration
739
+ SENSITIVE: []
740
+ end
741
+
742
+ class PackageVersionDescription
743
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
744
+ attr_accessor namespace: ::String
745
+ attr_accessor package_name: ::String
746
+ attr_accessor display_name: ::String
747
+ attr_accessor version: ::String
748
+ attr_accessor summary: ::String
749
+ attr_accessor home_page: ::String
750
+ attr_accessor source_code_repository: ::String
751
+ attr_accessor published_time: ::Time
752
+ attr_accessor licenses: ::Array[Types::LicenseInfo]
753
+ attr_accessor revision: ::String
754
+ attr_accessor status: ("Published" | "Unfinished" | "Unlisted" | "Archived" | "Disposed" | "Deleted")
755
+ attr_accessor origin: Types::PackageVersionOrigin
756
+ SENSITIVE: []
757
+ end
758
+
759
+ class PackageVersionError
760
+ attr_accessor error_code: ("ALREADY_EXISTS" | "MISMATCHED_REVISION" | "MISMATCHED_STATUS" | "NOT_ALLOWED" | "NOT_FOUND" | "SKIPPED")
761
+ attr_accessor error_message: ::String
762
+ SENSITIVE: []
763
+ end
764
+
765
+ class PackageVersionOrigin
766
+ attr_accessor domain_entry_point: Types::DomainEntryPoint
767
+ attr_accessor origin_type: ("INTERNAL" | "EXTERNAL" | "UNKNOWN")
768
+ SENSITIVE: []
769
+ end
770
+
771
+ class PackageVersionSummary
772
+ attr_accessor version: ::String
773
+ attr_accessor revision: ::String
774
+ attr_accessor status: ("Published" | "Unfinished" | "Unlisted" | "Archived" | "Disposed" | "Deleted")
775
+ attr_accessor origin: Types::PackageVersionOrigin
776
+ SENSITIVE: []
777
+ end
778
+
779
+ class PublishPackageVersionRequest
780
+ attr_accessor domain: ::String
781
+ attr_accessor domain_owner: ::String
782
+ attr_accessor repository: ::String
783
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
784
+ attr_accessor namespace: ::String
785
+ attr_accessor package: ::String
786
+ attr_accessor package_version: ::String
787
+ attr_accessor asset_content: ::IO
788
+ attr_accessor asset_name: ::String
789
+ attr_accessor asset_sha256: ::String
790
+ attr_accessor unfinished: bool
791
+ SENSITIVE: []
792
+ end
793
+
794
+ class PublishPackageVersionResult
795
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
796
+ attr_accessor namespace: ::String
797
+ attr_accessor package: ::String
798
+ attr_accessor version: ::String
799
+ attr_accessor version_revision: ::String
800
+ attr_accessor status: ("Published" | "Unfinished" | "Unlisted" | "Archived" | "Disposed" | "Deleted")
801
+ attr_accessor asset: Types::AssetSummary
802
+ SENSITIVE: []
803
+ end
804
+
805
+ class PutDomainPermissionsPolicyRequest
806
+ attr_accessor domain: ::String
807
+ attr_accessor domain_owner: ::String
808
+ attr_accessor policy_revision: ::String
809
+ attr_accessor policy_document: ::String
810
+ SENSITIVE: []
811
+ end
812
+
813
+ class PutDomainPermissionsPolicyResult
814
+ attr_accessor policy: Types::ResourcePolicy
815
+ SENSITIVE: []
816
+ end
817
+
818
+ class PutPackageOriginConfigurationRequest
819
+ attr_accessor domain: ::String
820
+ attr_accessor domain_owner: ::String
821
+ attr_accessor repository: ::String
822
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
823
+ attr_accessor namespace: ::String
824
+ attr_accessor package: ::String
825
+ attr_accessor restrictions: Types::PackageOriginRestrictions
826
+ SENSITIVE: []
827
+ end
828
+
829
+ class PutPackageOriginConfigurationResult
830
+ attr_accessor origin_configuration: Types::PackageOriginConfiguration
831
+ SENSITIVE: []
832
+ end
833
+
834
+ class PutRepositoryPermissionsPolicyRequest
835
+ attr_accessor domain: ::String
836
+ attr_accessor domain_owner: ::String
837
+ attr_accessor repository: ::String
838
+ attr_accessor policy_revision: ::String
839
+ attr_accessor policy_document: ::String
840
+ SENSITIVE: []
841
+ end
842
+
843
+ class PutRepositoryPermissionsPolicyResult
844
+ attr_accessor policy: Types::ResourcePolicy
845
+ SENSITIVE: []
846
+ end
847
+
848
+ class RepositoryDescription
849
+ attr_accessor name: ::String
850
+ attr_accessor administrator_account: ::String
851
+ attr_accessor domain_name: ::String
852
+ attr_accessor domain_owner: ::String
853
+ attr_accessor arn: ::String
854
+ attr_accessor description: ::String
855
+ attr_accessor upstreams: ::Array[Types::UpstreamRepositoryInfo]
856
+ attr_accessor external_connections: ::Array[Types::RepositoryExternalConnectionInfo]
857
+ attr_accessor created_time: ::Time
858
+ SENSITIVE: []
859
+ end
860
+
861
+ class RepositoryExternalConnectionInfo
862
+ attr_accessor external_connection_name: ::String
863
+ attr_accessor package_format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
864
+ attr_accessor status: ("Available")
865
+ SENSITIVE: []
866
+ end
867
+
868
+ class RepositorySummary
869
+ attr_accessor name: ::String
870
+ attr_accessor administrator_account: ::String
871
+ attr_accessor domain_name: ::String
872
+ attr_accessor domain_owner: ::String
873
+ attr_accessor arn: ::String
874
+ attr_accessor description: ::String
875
+ attr_accessor created_time: ::Time
876
+ SENSITIVE: []
877
+ end
878
+
879
+ class ResourceNotFoundException
880
+ attr_accessor message: ::String
881
+ attr_accessor resource_id: ::String
882
+ attr_accessor resource_type: ("domain" | "repository" | "package" | "package-version" | "asset")
883
+ SENSITIVE: []
884
+ end
885
+
886
+ class ResourcePolicy
887
+ attr_accessor resource_arn: ::String
888
+ attr_accessor revision: ::String
889
+ attr_accessor document: ::String
890
+ SENSITIVE: []
891
+ end
892
+
893
+ class ServiceQuotaExceededException
894
+ attr_accessor message: ::String
895
+ attr_accessor resource_id: ::String
896
+ attr_accessor resource_type: ("domain" | "repository" | "package" | "package-version" | "asset")
897
+ SENSITIVE: []
898
+ end
899
+
900
+ class SuccessfulPackageVersionInfo
901
+ attr_accessor revision: ::String
902
+ attr_accessor status: ("Published" | "Unfinished" | "Unlisted" | "Archived" | "Disposed" | "Deleted")
903
+ SENSITIVE: []
904
+ end
905
+
906
+ class Tag
907
+ attr_accessor key: ::String
908
+ attr_accessor value: ::String
909
+ SENSITIVE: []
910
+ end
911
+
912
+ class TagResourceRequest
913
+ attr_accessor resource_arn: ::String
914
+ attr_accessor tags: ::Array[Types::Tag]
915
+ SENSITIVE: []
916
+ end
917
+
918
+ class TagResourceResult < Aws::EmptyStructure
919
+ end
920
+
921
+ class ThrottlingException
922
+ attr_accessor message: ::String
923
+ attr_accessor retry_after_seconds: ::Integer
924
+ SENSITIVE: []
925
+ end
926
+
927
+ class UntagResourceRequest
928
+ attr_accessor resource_arn: ::String
929
+ attr_accessor tag_keys: ::Array[::String]
930
+ SENSITIVE: []
931
+ end
932
+
933
+ class UntagResourceResult < Aws::EmptyStructure
934
+ end
935
+
936
+ class UpdatePackageGroupOriginConfigurationRequest
937
+ attr_accessor domain: ::String
938
+ attr_accessor domain_owner: ::String
939
+ attr_accessor package_group: ::String
940
+ attr_accessor restrictions: ::Hash[("EXTERNAL_UPSTREAM" | "INTERNAL_UPSTREAM" | "PUBLISH"), ("ALLOW" | "ALLOW_SPECIFIC_REPOSITORIES" | "BLOCK" | "INHERIT")]
941
+ attr_accessor add_allowed_repositories: ::Array[Types::PackageGroupAllowedRepository]
942
+ attr_accessor remove_allowed_repositories: ::Array[Types::PackageGroupAllowedRepository]
943
+ SENSITIVE: []
944
+ end
945
+
946
+ class UpdatePackageGroupOriginConfigurationResult
947
+ attr_accessor package_group: Types::PackageGroupDescription
948
+ attr_accessor allowed_repository_updates: ::Hash[("EXTERNAL_UPSTREAM" | "INTERNAL_UPSTREAM" | "PUBLISH"), ::Hash[("ADDED" | "REMOVED"), ::Array[::String]]]
949
+ SENSITIVE: []
950
+ end
951
+
952
+ class UpdatePackageGroupRequest
953
+ attr_accessor domain: ::String
954
+ attr_accessor domain_owner: ::String
955
+ attr_accessor package_group: ::String
956
+ attr_accessor contact_info: ::String
957
+ attr_accessor description: ::String
958
+ SENSITIVE: []
959
+ end
960
+
961
+ class UpdatePackageGroupResult
962
+ attr_accessor package_group: Types::PackageGroupDescription
963
+ SENSITIVE: []
964
+ end
965
+
966
+ class UpdatePackageVersionsStatusRequest
967
+ attr_accessor domain: ::String
968
+ attr_accessor domain_owner: ::String
969
+ attr_accessor repository: ::String
970
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
971
+ attr_accessor namespace: ::String
972
+ attr_accessor package: ::String
973
+ attr_accessor versions: ::Array[::String]
974
+ attr_accessor version_revisions: ::Hash[::String, ::String]
975
+ attr_accessor expected_status: ("Published" | "Unfinished" | "Unlisted" | "Archived" | "Disposed" | "Deleted")
976
+ attr_accessor target_status: ("Published" | "Unfinished" | "Unlisted" | "Archived" | "Disposed" | "Deleted")
977
+ SENSITIVE: []
978
+ end
979
+
980
+ class UpdatePackageVersionsStatusResult
981
+ attr_accessor successful_versions: ::Hash[::String, Types::SuccessfulPackageVersionInfo]
982
+ attr_accessor failed_versions: ::Hash[::String, Types::PackageVersionError]
983
+ SENSITIVE: []
984
+ end
985
+
986
+ class UpdateRepositoryRequest
987
+ attr_accessor domain: ::String
988
+ attr_accessor domain_owner: ::String
989
+ attr_accessor repository: ::String
990
+ attr_accessor description: ::String
991
+ attr_accessor upstreams: ::Array[Types::UpstreamRepository]
992
+ SENSITIVE: []
993
+ end
994
+
995
+ class UpdateRepositoryResult
996
+ attr_accessor repository: Types::RepositoryDescription
997
+ SENSITIVE: []
998
+ end
999
+
1000
+ class UpstreamRepository
1001
+ attr_accessor repository_name: ::String
1002
+ SENSITIVE: []
1003
+ end
1004
+
1005
+ class UpstreamRepositoryInfo
1006
+ attr_accessor repository_name: ::String
1007
+ SENSITIVE: []
1008
+ end
1009
+
1010
+ class ValidationException
1011
+ attr_accessor message: ::String
1012
+ attr_accessor reason: ("CANNOT_PARSE" | "ENCRYPTION_KEY_ERROR" | "FIELD_VALIDATION_FAILED" | "UNKNOWN_OPERATION" | "OTHER")
1013
+ SENSITIVE: []
1014
+ end
1015
+ end
1016
+ end