aws-sdk-codeartifact 1.38.0 → 1.40.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.
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-codeartifact/customizations'
52
52
  # @!group service
53
53
  module Aws::CodeArtifact
54
54
 
55
- GEM_VERSION = '1.38.0'
55
+ GEM_VERSION = '1.40.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -123,6 +123,26 @@ module Aws
123
123
  ) -> _CreateDomainResponseSuccess
124
124
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainResponseSuccess
125
125
 
126
+ interface _CreatePackageGroupResponseSuccess
127
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreatePackageGroupResult]
128
+ def package_group: () -> Types::PackageGroupDescription
129
+ end
130
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeArtifact/Client.html#create_package_group-instance_method
131
+ def create_package_group: (
132
+ domain: ::String,
133
+ ?domain_owner: ::String,
134
+ package_group: ::String,
135
+ ?contact_info: ::String,
136
+ ?description: ::String,
137
+ ?tags: Array[
138
+ {
139
+ key: ::String,
140
+ value: ::String
141
+ },
142
+ ]
143
+ ) -> _CreatePackageGroupResponseSuccess
144
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePackageGroupResponseSuccess
145
+
126
146
  interface _CreateRepositoryResponseSuccess
127
147
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateRepositoryResult]
128
148
  def repository: () -> Types::RepositoryDescription
@@ -185,6 +205,18 @@ module Aws
185
205
  ) -> _DeletePackageResponseSuccess
186
206
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePackageResponseSuccess
187
207
 
208
+ interface _DeletePackageGroupResponseSuccess
209
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeletePackageGroupResult]
210
+ def package_group: () -> Types::PackageGroupDescription
211
+ end
212
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeArtifact/Client.html#delete_package_group-instance_method
213
+ def delete_package_group: (
214
+ domain: ::String,
215
+ ?domain_owner: ::String,
216
+ package_group: ::String
217
+ ) -> _DeletePackageGroupResponseSuccess
218
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePackageGroupResponseSuccess
219
+
188
220
  interface _DeletePackageVersionsResponseSuccess
189
221
  include ::Seahorse::Client::_ResponseSuccess[Types::DeletePackageVersionsResult]
190
222
  def successful_versions: () -> ::Hash[::String, Types::SuccessfulPackageVersionInfo]
@@ -254,6 +286,18 @@ module Aws
254
286
  ) -> _DescribePackageResponseSuccess
255
287
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribePackageResponseSuccess
256
288
 
289
+ interface _DescribePackageGroupResponseSuccess
290
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribePackageGroupResult]
291
+ def package_group: () -> Types::PackageGroupDescription
292
+ end
293
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeArtifact/Client.html#describe_package_group-instance_method
294
+ def describe_package_group: (
295
+ domain: ::String,
296
+ ?domain_owner: ::String,
297
+ package_group: ::String
298
+ ) -> _DescribePackageGroupResponseSuccess
299
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribePackageGroupResponseSuccess
300
+
257
301
  interface _DescribePackageVersionResponseSuccess
258
302
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribePackageVersionResult]
259
303
  def package_version: () -> Types::PackageVersionDescription
@@ -314,6 +358,21 @@ module Aws
314
358
  ) -> _DisposePackageVersionsResponseSuccess
315
359
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisposePackageVersionsResponseSuccess
316
360
 
361
+ interface _GetAssociatedPackageGroupResponseSuccess
362
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAssociatedPackageGroupResult]
363
+ def package_group: () -> Types::PackageGroupDescription
364
+ def association_type: () -> ("STRONG" | "WEAK")
365
+ end
366
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeArtifact/Client.html#get_associated_package_group-instance_method
367
+ def get_associated_package_group: (
368
+ domain: ::String,
369
+ ?domain_owner: ::String,
370
+ format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift"),
371
+ ?namespace: ::String,
372
+ package: ::String
373
+ ) -> _GetAssociatedPackageGroupResponseSuccess
374
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAssociatedPackageGroupResponseSuccess
375
+
317
376
  interface _GetAuthorizationTokenResponseSuccess
318
377
  include ::Seahorse::Client::_ResponseSuccess[Types::GetAuthorizationTokenResult]
319
378
  def authorization_token: () -> ::String
@@ -405,6 +464,38 @@ module Aws
405
464
  ) -> _GetRepositoryPermissionsPolicyResponseSuccess
406
465
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRepositoryPermissionsPolicyResponseSuccess
407
466
 
