aws-sdk-codeartifact 1.26.0 → 1.28.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1887a093b00f0e31c4a69940b4055000e1722d13b70fef8fcb68fe327ed9500a
4
- data.tar.gz: 1da2f39656d8b920214bcadd4f3d7b353649fbb6f92c51678508576e305290eb
3
+ metadata.gz: 62c4474e9e5f8e5f5a59834c4e6ff2fa64ead2431d84d040988c73e64efc5558
4
+ data.tar.gz: 2e62017bb5676c6f6e6fd02a0075d37e063067e9e4229858cbd0463c79748f9d
5
5
  SHA512:
6
- metadata.gz: 6aa7fb685b84ba0e6ae5f5771bfd829d0dc83cd552deab68db9ac5a96693791ca7bd88d13cafdf26a817514c2e5bb924bfd03a213259bb7c2d877f35452f520e
7
- data.tar.gz: 692313a434d8bfadae4183d159a5da188f1cca35aeff9a67a07207c96cf69c89406bd8d6a8e64d09c9b6ed0c875a5c658247b9a243295bc9996f0154718ca0bc
6
+ metadata.gz: d60d28a6daae744d7f040794fbe30155ce584bd7803ef425b434bfb24fec04ead02e4892b0929a804a6e5fe4a0b6434e4b5ff7460a917ba41e55ce0c7cbe7693
7
+ data.tar.gz: 217f3b21f44fe0e118dd6009d06f38648458853e9fdd65d98963affd3e510024407961bbd738d231de47ad50feb121e3e57f8a580f9f8b8aa622d49d9f7329c1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.28.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.27.0 (2023-03-23)
10
+ ------------------
11
+
12
+ * Feature - Repository CreationTime is added to the CreateRepository and ListRepositories API responses.
13
+
4
14
  1.26.0 (2023-03-09)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.26.0
1
+ 1.28.0
@@ -275,6 +275,11 @@ module Aws::CodeArtifact
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -404,6 +409,8 @@ module Aws::CodeArtifact
404
409
  #
405
410
  # * `public:maven-commonsware` - for the CommonsWare Android repository.
406
411
  #
412
+ # * `public:maven-clojars` - for the Clojars repository.
413
+ #
407
414
  # @return [Types::AssociateExternalConnectionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
408
415
  #
409
416
  # * {Types::AssociateExternalConnectionResult#repository #repository} => Types::RepositoryDescription
@@ -431,6 +438,7 @@ module Aws::CodeArtifact
431
438
  # resp.repository.external_connections[0].external_connection_name #=> String
432
439
  # resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic"
433
440
  # resp.repository.external_connections[0].status #=> String, one of "Available"
441
+ # resp.repository.created_time #=> Time
434
442
  #
435
443
  # @see http://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/AssociateExternalConnection AWS API Documentation
436
444
  #
@@ -481,7 +489,7 @@ module Aws::CodeArtifact
481
489
  # component, package versions of those formats do not have a
482
490
  # namespace.
483
491
  #
484
- # * The namespace of a generic package is it’s `namespace`.
492
+ # * The namespace of a generic package is its `namespace`.
485
493
  #
486
494
  # @option params [required, String] :package
487
495
  # The name of the package that contains the versions to be copied.
@@ -711,6 +719,7 @@ module Aws::CodeArtifact
711
719
  # resp.repository.external_connections[0].external_connection_name #=> String
712
720
  # resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic"
713
721
  # resp.repository.external_connections[0].status #=> String, one of "Available"
722
+ # resp.repository.created_time #=> Time
714
723
  #
715
724
  # @see http://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/CreateRepository AWS API Documentation
716
725
  #
@@ -839,6 +848,8 @@ module Aws::CodeArtifact
839
848
  # * Python and NuGet packages do not contain corresponding components,
840
849
  # packages of those formats do not have a namespace.
841
850
  #
851
+ # * The namespace of a generic package is its `namespace`.
852
+ #
842
853
  # @option params [required, String] :package
843
854
  # The name of the package to delete.
844
855
  #
@@ -915,7 +926,7 @@ module Aws::CodeArtifact
915
926
  # component, package versions of those formats do not have a
916
927
  # namespace.
917
928
  #
