aws-sdk-cleanroomsml 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cleanroomsml/client.rb +5 -1
- data/lib/aws-sdk-cleanroomsml/client_api.rb +1 -1
- data/lib/aws-sdk-cleanroomsml/types.rb +4 -0
- data/lib/aws-sdk-cleanroomsml.rb +4 -4
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 76e1292a880d2c074eb608a7f61fb39b69ab3c7da4ab58556b40b2084c38a211
|
4
|
+
data.tar.gz: cbc11aa2b7cf94b2e6d3fb47446962ff21f3cc6ddb2c951da485abaa20b3efb3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: af240f38cffe7e854a03735e602bce5baea1199f7ec51d88a4f0a72631bddb4935f02917df1b11d5171fa5dda958426f2ade7751ca4d5ef5ffd65819fce68673
|
7
|
+
data.tar.gz: 796dd1f39471fba79d4ec8b399a168926480a4ce0795e2a5b147c4fa32ccb005f01accc9b5c47b29106972a9e1cec98b89290344838a5769c814525651e8fc20
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.1.0
|
@@ -503,6 +503,10 @@ module Aws::CleanRoomsML
|
|
503
503
|
# model, by default. Tags in the StartAudienceGenerationJob will
|
504
504
|
# override the default.
|
505
505
|
#
|
506
|
+
# When the client is in a different account than the configured audience
|
507
|
+
# model, the tags from the client are never applied to a resource in the
|
508
|
+
# caller's account.
|
509
|
+
#
|
506
510
|
# @option params [String] :description
|
507
511
|
# The description of the configured audience model.
|
508
512
|
#
|
@@ -1705,7 +1709,7 @@ module Aws::CleanRoomsML
|
|
1705
1709
|
params: params,
|
1706
1710
|
config: config)
|
1707
1711
|
context[:gem_name] = 'aws-sdk-cleanroomsml'
|
1708
|
-
context[:gem_version] = '1.
|
1712
|
+
context[:gem_version] = '1.1.0'
|
1709
1713
|
Seahorse::Client::Request.new(handlers, context)
|
1710
1714
|
end
|
1711
1715
|
|
@@ -531,7 +531,7 @@ module Aws::CleanRoomsML
|
|
531
531
|
"endpointPrefix" => "cleanrooms-ml",
|
532
532
|
"jsonVersion" => "1.1",
|
533
533
|
"protocol" => "rest-json",
|
534
|
-
"serviceFullName" => "
|
534
|
+
"serviceFullName" => "AWS Clean Rooms ML",
|
535
535
|
"serviceId" => "CleanRoomsML",
|
536
536
|
"signatureVersion" => "v4",
|
537
537
|
"signingName" => "cleanrooms-ml",
|
@@ -519,6 +519,10 @@ module Aws::CleanRoomsML
|
|
519
519
|
# `FROM_PARENT_RESOURCE`, the audience generation job inherits the
|
520
520
|
# tags from the configured audience model, by default. Tags in the
|
521
521
|
# StartAudienceGenerationJob will override the default.
|
522
|
+
#
|
523
|
+
# When the client is in a different account than the configured
|
524
|
+
# audience model, the tags from the client are never applied to a
|
525
|
+
# resource in the caller's account.
|
522
526
|
# @return [String]
|
523
527
|
#
|
524
528
|
# @!attribute [rw] description
|
data/lib/aws-sdk-cleanroomsml.rb
CHANGED
@@ -22,7 +22,7 @@ require_relative 'aws-sdk-cleanroomsml/endpoint_provider'
|
|
22
22
|
require_relative 'aws-sdk-cleanroomsml/endpoints'
|
23
23
|
require_relative 'aws-sdk-cleanroomsml/customizations'
|
24
24
|
|
25
|
-
# This module provides support for
|
25
|
+
# This module provides support for AWS Clean Rooms ML. This module is available in the
|
26
26
|
# `aws-sdk-cleanroomsml` gem.
|
27
27
|
#
|
28
28
|
# # Client
|
@@ -38,13 +38,13 @@ require_relative 'aws-sdk-cleanroomsml/customizations'
|
|
38
38
|
#
|
39
39
|
# # Errors
|
40
40
|
#
|
41
|
-
# Errors returned from
|
41
|
+
# Errors returned from AWS Clean Rooms ML are defined in the
|
42
42
|
# {Errors} module and all extend {Errors::ServiceError}.
|
43
43
|
#
|
44
44
|
# begin
|
45
45
|
# # do stuff
|
46
46
|
# rescue Aws::CleanRoomsML::Errors::ServiceError
|
47
|
-
# # rescues all
|
47
|
+
# # rescues all AWS Clean Rooms ML API errors
|
48
48
|
# end
|
49
49
|
#
|
50
50
|
# See {Errors} for more information.
|
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-cleanroomsml/customizations'
|
|
52
52
|
# @!group service
|
53
53
|
module Aws::CleanRoomsML
|
54
54
|
|
55
|
-
GEM_VERSION = '1.
|
55
|
+
GEM_VERSION = '1.1.0'
|
56
56
|
|
57
57
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cleanroomsml
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.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-
|
11
|
+
date: 2023-12-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -44,8 +44,8 @@ dependencies:
|
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
46
|
version: '1.1'
|
47
|
-
description: Official AWS Ruby gem for
|
48
|
-
SDK for Ruby.
|
47
|
+
description: Official AWS Ruby gem for AWS Clean Rooms ML. This gem is part of the
|
48
|
+
AWS SDK for Ruby.
|
49
49
|
email:
|
50
50
|
- aws-dr-rubygems@amazon.com
|
51
51
|
executables: []
|
@@ -90,5 +90,5 @@ requirements: []
|
|
90
90
|
rubygems_version: 3.1.6
|
91
91
|
signing_key:
|
92
92
|
specification_version: 4
|
93
|
-
summary: AWS SDK for Ruby -
|
93
|
+
summary: AWS SDK for Ruby - AWS Clean Rooms ML
|
94
94
|
test_files: []
|