467
+ interface _ListAllowedRepositoriesForGroupResponseSuccess
468
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAllowedRepositoriesForGroupResult]
469
+ def allowed_repositories: () -> ::Array[::String]
470
+ def next_token: () -> ::String
471
+ end
472
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeArtifact/Client.html#list_allowed_repositories_for_group-instance_method
473
+ def list_allowed_repositories_for_group: (
474
+ domain: ::String,
475
+ ?domain_owner: ::String,
476
+ package_group: ::String,
477
+ origin_restriction_type: ("EXTERNAL_UPSTREAM" | "INTERNAL_UPSTREAM" | "PUBLISH"),
478
+ ?max_results: ::Integer,
479
+ ?next_token: ::String
480
+ ) -> _ListAllowedRepositoriesForGroupResponseSuccess
481
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAllowedRepositoriesForGroupResponseSuccess
482
+
483
+ interface _ListAssociatedPackagesResponseSuccess
484
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAssociatedPackagesResult]
485
+ def packages: () -> ::Array[Types::AssociatedPackage]
486
+ def next_token: () -> ::String
487
+ end
488
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeArtifact/Client.html#list_associated_packages-instance_method
489
+ def list_associated_packages: (
490
+ domain: ::String,
491
+ ?domain_owner: ::String,
492
+ package_group: ::String,
493
+ ?max_results: ::Integer,
494
+ ?next_token: ::String,
495
+ ?preview: bool
496
+ ) -> _ListAssociatedPackagesResponseSuccess
497
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssociatedPackagesResponseSuccess
498
+
408
499
  interface _ListDomainsResponseSuccess
409
500
  include ::Seahorse::Client::_ResponseSuccess[Types::ListDomainsResult]
410
501
  def domains: () -> ::Array[Types::DomainSummary]
@@ -417,6 +508,21 @@ module Aws
417
508
  ) -> _ListDomainsResponseSuccess
418
509
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDomainsResponseSuccess
419
510
 
511
+ interface _ListPackageGroupsResponseSuccess
512
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPackageGroupsResult]
513
+ def package_groups: () -> ::Array[Types::PackageGroupSummary]
514
+ def next_token: () -> ::String
515
+ end
516
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeArtifact/Client.html#list_package_groups-instance_method
517
+ def list_package_groups: (
518
+ domain: ::String,
519
+ ?domain_owner: ::String,
520
+ ?max_results: ::Integer,
521
+ ?next_token: ::String,
522
+ ?prefix: ::String
523
+ ) -> _ListPackageGroupsResponseSuccess
524
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPackageGroupsResponseSuccess
525
+
420
526
  interface _ListPackageVersionAssetsResponseSuccess
421
527
  include ::Seahorse::Client::_ResponseSuccess[Types::ListPackageVersionAssetsResult]
422
528
  def format: () -> ("npm" | "pypi" | "maven" | "nuget" | "generic" | "swift")
@@ -538,6 +644,21 @@ module Aws
538
644
  ) -> _ListRepositoriesInDomainResponseSuccess
539
645
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRepositoriesInDomainResponseSuccess
540
646
 
647
+ interface _ListSubPackageGroupsResponseSuccess
648
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSubPackageGroupsResult]
649
+ def package_groups: () -> ::Array[Types::PackageGroupSummary]
650
+ def next_token: () -> ::String
651
+ end
652
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeArtifact/Client.html#list_sub_package_groups-instance_method
653
+ def list_sub_package_groups: (
654
+ domain: ::String,
655
+ ?domain_owner: ::String,
656
+ package_group: ::String,
657
+ ?max_results: ::Integer,
658
+ ?next_token: ::String
659
+ ) -> _ListSubPackageGroupsResponseSuccess
660
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSubPackageGroupsResponseSuccess
661
+
541
662
  interface _ListTagsForResourceResponseSuccess
542
663
  include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResult]
543
664
  def tags: () -> ::Array[Types::Tag]
@@ -645,6 +766,46 @@ module Aws
645
766
  ) -> _UntagResourceResponseSuccess
646
767
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
647
768
 
