aws-sdk-codeartifact 1.53.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-codeartifact/client.rb +5 -1
- data/lib/aws-sdk-codeartifact/client_api.rb +2 -0
- data/lib/aws-sdk-codeartifact/types.rb +14 -1
- data/lib/aws-sdk-codeartifact.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 203e5a0126f4c357f54ffe6480eb4e40df29620b429574272e726bd24a247b23
|
4
|
+
data.tar.gz: a2408c55a591909e3c076f1e86e86af7bee48a6804512a2d281cabf42c886eec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: abe7c3bf51183344adc2574a74ade1ec0318c1e753502c87098a894d67925a7d7ae956782ee2f26a9752fef27ba150a41a9762707d6a0828a6785a8ca51d949a
|
7
|
+
data.tar.gz: 85ec5f8316a6a93ace6972a2a23360c1f7928cf14f4f25be524821406ddb8e5d5c30296b8aa02ab803893396a0b3e996a9fbb237679602c5471af3a88e90b2d6
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.54.0
|
@@ -2255,6 +2255,9 @@ module Aws::CodeArtifact
|
|
2255
2255
|
# Returns which endpoint of a repository to return. A repository has one
|
2256
2256
|
# endpoint for each package format.
|
2257
2257
|
#
|
2258
|
+
# @option params [String] :endpoint_type
|
2259
|
+
# A string that specifies the type of endpoint.
|
2260
|
+
#
|
2258
2261
|
# @return [Types::GetRepositoryEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2259
2262
|
#
|
2260
2263
|
# * {Types::GetRepositoryEndpointResult#repository_endpoint #repository_endpoint} => String
|
@@ -2266,6 +2269,7 @@ module Aws::CodeArtifact
|
|
2266
2269
|
# domain_owner: "AccountId",
|
2267
2270
|
# repository: "RepositoryName", # required
|
2268
2271
|
# format: "npm", # required, accepts npm, pypi, maven, nuget, generic, ruby, swift, cargo
|
2272
|
+
# endpoint_type: "dualstack", # accepts dualstack, ipv4
|
2269
2273
|
# })
|
2270
2274
|
#
|
2271
2275
|
# @example Response structure
|
@@ -4017,7 +4021,7 @@ module Aws::CodeArtifact
|
|
4017
4021
|
tracer: tracer
|
4018
4022
|
)
|
4019
4023
|
context[:gem_name] = 'aws-sdk-codeartifact'
|
4020
|
-
context[:gem_version] = '1.
|
4024
|
+
context[:gem_version] = '1.54.0'
|
4021
4025
|
Seahorse::Client::Request.new(handlers, context)
|
4022
4026
|
end
|
4023
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
|
data/lib/aws-sdk-codeartifact.rb
CHANGED
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.
|
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-
|
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
|