918
- # * The namespace of a generic package is it’s `namespace`.
929
+ # * The namespace of a generic package is its `namespace`.
919
930
  #
920
931
  # @option params [required, String] :package
921
932
  # The name of the package with the versions to delete.
@@ -1001,6 +1012,7 @@ module Aws::CodeArtifact
1001
1012
  # resp.repository.external_connections[0].external_connection_name #=> String
1002
1013
  # resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic"
1003
1014
  # resp.repository.external_connections[0].status #=> String, one of "Available"
1015
+ # resp.repository.created_time #=> Time
1004
1016
  #
1005
1017
  # @see http://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/DeleteRepository AWS API Documentation
1006
1018
  #
@@ -1146,7 +1158,7 @@ module Aws::CodeArtifact
1146
1158
  # * Python and NuGet packages do not contain a corresponding component,
1147
1159
  # packages of those formats do not have a namespace.
1148
1160
  #
1149
- # * The namespace of a generic package is it’s `namespace`.
1161
+ # * The namespace of a generic package is its `namespace`.
1150
1162
  #
1151
1163
  # @option params [required, String] :package
1152
1164
  # The name of the requested package.
@@ -1217,7 +1229,7 @@ module Aws::CodeArtifact
1217
1229
  # component, package versions of those formats do not have a
1218
1230
  # namespace.
1219
1231
  #
1220
- # * The namespace of a generic package is it’s `namespace`.
1232
+ # * The namespace of a generic package is its `namespace`.
1221
1233
  #
1222
1234
  # @option params [required, String] :package
1223
1235
  # The name of the requested package version.
@@ -1309,6 +1321,7 @@ module Aws::CodeArtifact
1309
1321
  # resp.repository.external_connections[0].external_connection_name #=> String
1310
1322
  # resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic"
1311
1323
  # resp.repository.external_connections[0].status #=> String, one of "Available"
1324
+ # resp.repository.created_time #=> Time
1312
1325
  #
1313
1326
  # @see http://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/DescribeRepository AWS API Documentation
1314
1327
  #
@@ -1363,6 +1376,7 @@ module Aws::CodeArtifact
1363
1376
  # resp.repository.external_connections[0].external_connection_name #=> String
1364
1377
  # resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic"
1365
1378
  # resp.repository.external_connections[0].status #=> String, one of "Available"
1379
+ # resp.repository.created_time #=> Time
1366
1380
  #
1367
1381
  # @see http://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/DisassociateExternalConnection AWS API Documentation
1368
1382
  #
@@ -1419,7 +1433,7 @@ module Aws::CodeArtifact
1419
1433
  # component, package versions of those formats do not have a
1420
1434
  # namespace.
1421
1435
  #
1422
- # * The namespace of a generic package is it’s `namespace`.
1436
+ # * The namespace of a generic package is its `namespace`.
1423
1437
  #
1424
1438
  # @option params [required, String] :package
1425
1439
  # The name of the package with the versions you want to dispose.
@@ -1624,7 +1638,7 @@ module Aws::CodeArtifact
1624
1638
  # component, package versions of those formats do not have a
1625
1639
  # namespace.
1626
1640
  #
1627
- # * The namespace of a generic package is it’s `namespace`.
1641
+ # * The namespace of a generic package is its `namespace`.
1628
1642
  #
1629
1643
  # @option params [required, String] :package
1630
1644
  # The name of the package that contains the requested asset.
@@ -1702,8 +1716,6 @@ module Aws::CodeArtifact
1702
1716
  # The package version component that specifies its namespace depends on
1703
1717
  # its type. For example:
1704
1718
  #
1705
- # * The namespace of a Maven package version is its `groupId`.
1706
- #
1707
1719
  # * The namespace of an npm package version is its `scope`.
1708
1720
  #
1709
1721
  # * Python and NuGet package versions do not contain a corresponding
@@ -1935,7 +1947,7 @@ module Aws::CodeArtifact
1935
1947
  # component, package versions of those formats do not have a
1936
1948
  # namespace.
1937
1949
  #
1938
- # * The namespace of a generic package is it’s `namespace`.
1950
+ # * The namespace of a generic package is its `namespace`.
1939
1951
  #
1940
1952
  # @option params [required, String] :package