769
+ interface _UpdatePackageGroupResponseSuccess
770
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePackageGroupResult]
771
+ def package_group: () -> Types::PackageGroupDescription
772
+ end
773
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeArtifact/Client.html#update_package_group-instance_method
774
+ def update_package_group: (
775
+ domain: ::String,
776
+ ?domain_owner: ::String,
777
+ package_group: ::String,
778
+ ?contact_info: ::String,
779
+ ?description: ::String
780
+ ) -> _UpdatePackageGroupResponseSuccess
781
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePackageGroupResponseSuccess
782
+
783
+ interface _UpdatePackageGroupOriginConfigurationResponseSuccess
784
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePackageGroupOriginConfigurationResult]
785
+ def package_group: () -> Types::PackageGroupDescription
786
+ def allowed_repository_updates: () -> ::Hash[("EXTERNAL_UPSTREAM" | "INTERNAL_UPSTREAM" | "PUBLISH"), ::Hash[("ADDED" | "REMOVED"), ::Array[::String]]]
787
+ end
788
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeArtifact/Client.html#update_package_group_origin_configuration-instance_method
789
+ def update_package_group_origin_configuration: (
790
+ domain: ::String,
791
+ ?domain_owner: ::String,
792
+ package_group: ::String,
793
+ ?restrictions: Hash[("EXTERNAL_UPSTREAM" | "INTERNAL_UPSTREAM" | "PUBLISH"), ("ALLOW" | "ALLOW_SPECIFIC_REPOSITORIES" | "BLOCK" | "INHERIT")],
794
+ ?add_allowed_repositories: Array[
795
+ {
796
+ repository_name: ::String?,
797
+ origin_restriction_type: ("EXTERNAL_UPSTREAM" | "INTERNAL_UPSTREAM" | "PUBLISH")?
798
+ },
799
+ ],
800
+ ?remove_allowed_repositories: Array[
801
+ {
802
+ repository_name: ::String?,
803
+ origin_restriction_type: ("EXTERNAL_UPSTREAM" | "INTERNAL_UPSTREAM" | "PUBLISH")?
804
+ },
805
+ ]
806
+ ) -> _UpdatePackageGroupOriginConfigurationResponseSuccess
807
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePackageGroupOriginConfigurationResponseSuccess
808
+
648
809
  interface _UpdatePackageVersionsStatusResponseSuccess
649
810
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePackageVersionsStatusResult]
650
811
  def successful_versions: () -> ::Hash[::String, Types::SuccessfulPackageVersionInfo]
data/sig/types.rbs CHANGED
@@ -33,6 +33,14 @@ module Aws::CodeArtifact
33
33
  SENSITIVE: []
34
34
  end
35
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
+
36
44
  class ConflictException
37
45
  attr_accessor message: ::String
38
46
  attr_accessor resource_id: ::String
@@ -73,6 +81,21 @@ module Aws::CodeArtifact
73
81
  SENSITIVE: []
74
82
  end
75
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
+
76
99
  class CreateRepositoryRequest
77
100
  attr_accessor domain: ::String
78
101
  attr_accessor domain_owner: ::String
@@ -111,6 +134,18 @@ module Aws::CodeArtifact
111
134
  SENSITIVE: []
112
135
  end
113
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
+
114
149
  class DeletePackageRequest
115
150
  attr_accessor domain: ::String
116
151
  attr_accessor domain_owner: ::String
@@ -180,6 +215,18 @@ module Aws::CodeArtifact
180
215
  SENSITIVE: []
181
216
  end
182
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
+
183
230
  class DescribePackageRequest
184
231
  attr_accessor domain: ::String
185
232
  attr_accessor domain_owner: ::String
@@ -284,6 +331,21 @@ module Aws::CodeArtifact
284
331
  SENSITIVE: []
285
332
  end
286
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
+
287
349
  class GetAuthorizationTokenRequest
288
350
  attr_accessor domain: ::String
289
351
  attr_accessor domain_owner: ::String
@@ -386,6 +448,38 @@ module Aws::CodeArtifact
386
448
  SENSITIVE: []
387
449
  end
388
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
+
389
483
  class ListDomainsRequest
390
484
  attr_accessor max_results: ::Integer
391
485
  attr_accessor next_token: ::String
@@ -398,6 +492,21 @@ module Aws::CodeArtifact
398
492
  SENSITIVE: []
399
493
  end
400
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
+
401
510
  class ListPackageVersionAssetsRequest
402
511
  attr_accessor domain: ::String
403
512
  attr_accessor domain_owner: ::String
@@ -519,6 +628,21 @@ module Aws::CodeArtifact
519
628
  SENSITIVE: []
520
629
  end
521
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
+
522
646
  class ListTagsForResourceRequest
523
647
  attr_accessor resource_arn: ::String
524
648
  SENSITIVE: []
@@ -545,6 +669,57 @@ module Aws::CodeArtifact
545
669
  SENSITIVE: []
546
670
  end
547
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
+
548
723
  class PackageOriginConfiguration
549
724
  attr_accessor restrictions: Types::PackageOriginRestrictions
550
725
  SENSITIVE: []
@@ -758,6 +933,36 @@ module Aws::CodeArtifact
758
933
  class UntagResourceResult < Aws::EmptyStructure
759
934
  end
760
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
+
761
966
  class UpdatePackageVersionsStatusRequest
762
967
  attr_accessor domain: ::String
763
968
  attr_accessor domain_owner: ::String
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-codeartifact
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.38.0
4
+ version: 1.40.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: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.191.0
22
+ version: 3.193.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement