aws-sdk-codeartifact 1.36.0 → 1.38.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.
data/sig/types.rbs ADDED
@@ -0,0 +1,811 @@
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 ConflictException
37
+ attr_accessor message: ::String
38
+ attr_accessor resource_id: ::String
39
+ attr_accessor resource_type: ("domain" | "repository" | "package" | "package-version" | "asset")
40
+ SENSITIVE: []
41
+ end
42
+
43
+ class CopyPackageVersionsRequest
44
+ attr_accessor domain: ::String
45
+ attr_accessor domain_owner: ::String
46
+ attr_accessor source_repository: ::String
47
+ attr_accessor destination_repository: ::String
48
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
49
+ attr_accessor namespace: ::String
50
+ attr_accessor package: ::String
51
+ attr_accessor versions: ::Array[::String]
52
+ attr_accessor version_revisions: ::Hash[::String, ::String]
53
+ attr_accessor allow_overwrite: bool
54
+ attr_accessor include_from_upstream: bool
55
+ SENSITIVE: []
56
+ end
57
+
58
+ class CopyPackageVersionsResult
59
+ attr_accessor successful_versions: ::Hash[::String, Types::SuccessfulPackageVersionInfo]
60
+ attr_accessor failed_versions: ::Hash[::String, Types::PackageVersionError]
61
+ SENSITIVE: []
62
+ end
63
+
64
+ class CreateDomainRequest
65
+ attr_accessor domain: ::String
66
+ attr_accessor encryption_key: ::String
67
+ attr_accessor tags: ::Array[Types::Tag]
68
+ SENSITIVE: []
69
+ end
70
+
71
+ class CreateDomainResult
72
+ attr_accessor domain: Types::DomainDescription
73
+ SENSITIVE: []
74
+ end
75
+
76
+ class CreateRepositoryRequest
77
+ attr_accessor domain: ::String
78
+ attr_accessor domain_owner: ::String
79
+ attr_accessor repository: ::String
80
+ attr_accessor description: ::String
81
+ attr_accessor upstreams: ::Array[Types::UpstreamRepository]
82
+ attr_accessor tags: ::Array[Types::Tag]
83
+ SENSITIVE: []
84
+ end
85
+
86
+ class CreateRepositoryResult
87
+ attr_accessor repository: Types::RepositoryDescription
88
+ SENSITIVE: []
89
+ end
90
+
91
+ class DeleteDomainPermissionsPolicyRequest
92
+ attr_accessor domain: ::String
93
+ attr_accessor domain_owner: ::String
94
+ attr_accessor policy_revision: ::String
95
+ SENSITIVE: []
96
+ end
97
+
98
+ class DeleteDomainPermissionsPolicyResult
99
+ attr_accessor policy: Types::ResourcePolicy
100
+ SENSITIVE: []
101
+ end
102
+
103
+ class DeleteDomainRequest
104
+ attr_accessor domain: ::String
105
+ attr_accessor domain_owner: ::String
106
+ SENSITIVE: []
107
+ end
108
+
109
+ class DeleteDomainResult
110
+ attr_accessor domain: Types::DomainDescription
111
+ SENSITIVE: []
112
+ end
113
+
114
+ class DeletePackageRequest
115
+ attr_accessor domain: ::String
116
+ attr_accessor domain_owner: ::String
117
+ attr_accessor repository: ::String
118
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
119
+ attr_accessor namespace: ::String
120
+ attr_accessor package: ::String
121
+ SENSITIVE: []
122
+ end
123
+
124
+ class DeletePackageResult
125
+ attr_accessor deleted_package: Types::PackageSummary
126
+ SENSITIVE: []
127
+ end
128
+
129
+ class DeletePackageVersionsRequest
130
+ attr_accessor domain: ::String
131
+ attr_accessor domain_owner: ::String
132
+ attr_accessor repository: ::String
133
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
134
+ attr_accessor namespace: ::String
135
+ attr_accessor package: ::String
136
+ attr_accessor versions: ::Array[::String]
137
+ attr_accessor expected_status: ("Published" | "Unfinished" | "Unlisted" | "Archived" | "Disposed" | "Deleted")
138
+ SENSITIVE: []
139
+ end
140
+
141
+ class DeletePackageVersionsResult
142
+ attr_accessor successful_versions: ::Hash[::String, Types::SuccessfulPackageVersionInfo]
143
+ attr_accessor failed_versions: ::Hash[::String, Types::PackageVersionError]
144
+ SENSITIVE: []
145
+ end
146
+
147
+ class DeleteRepositoryPermissionsPolicyRequest
148
+ attr_accessor domain: ::String
149
+ attr_accessor domain_owner: ::String
150
+ attr_accessor repository: ::String
151
+ attr_accessor policy_revision: ::String
152
+ SENSITIVE: []
153
+ end
154
+
155
+ class DeleteRepositoryPermissionsPolicyResult
156
+ attr_accessor policy: Types::ResourcePolicy
157
+ SENSITIVE: []
158
+ end
159
+
160
+ class DeleteRepositoryRequest
161
+ attr_accessor domain: ::String
162
+ attr_accessor domain_owner: ::String
163
+ attr_accessor repository: ::String
164
+ SENSITIVE: []
165
+ end
166
+
167
+ class DeleteRepositoryResult
168
+ attr_accessor repository: Types::RepositoryDescription
169
+ SENSITIVE: []
170
+ end
171
+
172
+ class DescribeDomainRequest
173
+ attr_accessor domain: ::String
174
+ attr_accessor domain_owner: ::String
175
+ SENSITIVE: []
176
+ end
177
+
178
+ class DescribeDomainResult
179
+ attr_accessor domain: Types::DomainDescription
180
+ SENSITIVE: []
181
+ end
182
+
183
+ class DescribePackageRequest
184
+ attr_accessor domain: ::String
185
+ attr_accessor domain_owner: ::String
186
+ attr_accessor repository: ::String
187
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
188
+ attr_accessor namespace: ::String
189
+ attr_accessor package: ::String
190
+ SENSITIVE: []
191
+ end
192
+
193
+ class DescribePackageResult
194
+ attr_accessor package: Types::PackageDescription
195
+ SENSITIVE: []
196
+ end
197
+
198
+ class DescribePackageVersionRequest
199
+ attr_accessor domain: ::String
200
+ attr_accessor domain_owner: ::String
201
+ attr_accessor repository: ::String
202
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
203
+ attr_accessor namespace: ::String
204
+ attr_accessor package: ::String
205
+ attr_accessor package_version: ::String
206
+ SENSITIVE: []
207
+ end
208
+
209
+ class DescribePackageVersionResult
210
+ attr_accessor package_version: Types::PackageVersionDescription
211
+ SENSITIVE: []
212
+ end
213
+
214
+ class DescribeRepositoryRequest
215
+ attr_accessor domain: ::String
216
+ attr_accessor domain_owner: ::String
217
+ attr_accessor repository: ::String
218
+ SENSITIVE: []
219
+ end
220
+
221
+ class DescribeRepositoryResult
222
+ attr_accessor repository: Types::RepositoryDescription
223
+ SENSITIVE: []
224
+ end
225
+
226
+ class DisassociateExternalConnectionRequest
227
+ attr_accessor domain: ::String
228
+ attr_accessor domain_owner: ::String
229
+ attr_accessor repository: ::String
230
+ attr_accessor external_connection: ::String
231
+ SENSITIVE: []
232
+ end
233
+
234
+ class DisassociateExternalConnectionResult
235
+ attr_accessor repository: Types::RepositoryDescription
236
+ SENSITIVE: []
237
+ end
238
+
239
+ class DisposePackageVersionsRequest
240
+ attr_accessor domain: ::String
241
+ attr_accessor domain_owner: ::String
242
+ attr_accessor repository: ::String
243
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
244
+ attr_accessor namespace: ::String
245
+ attr_accessor package: ::String
246
+ attr_accessor versions: ::Array[::String]
247
+ attr_accessor version_revisions: ::Hash[::String, ::String]
248
+ attr_accessor expected_status: ("Published" | "Unfinished" | "Unlisted" | "Archived" | "Disposed" | "Deleted")
249
+ SENSITIVE: []
250
+ end
251
+
252
+ class DisposePackageVersionsResult
253
+ attr_accessor successful_versions: ::Hash[::String, Types::SuccessfulPackageVersionInfo]
254
+ attr_accessor failed_versions: ::Hash[::String, Types::PackageVersionError]
255
+ SENSITIVE: []
256
+ end
257
+
258
+ class DomainDescription
259
+ attr_accessor name: ::String
260
+ attr_accessor owner: ::String
261
+ attr_accessor arn: ::String
262
+ attr_accessor status: ("Active" | "Deleted")
263
+ attr_accessor created_time: ::Time
264
+ attr_accessor encryption_key: ::String
265
+ attr_accessor repository_count: ::Integer
266
+ attr_accessor asset_size_bytes: ::Integer
267
+ attr_accessor s3_bucket_arn: ::String
268
+ SENSITIVE: []
269
+ end
270
+
271
+ class DomainEntryPoint
272
+ attr_accessor repository_name: ::String
273
+ attr_accessor external_connection_name: ::String
274
+ SENSITIVE: []
275
+ end
276
+
277
+ class DomainSummary
278
+ attr_accessor name: ::String
279
+ attr_accessor owner: ::String
280
+ attr_accessor arn: ::String
281
+ attr_accessor status: ("Active" | "Deleted")
282
+ attr_accessor created_time: ::Time
283
+ attr_accessor encryption_key: ::String
284
+ SENSITIVE: []
285
+ end
286
+
287
+ class GetAuthorizationTokenRequest
288
+ attr_accessor domain: ::String
289
+ attr_accessor domain_owner: ::String
290
+ attr_accessor duration_seconds: ::Integer
291
+ SENSITIVE: []
292
+ end
293
+
294
+ class GetAuthorizationTokenResult
295
+ attr_accessor authorization_token: ::String
296
+ attr_accessor expiration: ::Time
297
+ SENSITIVE: []
298
+ end
299
+
300
+ class GetDomainPermissionsPolicyRequest
301
+ attr_accessor domain: ::String
302
+ attr_accessor domain_owner: ::String
303
+ SENSITIVE: []
304
+ end
305
+
306
+ class GetDomainPermissionsPolicyResult
307
+ attr_accessor policy: Types::ResourcePolicy
308
+ SENSITIVE: []
309
+ end
310
+
311
+ class GetPackageVersionAssetRequest
312
+ attr_accessor domain: ::String
313
+ attr_accessor domain_owner: ::String
314
+ attr_accessor repository: ::String
315
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
316
+ attr_accessor namespace: ::String
317
+ attr_accessor package: ::String
318
+ attr_accessor package_version: ::String
319
+ attr_accessor asset: ::String
320
+ attr_accessor package_version_revision: ::String
321
+ SENSITIVE: []
322
+ end
323
+
324
+ class GetPackageVersionAssetResult
325
+ attr_accessor asset: ::IO
326
+ attr_accessor asset_name: ::String
327
+ attr_accessor package_version: ::String
328
+ attr_accessor package_version_revision: ::String
329
+ SENSITIVE: []
330
+ end
331
+
332
+ class GetPackageVersionReadmeRequest
333
+ attr_accessor domain: ::String
334
+ attr_accessor domain_owner: ::String
335
+ attr_accessor repository: ::String
336
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
337
+ attr_accessor namespace: ::String
338
+ attr_accessor package: ::String
339
+ attr_accessor package_version: ::String
340
+ SENSITIVE: []
341
+ end
342
+
343
+ class GetPackageVersionReadmeResult
344
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
345
+ attr_accessor namespace: ::String
346
+ attr_accessor package: ::String
347
+ attr_accessor version: ::String
348
+ attr_accessor version_revision: ::String
349
+ attr_accessor readme: ::String
350
+ SENSITIVE: []
351
+ end
352
+
353
+ class GetRepositoryEndpointRequest
354
+ attr_accessor domain: ::String
355
+ attr_accessor domain_owner: ::String
356
+ attr_accessor repository: ::String
357
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
358
+ SENSITIVE: []
359
+ end
360
+
361
+ class GetRepositoryEndpointResult
362
+ attr_accessor repository_endpoint: ::String
363
+ SENSITIVE: []
364
+ end
365
+
366
+ class GetRepositoryPermissionsPolicyRequest
367
+ attr_accessor domain: ::String
368
+ attr_accessor domain_owner: ::String
369
+ attr_accessor repository: ::String
370
+ SENSITIVE: []
371
+ end
372
+
373
+ class GetRepositoryPermissionsPolicyResult
374
+ attr_accessor policy: Types::ResourcePolicy
375
+ SENSITIVE: []
376
+ end
377
+
378
+ class InternalServerException
379
+ attr_accessor message: ::String
380
+ SENSITIVE: []
381
+ end
382
+
383
+ class LicenseInfo
384
+ attr_accessor name: ::String
385
+ attr_accessor url: ::String
386
+ SENSITIVE: []
387
+ end
388
+
389
+ class ListDomainsRequest
390
+ attr_accessor max_results: ::Integer
391
+ attr_accessor next_token: ::String
392
+ SENSITIVE: []
393
+ end
394
+
395
+ class ListDomainsResult
396
+ attr_accessor domains: ::Array[Types::DomainSummary]
397
+ attr_accessor next_token: ::String
398
+ SENSITIVE: []
399
+ end
400
+
401
+ class ListPackageVersionAssetsRequest
402
+ attr_accessor domain: ::String
403
+ attr_accessor domain_owner: ::String
404
+ attr_accessor repository: ::String
405
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
406
+ attr_accessor namespace: ::String
407
+ attr_accessor package: ::String
408
+ attr_accessor package_version: ::String
409
+ attr_accessor max_results: ::Integer
410
+ attr_accessor next_token: ::String
411
+ SENSITIVE: []
412
+ end
413
+
414
+ class ListPackageVersionAssetsResult
415
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
416
+ attr_accessor namespace: ::String
417
+ attr_accessor package: ::String
418
+ attr_accessor version: ::String
419
+ attr_accessor version_revision: ::String
420
+ attr_accessor next_token: ::String
421
+ attr_accessor assets: ::Array[Types::AssetSummary]
422
+ SENSITIVE: []
423
+ end
424
+
425
+ class ListPackageVersionDependenciesRequest
426
+ attr_accessor domain: ::String
427
+ attr_accessor domain_owner: ::String
428
+ attr_accessor repository: ::String
429
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
430
+ attr_accessor namespace: ::String
431
+ attr_accessor package: ::String
432
+ attr_accessor package_version: ::String
433
+ attr_accessor next_token: ::String
434
+ SENSITIVE: []
435
+ end
436
+
437
+ class ListPackageVersionDependenciesResult
438
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
439
+ attr_accessor namespace: ::String
440
+ attr_accessor package: ::String
441
+ attr_accessor version: ::String
442
+ attr_accessor version_revision: ::String
443
+ attr_accessor next_token: ::String
444
+ attr_accessor dependencies: ::Array[Types::PackageDependency]
445
+ SENSITIVE: []
446
+ end
447
+
448
+ class ListPackageVersionsRequest
449
+ attr_accessor domain: ::String
450
+ attr_accessor domain_owner: ::String
451
+ attr_accessor repository: ::String
452
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
453
+ attr_accessor namespace: ::String
454
+ attr_accessor package: ::String
455
+ attr_accessor status: ("Published" | "Unfinished" | "Unlisted" | "Archived" | "Disposed" | "Deleted")
456
+ attr_accessor sort_by: ("PUBLISHED_TIME")
457
+ attr_accessor max_results: ::Integer
458
+ attr_accessor next_token: ::String
459
+ attr_accessor origin_type: ("INTERNAL" | "EXTERNAL" | "UNKNOWN")
460
+ SENSITIVE: []
461
+ end
462
+
463
+ class ListPackageVersionsResult
464
+ attr_accessor default_display_version: ::String
465
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
466
+ attr_accessor namespace: ::String
467
+ attr_accessor package: ::String
468
+ attr_accessor versions: ::Array[Types::PackageVersionSummary]
469
+ attr_accessor next_token: ::String
470
+ SENSITIVE: []
471
+ end
472
+
473
+ class ListPackagesRequest
474
+ attr_accessor domain: ::String
475
+ attr_accessor domain_owner: ::String
476
+ attr_accessor repository: ::String
477
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
478
+ attr_accessor namespace: ::String
479
+ attr_accessor package_prefix: ::String
480
+ attr_accessor max_results: ::Integer
481
+ attr_accessor next_token: ::String
482
+ attr_accessor publish: ("ALLOW" | "BLOCK")
483
+ attr_accessor upstream: ("ALLOW" | "BLOCK")
484
+ SENSITIVE: []
485
+ end
486
+
487
+ class ListPackagesResult
488
+ attr_accessor packages: ::Array[Types::PackageSummary]
489
+ attr_accessor next_token: ::String
490
+ SENSITIVE: []
491
+ end
492
+
493
+ class ListRepositoriesInDomainRequest
494
+ attr_accessor domain: ::String
495
+ attr_accessor domain_owner: ::String
496
+ attr_accessor administrator_account: ::String
497
+ attr_accessor repository_prefix: ::String
498
+ attr_accessor max_results: ::Integer
499
+ attr_accessor next_token: ::String
500
+ SENSITIVE: []
501
+ end
502
+
503
+ class ListRepositoriesInDomainResult
504
+ attr_accessor repositories: ::Array[Types::RepositorySummary]
505
+ attr_accessor next_token: ::String
506
+ SENSITIVE: []
507
+ end
508
+
509
+ class ListRepositoriesRequest
510
+ attr_accessor repository_prefix: ::String
511
+ attr_accessor max_results: ::Integer
512
+ attr_accessor next_token: ::String
513
+ SENSITIVE: []
514
+ end
515
+
516
+ class ListRepositoriesResult
517
+ attr_accessor repositories: ::Array[Types::RepositorySummary]
518
+ attr_accessor next_token: ::String
519
+ SENSITIVE: []
520
+ end
521
+
522
+ class ListTagsForResourceRequest
523
+ attr_accessor resource_arn: ::String
524
+ SENSITIVE: []
525
+ end
526
+
527
+ class ListTagsForResourceResult
528
+ attr_accessor tags: ::Array[Types::Tag]
529
+ SENSITIVE: []
530
+ end
531
+
532
+ class PackageDependency
533
+ attr_accessor namespace: ::String
534
+ attr_accessor package: ::String
535
+ attr_accessor dependency_type: ::String
536
+ attr_accessor version_requirement: ::String
537
+ SENSITIVE: []
538
+ end
539
+
540
+ class PackageDescription
541
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
542
+ attr_accessor namespace: ::String
543
+ attr_accessor name: ::String
544
+ attr_accessor origin_configuration: Types::PackageOriginConfiguration
545
+ SENSITIVE: []
546
+ end
547
+
548
+ class PackageOriginConfiguration
549
+ attr_accessor restrictions: Types::PackageOriginRestrictions
550
+ SENSITIVE: []
551
+ end
552
+
553
+ class PackageOriginRestrictions
554
+ attr_accessor publish: ("ALLOW" | "BLOCK")
555
+ attr_accessor upstream: ("ALLOW" | "BLOCK")
556
+ SENSITIVE: []
557
+ end
558
+
559
+ class PackageSummary
560
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
561
+ attr_accessor namespace: ::String
562
+ attr_accessor package: ::String
563
+ attr_accessor origin_configuration: Types::PackageOriginConfiguration
564
+ SENSITIVE: []
565
+ end
566
+
567
+ class PackageVersionDescription
568
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
569
+ attr_accessor namespace: ::String
570
+ attr_accessor package_name: ::String
571
+ attr_accessor display_name: ::String
572
+ attr_accessor version: ::String
573
+ attr_accessor summary: ::String
574
+ attr_accessor home_page: ::String
575
+ attr_accessor source_code_repository: ::String
576
+ attr_accessor published_time: ::Time
577
+ attr_accessor licenses: ::Array[Types::LicenseInfo]
578
+ attr_accessor revision: ::String
579
+ attr_accessor status: ("Published" | "Unfinished" | "Unlisted" | "Archived" | "Disposed" | "Deleted")
580
+ attr_accessor origin: Types::PackageVersionOrigin
581
+ SENSITIVE: []
582
+ end
583
+
584
+ class PackageVersionError
585
+ attr_accessor error_code: ("ALREADY_EXISTS" | "MISMATCHED_REVISION" | "MISMATCHED_STATUS" | "NOT_ALLOWED" | "NOT_FOUND" | "SKIPPED")
586
+ attr_accessor error_message: ::String
587
+ SENSITIVE: []
588
+ end
589
+
590
+ class PackageVersionOrigin
591
+ attr_accessor domain_entry_point: Types::DomainEntryPoint
592
+ attr_accessor origin_type: ("INTERNAL" | "EXTERNAL" | "UNKNOWN")
593
+ SENSITIVE: []
594
+ end
595
+
596
+ class PackageVersionSummary
597
+ attr_accessor version: ::String
598
+ attr_accessor revision: ::String
599
+ attr_accessor status: ("Published" | "Unfinished" | "Unlisted" | "Archived" | "Disposed" | "Deleted")
600
+ attr_accessor origin: Types::PackageVersionOrigin
601
+ SENSITIVE: []
602
+ end
603
+
604
+ class PublishPackageVersionRequest
605
+ attr_accessor domain: ::String
606
+ attr_accessor domain_owner: ::String
607
+ attr_accessor repository: ::String
608
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
609
+ attr_accessor namespace: ::String
610
+ attr_accessor package: ::String
611
+ attr_accessor package_version: ::String
612
+ attr_accessor asset_content: ::IO
613
+ attr_accessor asset_name: ::String
614
+ attr_accessor asset_sha256: ::String
615
+ attr_accessor unfinished: bool
616
+ SENSITIVE: []
617
+ end
618
+
619
+ class PublishPackageVersionResult
620
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
621
+ attr_accessor namespace: ::String
622
+ attr_accessor package: ::String
623
+ attr_accessor version: ::String
624
+ attr_accessor version_revision: ::String
625
+ attr_accessor status: ("Published" | "Unfinished" | "Unlisted" | "Archived" | "Disposed" | "Deleted")
626
+ attr_accessor asset: Types::AssetSummary
627
+ SENSITIVE: []
628
+ end
629
+
630
+ class PutDomainPermissionsPolicyRequest
631
+ attr_accessor domain: ::String
632
+ attr_accessor domain_owner: ::String
633
+ attr_accessor policy_revision: ::String
634
+ attr_accessor policy_document: ::String
635
+ SENSITIVE: []
636
+ end
637
+
638
+ class PutDomainPermissionsPolicyResult
639
+ attr_accessor policy: Types::ResourcePolicy
640
+ SENSITIVE: []
641
+ end
642
+
643
+ class PutPackageOriginConfigurationRequest
644
+ attr_accessor domain: ::String
645
+ attr_accessor domain_owner: ::String
646
+ attr_accessor repository: ::String
647
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
648
+ attr_accessor namespace: ::String
649
+ attr_accessor package: ::String
650
+ attr_accessor restrictions: Types::PackageOriginRestrictions
651
+ SENSITIVE: []
652
+ end
653
+
654
+ class PutPackageOriginConfigurationResult
655
+ attr_accessor origin_configuration: Types::PackageOriginConfiguration
656
+ SENSITIVE: []
657
+ end
658
+
659
+ class PutRepositoryPermissionsPolicyRequest
660
+ attr_accessor domain: ::String
661
+ attr_accessor domain_owner: ::String
662
+ attr_accessor repository: ::String
663
+ attr_accessor policy_revision: ::String
664
+ attr_accessor policy_document: ::String
665
+ SENSITIVE: []
666
+ end
667
+
668
+ class PutRepositoryPermissionsPolicyResult
669
+ attr_accessor policy: Types::ResourcePolicy
670
+ SENSITIVE: []
671
+ end
672
+
673
+ class RepositoryDescription
674
+ attr_accessor name: ::String
675
+ attr_accessor administrator_account: ::String
676
+ attr_accessor domain_name: ::String
677
+ attr_accessor domain_owner: ::String
678
+ attr_accessor arn: ::String
679
+ attr_accessor description: ::String
680
+ attr_accessor upstreams: ::Array[Types::UpstreamRepositoryInfo]
681
+ attr_accessor external_connections: ::Array[Types::RepositoryExternalConnectionInfo]
682
+ attr_accessor created_time: ::Time
683
+ SENSITIVE: []
684
+ end
685
+
686
+ class RepositoryExternalConnectionInfo
687
+ attr_accessor external_connection_name: ::String
688
+ attr_accessor package_format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
689
+ attr_accessor status: ("Available")
690
+ SENSITIVE: []
691
+ end
692
+
693
+ class RepositorySummary
694
+ attr_accessor name: ::String
695
+ attr_accessor administrator_account: ::String
696
+ attr_accessor domain_name: ::String
697
+ attr_accessor domain_owner: ::String
698
+ attr_accessor arn: ::String
699
+ attr_accessor description: ::String
700
+ attr_accessor created_time: ::Time
701
+ SENSITIVE: []
702
+ end
703
+
704
+ class ResourceNotFoundException
705
+ attr_accessor message: ::String
706
+ attr_accessor resource_id: ::String
707
+ attr_accessor resource_type: ("domain" | "repository" | "package" | "package-version" | "asset")
708
+ SENSITIVE: []
709
+ end
710
+
711
+ class ResourcePolicy
712
+ attr_accessor resource_arn: ::String
713
+ attr_accessor revision: ::String
714
+ attr_accessor document: ::String
715
+ SENSITIVE: []
716
+ end
717
+
718
+ class ServiceQuotaExceededException
719
+ attr_accessor message: ::String
720
+ attr_accessor resource_id: ::String
721
+ attr_accessor resource_type: ("domain" | "repository" | "package" | "package-version" | "asset")
722
+ SENSITIVE: []
723
+ end
724
+
725
+ class SuccessfulPackageVersionInfo
726
+ attr_accessor revision: ::String
727
+ attr_accessor status: ("Published" | "Unfinished" | "Unlisted" | "Archived" | "Disposed" | "Deleted")
728
+ SENSITIVE: []
729
+ end
730
+
731
+ class Tag
732
+ attr_accessor key: ::String
733
+ attr_accessor value: ::String
734
+ SENSITIVE: []
735
+ end
736
+
737
+ class TagResourceRequest
738
+ attr_accessor resource_arn: ::String
739
+ attr_accessor tags: ::Array[Types::Tag]
740
+ SENSITIVE: []
741
+ end
742
+
743
+ class TagResourceResult < Aws::EmptyStructure
744
+ end
745
+
746
+ class ThrottlingException
747
+ attr_accessor message: ::String
748
+ attr_accessor retry_after_seconds: ::Integer
749
+ SENSITIVE: []
750
+ end
751
+
752
+ class UntagResourceRequest
753
+ attr_accessor resource_arn: ::String
754
+ attr_accessor tag_keys: ::Array[::String]
755
+ SENSITIVE: []
756
+ end
757
+
758
+ class UntagResourceResult < Aws::EmptyStructure
759
+ end
760
+
761
+ class UpdatePackageVersionsStatusRequest
762
+ attr_accessor domain: ::String
763
+ attr_accessor domain_owner: ::String
764
+ attr_accessor repository: ::String
765
+ attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
766
+ attr_accessor namespace: ::String
767
+ attr_accessor package: ::String
768
+ attr_accessor versions: ::Array[::String]
769
+ attr_accessor version_revisions: ::Hash[::String, ::String]
770
+ attr_accessor expected_status: ("Published" | "Unfinished" | "Unlisted" | "Archived" | "Disposed" | "Deleted")
771
+ attr_accessor target_status: ("Published" | "Unfinished" | "Unlisted" | "Archived" | "Disposed" | "Deleted")
772
+ SENSITIVE: []
773
+ end
774
+
775
+ class UpdatePackageVersionsStatusResult
776
+ attr_accessor successful_versions: ::Hash[::String, Types::SuccessfulPackageVersionInfo]
777
+ attr_accessor failed_versions: ::Hash[::String, Types::PackageVersionError]
778
+ SENSITIVE: []
779
+ end
780
+
781
+ class UpdateRepositoryRequest
782
+ attr_accessor domain: ::String
783
+ attr_accessor domain_owner: ::String
784
+ attr_accessor repository: ::String
785
+ attr_accessor description: ::String
786
+ attr_accessor upstreams: ::Array[Types::UpstreamRepository]
787
+ SENSITIVE: []
788
+ end
789
+
790
+ class UpdateRepositoryResult
791
+ attr_accessor repository: Types::RepositoryDescription
792
+ SENSITIVE: []
793
+ end
794
+
795
+ class UpstreamRepository
796
+ attr_accessor repository_name: ::String
797
+ SENSITIVE: []
798
+ end
799
+
800
+ class UpstreamRepositoryInfo
801
+ attr_accessor repository_name: ::String
802
+ SENSITIVE: []
803
+ end
804
+
805
+ class ValidationException
806
+ attr_accessor message: ::String
807
+ attr_accessor reason: ("CANNOT_PARSE" | "ENCRYPTION_KEY_ERROR" | "FIELD_VALIDATION_FAILED" | "UNKNOWN_OPERATION" | "OTHER")
808
+ SENSITIVE: []
809
+ end
810
+ end
811
+ end