1941
1953
  # The name of the package that contains the requested package version
@@ -2041,7 +2053,7 @@ module Aws::CodeArtifact
2041
2053
  # component, package versions of those formats do not have a
2042
2054
  # namespace.
2043
2055
  #
2044
- # * The namespace of a generic package is it’s `namespace`.
2056
+ # * The namespace of a generic package is its `namespace`.
2045
2057
  #
2046
2058
  # @option params [required, String] :package
2047
2059
  # The name of the package versions' package.
@@ -2136,7 +2148,7 @@ module Aws::CodeArtifact
2136
2148
  # * Python and NuGet packages do not contain a corresponding component,
2137
2149
  # packages of those formats do not have a namespace.
2138
2150
  #
2139
- # * The namespace of a generic package is it’s `namespace`.
2151
+ # * The namespace of a generic package is its `namespace`.
2140
2152
  #
2141
2153
  # @option params [required, String] :package
2142
2154
  # The name of the package for which you want to request package
@@ -2248,7 +2260,7 @@ module Aws::CodeArtifact
2248
2260
  # * Python and NuGet packages do not contain a corresponding component,
2249
2261
  # packages of those formats do not have a namespace.
2250
2262
  #
2251
- # * The namespace of a generic package is it’s `namespace`.
2263
+ # * The namespace of a generic package is its `namespace`.
2252
2264
  #
2253
2265
  # @option params [String] :package_prefix
2254
2266
  # A prefix used to filter requested packages. Only packages with names
@@ -2368,6 +2380,7 @@ module Aws::CodeArtifact
2368
2380
  # resp.repositories[0].domain_owner #=> String
2369
2381
  # resp.repositories[0].arn #=> String
2370
2382
  # resp.repositories[0].description #=> String
2383
+ # resp.repositories[0].created_time #=> Time
2371
2384
  # resp.next_token #=> String
2372
2385
  #
2373
2386
  # @see http://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/ListRepositories AWS API Documentation
@@ -2438,6 +2451,7 @@ module Aws::CodeArtifact
2438
2451
  # resp.repositories[0].domain_owner #=> String
2439
2452
  # resp.repositories[0].arn #=> String
2440
2453
  # resp.repositories[0].description #=> String
2454
+ # resp.repositories[0].created_time #=> Time
2441
2455
  # resp.next_token #=> String
2442
2456
  #
2443
2457
  # @see http://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/ListRepositoriesInDomain AWS API Documentation
@@ -2484,14 +2498,16 @@ module Aws::CodeArtifact
2484
2498
  # files).
2485
2499
  #
2486
2500
  # The `unfinished` flag can be used to keep the package version in the
2487
- # `Unfinished` state until all of it’s assets have been uploaded (see
2501
+ # `Unfinished` state until all of its assets have been uploaded (see
2488
2502
  # [Package version status][1] in the *CodeArtifact user guide*). To set
2489
2503
  # the package version’s status to `Published`, omit the `unfinished`
2490
2504
  # flag when uploading the final asset, or set the status using
2491
2505
  # [UpdatePackageVersionStatus][2]. Once a package version’s status is
2492
2506
  # set to `Published`, it cannot change back to `Unfinished`.
2493
2507
  #
2494
- # <note markdown="1"> Only generic packages can be published using this API.
2508
+ # <note markdown="1"> Only generic packages can be published using this API. For more
2509
+ # information, see [Using generic packages][3] in the *CodeArtifact User
2510
+ # Guide*.
2495
2511
  #
2496
2512
  # </note>
2497
2513
  #
@@ -2499,6 +2515,7 @@ module Aws::CodeArtifact
2499
2515
  #
2500
2516
  # [1]: https://docs.aws.amazon.com/codeartifact/latest/ug/packages-overview.html#package-version-status.html#package-version-status
2501
2517
  # [2]: https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_UpdatePackageVersionsStatus.html
2518
+ # [3]: https://docs.aws.amazon.com/codeartifact/latest/ug/using-generic.html
2502
2519
  #
2503
2520
  # @option params [required, String] :domain
2504
2521
  # The name of the domain that contains the repository that contains the
@@ -2535,11 +2552,16 @@ module Aws::CodeArtifact
2535
2552
  #
2536
2553
  # @option params [required, String] :asset_sha256
2537
2554
  # The SHA256 hash of the `assetContent` to publish. This value must be
2538
- # calculated by the caller and provided with the request.
2555
+ # calculated by the caller and provided with the request (see
2556
+ # [Publishing a generic package][1] in the *CodeArtifact User Guide*).
2539
2557
  #
2540
2558
  # This value is used as an integrity check to verify that the
2541
2559
  # `assetContent` has not changed after it was originally sent.
2542
2560
  #
2561
+ #
2562
+ #
2563
+ # [1]: https://docs.aws.amazon.com/codeartifact/latest/ug/using-generic.html#publishing-generic-packages
2564
+ #
2543
2565
  # @option params [Boolean] :unfinished
2544
2566
  # Specifies whether the package version should remain in the
2545
2567
  # `unfinished` state. If omitted, the package version status will be set
@@ -2550,7 +2572,7 @@ module Aws::CodeArtifact
2550
2572
  #
2551
2573
  #
2552
2574
  #
2553
- # [1]: https://docs.aws.amazon.com/codeartifact/latest/ug/packages-overview.html#package-version-status.html#package-version-status
2575
+ # [1]: https://docs.aws.amazon.com/codeartifact/latest/ug/packages-overview.html#package-version-status
2554
2576
  #
2555
2577
  # @return [Types::PublishPackageVersionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2556
2578
  #
@@ -2699,7 +2721,7 @@ module Aws::CodeArtifact
2699
2721
  # * Python and NuGet packages do not contain a corresponding component,
2700
2722
  # packages of those formats do not have a namespace.
2701
2723
  #
2702
- # * The namespace of a generic package is it’s `namespace`.
2724
+ # * The namespace of a generic package is its `namespace`.
2703
2725
  #
2704
2726
  # @option params [required, String] :package
2705
2727
  # The name of the package to be updated.
@@ -2908,7 +2930,7 @@ module Aws::CodeArtifact
2908
2930
  # component, package versions of those formats do not have a
2909
2931
  # namespace.
2910
2932
  #
2911
- # * The namespace of a generic package is it’s `namespace`.
2933
+ # * The namespace of a generic package is its `namespace`.
2912
2934
  #
2913
2935
  # @option params [required, String] :package
2914
2936
  # The name of the package with the version statuses to update.
@@ -3029,6 +3051,7 @@ module Aws::CodeArtifact
3029
3051
  # resp.repository.external_connections[0].external_connection_name #=> String
3030
3052
  # resp.repository.external_connections[0].package_format #=> String, one of "npm", "pypi", "maven", "nuget", "generic"
3031
3053
  # resp.repository.external_connections[0].status #=> String, one of "Available"
3054
+ # resp.repository.created_time #=> Time
3032
3055
  #
3033
3056
  # @see http://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/UpdateRepository AWS API Documentation
3034
3057
  #
@@ -3052,7 +3075,7 @@ module Aws::CodeArtifact
3052
3075
  params: params,
3053
3076
  config: config)
3054
3077
  context[:gem_name] = 'aws-sdk-codeartifact'
3055
- context[:gem_version] = '1.26.0'
3078
+ context[:gem_version] = '1.28.0'
3056
3079
  Seahorse::Client::Request.new(handlers, context)
3057
3080
  end
3058
3081
 
@@ -710,6 +710,7 @@ module Aws::CodeArtifact
710
710
  RepositoryDescription.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
711
711
  RepositoryDescription.add_member(:upstreams, Shapes::ShapeRef.new(shape: UpstreamRepositoryInfoList, location_name: "upstreams"))
712
712
  RepositoryDescription.add_member(:external_connections, Shapes::ShapeRef.new(shape: RepositoryExternalConnectionInfoList, location_name: "externalConnections"))
713
+ RepositoryDescription.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdTime"))
713
714
  RepositoryDescription.struct_class = Types::RepositoryDescription
714
715
 
715
716
  RepositoryExternalConnectionInfo.add_member(:external_connection_name, Shapes::ShapeRef.new(shape: ExternalConnectionName, location_name: "externalConnectionName"))
