aws-sdk-datazone 1.26.0 → 1.27.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d5db0d287118e503433238ac71337dffd00e88fe15fdc1d14ec4a9424bcd8b39
4
- data.tar.gz: 656155b283c6cfea62dcc0b68c75bfff7bc8af80bbbf03ef9950d2b70fffb783
3
+ metadata.gz: d949f5b571feb05b8c3b93ae95585938375107fc7c8b82ea4240e04bb7820fe7
4
+ data.tar.gz: 891e84aeb3ee60b202d617e94106e0d590c06072d64ac47b7dbe6449988fce83
5
5
  SHA512:
6
- metadata.gz: 0db720b0e1a77ac13cfb6507e8598ba951cdbacdb3e24ac95103ebb2be1546fef132db99ff2a572d9e01ead3c58bf335c00c2123e955241782c5bc1d579b074c
7
- data.tar.gz: 4f1fdea562534012ffb6545e892258faa97dea9ba2e20202d25c2c7523a77b97700d671b773e72bf9ab22898318f161a09d36cad8c55e048438a580d5214dc81
6
+ metadata.gz: 725ec8f4bce26c9c2c7a26c1f79a92fc15212639d8b859199e7ac950d1b0734961d79b693ce193a67a7b4d66ca56fb245e38a91d63cdcf5ea176f9adade47374
7
+ data.tar.gz: 13f71b9d6b6b0df80de494e7c453687600ef058e2ee2e25d58777f7553b5e9024447c43bd12cfc96a0c129f91d3b7edebe8909457a08791065779d6ccd986b04
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.27.0 (2024-10-18)
5
+ ------------------
6
+
7
+ * Feature - Adding the following project member designations: PROJECT_CATALOG_VIEWER, PROJECT_CATALOG_CONSUMER and PROJECT_CATALOG_STEWARD in the CreateProjectMembership API and PROJECT_CATALOG_STEWARD designation in the AddPolicyGrant API.
8
+
4
9
  1.26.0 (2024-09-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.26.0
1
+ 1.27.0
@@ -752,7 +752,7 @@ module Aws::DataZone
752
752
  # group_identifier: "GroupIdentifier",
753
753
  # },
754
754
  # project: {
755
- # project_designation: "OWNER", # required, accepts OWNER, CONTRIBUTOR
755
+ # project_designation: "OWNER", # required, accepts OWNER, CONTRIBUTOR, PROJECT_CATALOG_STEWARD
756
756
  # project_grant_filter: {
757
757
  # domain_unit_filter: {
758
758
  # domain_unit: "DomainUnitId", # required
@@ -2705,7 +2705,7 @@ module Aws::DataZone
2705
2705
  # @example Request syntax with placeholder values
2706
2706
  #
2707
2707
  # resp = client.create_project_membership({
2708
- # designation: "PROJECT_OWNER", # required, accepts PROJECT_OWNER, PROJECT_CONTRIBUTOR
2708
+ # designation: "PROJECT_OWNER", # required, accepts PROJECT_OWNER, PROJECT_CONTRIBUTOR, PROJECT_CATALOG_VIEWER, PROJECT_CATALOG_CONSUMER, PROJECT_CATALOG_STEWARD
2709
2709
  # domain_identifier: "DomainId", # required
2710
2710
  # member: { # required
2711
2711
  # group_identifier: "String",
@@ -7004,7 +7004,7 @@ module Aws::DataZone
7004
7004
  # resp.grant_list[0].principal.domain_unit.domain_unit_designation #=> String, one of "OWNER"
7005
7005
  # resp.grant_list[0].principal.domain_unit.domain_unit_identifier #=> String
7006
7006
  # resp.grant_list[0].principal.group.group_identifier #=> String
7007
- # resp.grant_list[0].principal.project.project_designation #=> String, one of "OWNER", "CONTRIBUTOR"
7007
+ # resp.grant_list[0].principal.project.project_designation #=> String, one of "OWNER", "CONTRIBUTOR", "PROJECT_CATALOG_STEWARD"
7008
7008
  # resp.grant_list[0].principal.project.project_grant_filter.domain_unit_filter.domain_unit #=> String
7009
7009
  # resp.grant_list[0].principal.project.project_grant_filter.domain_unit_filter.include_child_domain_units #=> Boolean
7010
7010
  # resp.grant_list[0].principal.project.project_identifier #=> String
@@ -7071,7 +7071,7 @@ module Aws::DataZone
7071
7071
  # @example Response structure
7072
7072
  #
7073
7073
  # resp.members #=> Array
7074
- # resp.members[0].designation #=> String, one of "PROJECT_OWNER", "PROJECT_CONTRIBUTOR"
7074
+ # resp.members[0].designation #=> String, one of "PROJECT_OWNER", "PROJECT_CONTRIBUTOR", "PROJECT_CATALOG_VIEWER", "PROJECT_CATALOG_CONSUMER", "PROJECT_CATALOG_STEWARD"
7075
7075
  # resp.members[0].member_details.group.group_id #=> String
7076
7076
  # resp.members[0].member_details.user.user_id #=> String
7077
7077
  # resp.next_token #=> String
@@ -8143,7 +8143,7 @@ module Aws::DataZone
8143
8143
  # group_identifier: "GroupIdentifier",
8144
8144
  # },
8145
8145
  # project: {
8146
- # project_designation: "OWNER", # required, accepts OWNER, CONTRIBUTOR
8146
+ # project_designation: "OWNER", # required, accepts OWNER, CONTRIBUTOR, PROJECT_CATALOG_STEWARD
8147
8147
  # project_grant_filter: {
8148
8148
  # domain_unit_filter: {
8149
8149
  # domain_unit: "DomainUnitId", # required
@@ -10395,7 +10395,7 @@ module Aws::DataZone
10395
10395
  tracer: tracer
10396
10396
  )
10397
10397
  context[:gem_name] = 'aws-sdk-datazone'
10398
- context[:gem_version] = '1.26.0'
10398
+ context[:gem_version] = '1.27.0'
10399
10399
  Seahorse::Client::Request.new(handlers, context)
10400
10400
  end
10401
10401
 
@@ -45,10 +45,15 @@ module Aws::DataZone
45
45
  self[:region] = options[:region]
46
46
  self[:use_fips] = options[:use_fips]
47
47
  self[:use_fips] = false if self[:use_fips].nil?
48
- if self[:use_fips].nil?
49
- raise ArgumentError, "Missing required EndpointParameter: :use_fips"
50
- end
51
48
  self[:endpoint] = options[:endpoint]
52
49
  end
50
+
51
+ def self.create(config, options={})
52
+ new({
53
+ region: config.region,
54
+ use_fips: config.use_fips_endpoint,
55
+ endpoint: (config.endpoint.to_s unless config.regional_endpoint),
56
+ }.merge(options))
57
+ end
53
58
  end
54
59
  end