aws-sdk-codeartifact 1.52.0 → 1.54.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: f96fec9cd672a34bf5cffce84d2c7844d6d49a9a4c28a1d407339dc9f1abd551
4
- data.tar.gz: 4f90bad19c458206f1d5f650a2290cd9830e8b050e67e118732b6eebf9751972
3
+ metadata.gz: 203e5a0126f4c357f54ffe6480eb4e40df29620b429574272e726bd24a247b23
4
+ data.tar.gz: a2408c55a591909e3c076f1e86e86af7bee48a6804512a2d281cabf42c886eec
5
5
  SHA512:
6
- metadata.gz: 952438b46c843a0689ae6ca962b7a7133d5fb86f66cb3fa7791780a6dc540d5d7c46305ec2576b32c40831ac652a2b2518d0302acf4d24f68d29ea175f1cb3f8
7
- data.tar.gz: 1118e5cd3dd7abbf922ad6077c65ca58aa730ce3592acadb539a904c353ceb6fbee98107642813f9810c2326745d69ff23ca2dfd7435389d926e632a71a0e76a
6
+ metadata.gz: abe7c3bf51183344adc2574a74ade1ec0318c1e753502c87098a894d67925a7d7ae956782ee2f26a9752fef27ba150a41a9762707d6a0828a6785a8ca51d949a
7
+ data.tar.gz: 85ec5f8316a6a93ace6972a2a23360c1f7928cf14f4f25be524821406ddb8e5d5c30296b8aa02ab803893396a0b3e996a9fbb237679602c5471af3a88e90b2d6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.54.0 (2024-10-01)
5
+ ------------------
6
+
7
+ * Feature - Add support for the dual stack endpoints.
8
+
9
+ 1.53.0 (2024-09-24)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.52.0 (2024-09-23)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.52.0
1
+ 1.54.0
@@ -36,8 +36,6 @@ require 'aws-sdk-core/plugins/telemetry.rb'
36
36
  require 'aws-sdk-core/plugins/sign.rb'
37
37
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
38
38
 
39
- Aws::Plugins::GlobalConfiguration.add_identifier(:codeartifact)
40
-
41
39
  module Aws::CodeArtifact
42
40
  # An API client for CodeArtifact. To construct a client, you need to configure a `:region` and `:credentials`.
43
41
  #
@@ -2257,6 +2255,9 @@ module Aws::CodeArtifact
2257
2255
  # Returns which endpoint of a repository to return. A repository has one
2258
2256
  # endpoint for each package format.
2259
2257
  #
2258
+ # @option params [String] :endpoint_type
2259
+ # A string that specifies the type of endpoint.
2260
+ #
2260
2261
  # @return [Types::GetRepositoryEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2261
2262
  #
2262
2263
  # * {Types::GetRepositoryEndpointResult#repository_endpoint #repository_endpoint} => String
@@ -2268,6 +2269,7 @@ module Aws::CodeArtifact
2268
2269
  # domain_owner: "AccountId",
2269
2270
  # repository: "RepositoryName", # required
2270
2271
  # format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift, cargo
2272
+ # endpoint_type: "dualstack", # accepts dualstack, ipv4
2271
2273
  # })
2272
2274
  #
2273
2275
  # @example Response structure
@@ -4019,7 +4021,7 @@ module Aws::CodeArtifact
4019
4021
  tracer: tracer
4020
4022
  )
4021
4023
  context[:gem_name] = 'aws-sdk-codeartifact'
4022
- context[:gem_version] = '1.52.0'
4024
+ context[:gem_version] = '1.54.0'
4023
4025
  Seahorse::Client::Request.new(handlers, context)
4024
4026
  end
4025
4027
 
@@ -74,6 +74,7 @@ module Aws::CodeArtifact
74
74
  DomainStatus = Shapes::StringShape.new(name: 'DomainStatus')
75
75
  DomainSummary = Shapes::StructureShape.new(name: 'DomainSummary')
76
76
  DomainSummaryList = Shapes::ListShape.new(name: 'DomainSummaryList')
77
+ EndpointType = Shapes::StringShape.new(name: 'EndpointType')
77
78
  ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
78
79
  ExternalConnectionName = Shapes::StringShape.new(name: 'ExternalConnectionName')
79
80
  ExternalConnectionStatus = Shapes::StringShape.new(name: 'ExternalConnectionStatus')