@@ -725,6 +726,7 @@ module Aws::CodeArtifact
725
726
  RepositorySummary.add_member(:domain_owner, Shapes::ShapeRef.new(shape: AccountId, location_name: "domainOwner"))
726
727
  RepositorySummary.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
727
728
  RepositorySummary.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
729
+ RepositorySummary.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdTime"))
728
730
  RepositorySummary.struct_class = Types::RepositorySummary
729
731
 
730
732
  RepositorySummaryList.member = Shapes::ShapeRef.new(shape: RepositorySummary)
@@ -80,6 +80,8 @@ module Aws::CodeArtifact
80
80
  #
81
81
  # * `public:maven-commonsware` - for the CommonsWare Android
82
82
  # repository.
83
+ #
84
+ # * `public:maven-clojars` - for the Clojars repository.
83
85
  # @return [String]
84
86
  #
85
87
  # @see http://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/AssociateExternalConnectionRequest AWS API Documentation
@@ -166,7 +168,7 @@ module Aws::CodeArtifact
166
168
  # component, package versions of those formats do not have a
167
169
  # namespace.
168
170
  #
169
- # * The namespace of a generic package is it’s `namespace`.
171
+ # * The namespace of a generic package is its `namespace`.
170
172
  # @return [String]
171
173
  #
172
174
  # @!attribute [rw] package
@@ -477,6 +479,8 @@ module Aws::CodeArtifact
477
479
  #
478
480
  # * Python and NuGet packages do not contain corresponding components,
479
481
  # packages of those formats do not have a namespace.
482
+ #
483
+ # * The namespace of a generic package is its `namespace`.
480
484
  # @return [String]
481
485
  #
482
486
  # @!attribute [rw] package
@@ -540,7 +544,7 @@ module Aws::CodeArtifact
540
544
  # component, package versions of those formats do not have a
541
545
  # namespace.
542
546
  #
543
- # * The namespace of a generic package is it’s `namespace`.
547
+ # * The namespace of a generic package is its `namespace`.
544
548
  # @return [String]
545
549
  #
546
550
  # @!attribute [rw] package
@@ -745,7 +749,7 @@ module Aws::CodeArtifact
745
749
  # * Python and NuGet packages do not contain a corresponding
746
750
  # component, packages of those formats do not have a namespace.
747
751
  #
748
- # * The namespace of a generic package is it’s `namespace`.
752
+ # * The namespace of a generic package is its `namespace`.
749
753
  # @return [String]
750
754
  #
751
755
  # @!attribute [rw] package
@@ -813,7 +817,7 @@ module Aws::CodeArtifact
813
817
  # component, package versions of those formats do not have a
814
818
  # namespace.
815
819
  #
816
- # * The namespace of a generic package is it’s `namespace`.
820
+ # * The namespace of a generic package is its `namespace`.
817
821
  # @return [String]
818
822
  #
819
823
  # @!attribute [rw] package
@@ -967,7 +971,7 @@ module Aws::CodeArtifact
967
971
  # component, package versions of those formats do not have a
968
972
  # namespace.
969
973
  #
970
- # * The namespace of a generic package is it’s `namespace`.
974
+ # * The namespace of a generic package is its `namespace`.
971
975
  # @return [String]
972
976
  #
973
977
  # @!attribute [rw] package
@@ -1274,7 +1278,7 @@ module Aws::CodeArtifact
1274
1278
  # component, package versions of those formats do not have a
1275
1279
  # namespace.
1276
1280
  #
1277
- # * The namespace of a generic package is it’s `namespace`.
1281
+ # * The namespace of a generic package is its `namespace`.
1278
1282
  # @return [String]
1279
1283
  #
1280
1284
  # @!attribute [rw] package
@@ -1363,8 +1367,6 @@ module Aws::CodeArtifact
1363
1367
  # The package version component that specifies its namespace depends
1364
1368
  # on its type. For example:
1365
1369
  #
1366
- # * The namespace of a Maven package version is its `groupId`.
1367
- #
1368
1370
  # * The namespace of an npm package version is its `scope`.
1369
1371
  #
1370
1372
  # * Python and NuGet package versions do not contain a corresponding
@@ -1629,7 +1631,7 @@ module Aws::CodeArtifact
1629
1631
  # component, package versions of those formats do not have a
1630
1632
  # namespace.
1631
1633
  #
1632
- # * The namespace of a generic package is it’s `namespace`.
1634
+ # * The namespace of a generic package is its `namespace`.
1633
1635
  # @return [String]
1634
1636
  #
1635
1637
  # @!attribute [rw] package
@@ -1758,7 +1760,7 @@ module Aws::CodeArtifact
1758
1760
  # component, package versions of those formats do not have a
1759
1761
  # namespace.
1760
1762
  #
1761
- # * The namespace of a generic package is it’s `namespace`.
1763
+ # * The namespace of a generic package is its `namespace`.
1762
1764
  # @return [String]
1763
1765
  #
1764
1766
  # @!attribute [rw] package
@@ -1881,7 +1883,7 @@ module Aws::CodeArtifact
1881
1883
  # * Python and NuGet packages do not contain a corresponding
1882
1884
  # component, packages of those formats do not have a namespace.
1883
1885
  #
1884
- # * The namespace of a generic package is it’s `namespace`.
1886
+ # * The namespace of a generic package is its `namespace`.
1885
1887
  # @return [String]
1886
1888
  #
1887
1889
  # @!attribute [rw] package
@@ -2023,7 +2025,7 @@ module Aws::CodeArtifact
2023
2025
  # * Python and NuGet packages do not contain a corresponding
2024
2026
  # component, packages of those formats do not have a namespace.
2025
2027
  #
2026
- # * The namespace of a generic package is it’s `namespace`.
2028
+ # * The namespace of a generic package is its `namespace`.
2027
2029
  # @return [String]
2028
2030
  #
2029
2031
  # @!attribute [rw] package_prefix
@@ -2309,7 +2311,7 @@ module Aws::CodeArtifact
2309
2311
  # * Python and NuGet packages do not contain a corresponding
2310
2312
  # component, packages of those formats do not have a namespace.
2311
2313
  #
2312
- # * The namespace of a generic package is it’s `namespace`.
2314
+ # * The namespace of a generic package is its `namespace`.
2313
2315
  # @return [String]
2314
2316
  #
2315
2317
  # @!attribute [rw] name
@@ -2388,7 +2390,7 @@ module Aws::CodeArtifact
2388
2390
  # * Python and NuGet packages do not contain a corresponding
2389
2391
  # component, packages of those formats do not have a namespace.
2390
2392
  #
2391
- # * The namespace of a generic package is it’s `namespace`.
2393
+ # * The namespace of a generic package is its `namespace`.
2392
2394
  # @return [String]
2393
2395
  #
2394
2396
  # @!attribute [rw] package
@@ -2435,7 +2437,7 @@ module Aws::CodeArtifact
2435
2437
  # component, package versions of those formats do not have a
2436
2438
  # namespace.
2437
2439
  #
2438
- # * The namespace of a generic package is it’s `namespace`.
2440
+ # * The namespace of a generic package is its `namespace`.
2439
2441
  # @return [String]
2440
2442
  #
2441
2443
  # @!attribute [rw] package_name
@@ -2659,10 +2661,15 @@ module Aws::CodeArtifact
2659
2661
  #
2660
2662
  # @!attribute [rw] asset_sha256
2661
2663
  # The SHA256 hash of the `assetContent` to publish. This value must be
2662
- # calculated by the caller and provided with the request.
2664
+ # calculated by the caller and provided with the request (see
2665
+ # [Publishing a generic package][1] in the *CodeArtifact User Guide*).
2663
2666
  #
2664
2667
  # This value is used as an integrity check to verify that the
2665
2668
  # `assetContent` has not changed after it was originally sent.
2669
+ #
2670
+ #
2671
+ #
2672
+ # [1]: https://docs.aws.amazon.com/codeartifact/latest/ug/using-generic.html#publishing-generic-packages
2666
2673
  # @return [String]
2667
2674
  #
2668
2675
  # @!attribute [rw] unfinished
@@ -2675,7 +2682,7 @@ module Aws::CodeArtifact
2675
2682
  #
2676
2683
  #
2677
2684
  #
2678
- # [1]: https://docs.aws.amazon.com/codeartifact/latest/ug/packages-overview.html#package-version-status.html#package-version-status
2685
+ # [1]: https://docs.aws.amazon.com/codeartifact/latest/ug/packages-overview.html#package-version-status
2679
2686
  # @return [Boolean]