@@ -537,6 +538,7 @@ module Aws::CodeArtifact
537
538
  GetRepositoryEndpointRequest.add_member(:domain_owner, Shapes::ShapeRef.new(shape: AccountId, location: "querystring", location_name: "domain-owner"))
538
539
  GetRepositoryEndpointRequest.add_member(:repository, Shapes::ShapeRef.new(shape: RepositoryName, required: true, location: "querystring", location_name: "repository"))
539
540
  GetRepositoryEndpointRequest.add_member(:format, Shapes::ShapeRef.new(shape: PackageFormat, required: true, location: "querystring", location_name: "format"))
541
+ GetRepositoryEndpointRequest.add_member(:endpoint_type, Shapes::ShapeRef.new(shape: EndpointType, location: "querystring", location_name: "endpointType"))
540
542
  GetRepositoryEndpointRequest.struct_class = Types::GetRepositoryEndpointRequest
541
543
 
542
544
  GetRepositoryEndpointResult.add_member(:repository_endpoint, Shapes::ShapeRef.new(shape: String, location_name: "repositoryEndpoint"))
@@ -1821,13 +1821,18 @@ module Aws::CodeArtifact
1821
1821
  # one endpoint for each package format.
1822
1822
  # @return [String]
1823
1823
  #
1824
+ # @!attribute [rw] endpoint_type
1825
+ # A string that specifies the type of endpoint.
1826
+ # @return [String]
1827
+ #
1824
1828
  # @see http://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/GetRepositoryEndpointRequest AWS API Documentation
1825
1829
  #
1826
1830
  class GetRepositoryEndpointRequest < Struct.new(
1827
1831
  :domain,
1828
1832
  :domain_owner,
1829
1833
  :repository,
1830
- :format)
1834
+ :format,
1835
+ :endpoint_type)
1831
1836
  SENSITIVE = []
1832
1837
  include Aws::Structure
1833
1838
  end
@@ -3884,6 +3889,14 @@ module Aws::CodeArtifact
3884
3889
  # distributable format, such as a JAR file.
3885
3890
  #
3886
3891
  # * `nuget`: A NuGet package.
3892
+ #
3893
+ # * `generic`: A generic package.
3894
+ #
3895
+ # * `ruby`: A Ruby package.
3896
+ #
3897
+ # * `swift`: A Swift package.
3898
+ #
3899
+ # * `cargo`: A Cargo package.
3887
3900
  # @return [String]
3888
3901
  #
3889
3902
  # @!attribute [rw] status
@@ -11,6 +11,8 @@
11
11
  require 'aws-sdk-core'
12
12
  require 'aws-sigv4'
13
13
 
14
+ Aws::Plugins::GlobalConfiguration.add_identifier(:codeartifact)
15
+
14
16
  # This module provides support for CodeArtifact. This module is available in the
15
17
  # `aws-sdk-codeartifact` gem.
16
18
  #
@@ -52,7 +54,7 @@ module Aws::CodeArtifact
52
54
  autoload :EndpointProvider, 'aws-sdk-codeartifact/endpoint_provider'
53
55
  autoload :Endpoints, 'aws-sdk-codeartifact/endpoints'
54
56
 
55
- GEM_VERSION = '1.52.0'
57
+ GEM_VERSION = '1.54.0'
56
58
 
57
59
  end
58
60
 
data/sig/client.rbs CHANGED
@@ -451,7 +451,8 @@ module Aws
451
451
  domain: ::String,
452
452
  ?domain_owner: ::String,
453
453
  repository: ::String,
454
- format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift" | "cargo")
454
+ format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift" | "cargo"),
455
+ ?endpoint_type: ("dualstack" | "ipv4")
455
456
  ) -> _GetRepositoryEndpointResponseSuccess
456
457
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRepositoryEndpointResponseSuccess
457
458
 
data/sig/types.rbs CHANGED
@@ -417,6 +417,7 @@ module Aws::CodeArtifact
417
417
  attr_accessor domain_owner: ::String
418
418
  attr_accessor repository: ::String
419
419
  attr_accessor format: ("npm" | "pypi" | "maven" | "nuget" | "generic" | "ruby" | "swift" | "cargo")
420
+ attr_accessor endpoint_type: ("dualstack" | "ipv4")
420
421
  SENSITIVE: []
421
422
  end
422
423
 
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.52.0
4
+ version: 1.54.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-09-23 00:00:00.000000000 Z
11
+ date: 2024-10-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core