2680
2687
  #
2681
2688
  # @see http://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/PublishPackageVersionRequest AWS API Documentation
@@ -2820,7 +2827,7 @@ module Aws::CodeArtifact
2820
2827
  # * Python and NuGet packages do not contain a corresponding
2821
2828
  # component, packages of those formats do not have a namespace.
2822
2829
  #
2823
- # * The namespace of a generic package is it’s `namespace`.
2830
+ # * The namespace of a generic package is its `namespace`.
2824
2831
  # @return [String]
2825
2832
  #
2826
2833
  # @!attribute [rw] package
@@ -2978,6 +2985,11 @@ module Aws::CodeArtifact
2978
2985
  # An array of external connections associated with the repository.
2979
2986
  # @return [Array<Types::RepositoryExternalConnectionInfo>]
2980
2987
  #
2988
+ # @!attribute [rw] created_time
2989
+ # A timestamp that represents the date and time the repository was
2990
+ # created.
2991
+ # @return [Time]
2992
+ #
2981
2993
  # @see http://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/RepositoryDescription AWS API Documentation
2982
2994
  #
2983
2995
  class RepositoryDescription < Struct.new(
@@ -2988,7 +3000,8 @@ module Aws::CodeArtifact
2988
3000
  :arn,
2989
3001
  :description,
2990
3002
  :upstreams,
2991
- :external_connections)
3003
+ :external_connections,
3004
+ :created_time)
2992
3005
  SENSITIVE = []
2993
3006
  include Aws::Structure
2994
3007
  end
@@ -3003,14 +3016,14 @@ module Aws::CodeArtifact
3003
3016
  # The package format associated with a repository's external
3004
3017
  # connection. The valid package formats are:
3005
3018
  #
3006
- # * `npm`\: A Node Package Manager (npm) package.
3019
+ # * `npm`: A Node Package Manager (npm) package.
3007
3020
  #
3008
- # * `pypi`\: A Python Package Index (PyPI) package.
3021
+ # * `pypi`: A Python Package Index (PyPI) package.
3009
3022
  #
3010
- # * `maven`\: A Maven package that contains compiled code in a
3023
+ # * `maven`: A Maven package that contains compiled code in a
3011
3024
  # distributable format, such as a JAR file.
3012
3025
  #
3013
- # * `nuget`\: A NuGet package.
3026
+ # * `nuget`: A NuGet package.
3014
3027
  # @return [String]
3015
3028
  #
3016
3029
  # @!attribute [rw] status
@@ -3061,6 +3074,11 @@ module Aws::CodeArtifact
3061
3074
  # The description of the repository.
3062
3075
  # @return [String]
3063
3076
  #
3077
+ # @!attribute [rw] created_time
3078
+ # A timestamp that represents the date and time the repository was
3079
+ # created.
3080
+ # @return [Time]
3081
+ #
3064
3082
  # @see http://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/RepositorySummary AWS API Documentation
3065
3083
  #
3066
3084
  class RepositorySummary < Struct.new(
@@ -3069,7 +3087,8 @@ module Aws::CodeArtifact
3069
3087
  :domain_name,
3070
3088
  :domain_owner,
3071
3089
  :arn,
3072
- :description)
3090
+ :description,
3091
+ :created_time)
3073
3092
  SENSITIVE = []
3074
3093
  include Aws::Structure
3075
3094
  end
@@ -3282,7 +3301,7 @@ module Aws::CodeArtifact
3282
3301
  # component, package versions of those formats do not have a
3283
3302
  # namespace.
3284
3303
  #
3285
- # * The namespace of a generic package is it’s `namespace`.
3304
+ # * The namespace of a generic package is its `namespace`.
3286
3305
  # @return [String]
3287
3306
  #
3288
3307
  # @!attribute [rw] package
@@ -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.26.0'
55
+ GEM_VERSION = '1.28.0'
56
56
 
57
57
  end
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.26.0
4
+ version: 1.28.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: 2023-03-09 00:00:00.000000000 Z
11
+ date: 2023-05-31 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.165.0
22
+ version: 3.174.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.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement