aws-sdk-datazone 1.15.0 → 1.17.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: aa19f9cc73035f98bb4b5bcc40165c9275e54cfda850295d8faa92ecd6482491
4
- data.tar.gz: 284ec444366192f4dc87ea4a997fb84a50b93f3758efd959ab82eea283a38684
3
+ metadata.gz: 2d2375b5ff611c58527250b2eddffaa0e950d9f85117f55b28c4420a28365a61
4
+ data.tar.gz: 49890c4c3965697ba5d8068220e9dcc691a36dd5541a12426a2b95c5b7049ccc
5
5
  SHA512:
6
- metadata.gz: 9abe648e2a0f010ce5b2b9d4f71fdb3f2babe19a5438b697154eccdfd53bbd243a3414593f13a06ad1248797c4ff981985e8f0ee315ea47793b3d2423614405c
7
- data.tar.gz: 1687afa6d0ee266350a54a71cf2ab73107f589a84e8c66bea450511696973fd3d46bff158a94d89ef07bd4195841f34a5aa4f7bcd99394e2c1cacbf27b486684
6
+ metadata.gz: b08b7160e43d7cdcb873b2263bb31863c2eb0ab9caf1be8ec832a5a821e30bf7f1e8fe21f3b28897dcab3e1f2ff2bf2627cf423a1642a0f90c9fa33a791f879f
7
+ data.tar.gz: 3a780a3aeaa4bfc428e25e114cbb7901762ceed556cab46f067959fdb97199e7365d5800b8b5d20aa05d3a62b439e837271dc63019455c3f6fb9cb40782f7bff
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.17.0 (2024-07-25)
5
+ ------------------
6
+
7
+ * Feature - Introduces GetEnvironmentCredentials operation to SDK
8
+
9
+ 1.16.0 (2024-07-23)
10
+ ------------------
11
+
12
+ * Feature - This release removes the deprecated dataProductItem field from Search API output.
13
+
4
14
  1.15.0 (2024-07-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.15.0
1
+ 1.17.0
@@ -3994,6 +3994,45 @@ module Aws::DataZone
3994
3994
  req.send_request(options)
3995
3995
  end
3996
3996
 
3997
+ # Gets the credentials of an environment in Amazon DataZone.
3998
+ #
3999
+ # @option params [required, String] :domain_identifier
4000
+ # The ID of the Amazon DataZone domain in which this environment and its
4001
+ # credentials exist.
4002
+ #
4003
+ # @option params [required, String] :environment_identifier
4004
+ # The ID of the environment whose credentials this operation gets.
4005
+ #
4006
+ # @return [Types::GetEnvironmentCredentialsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4007
+ #
4008
+ # * {Types::GetEnvironmentCredentialsOutput#access_key_id #access_key_id} => String
4009
+ # * {Types::GetEnvironmentCredentialsOutput#expiration #expiration} => Time
4010
+ # * {Types::GetEnvironmentCredentialsOutput#secret_access_key #secret_access_key} => String
4011
+ # * {Types::GetEnvironmentCredentialsOutput#session_token #session_token} => String
4012
+ #
4013
+ # @example Request syntax with placeholder values
4014
+ #
4015
+ # resp = client.get_environment_credentials({
4016
+ # domain_identifier: "DomainId", # required
4017
+ # environment_identifier: "EnvironmentId", # required
4018
+ # })
4019
+ #
4020
+ # @example Response structure
4021
+ #
4022
+ # resp.access_key_id #=> String
4023
+ # resp.expiration #=> Time
4024
+ # resp.secret_access_key #=> String
4025
+ # resp.session_token #=> String
4026
+ #
4027
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetEnvironmentCredentials AWS API Documentation
4028
+ #
4029
+ # @overload get_environment_credentials(params = {})
4030
+ # @param [Hash] params ({})
4031
+ def get_environment_credentials(params = {}, options = {})
4032
+ req = build_request(:get_environment_credentials, params)
4033
+ req.send_request(options)
4034
+ end
4035
+
3997
4036
  # Gets an evinronment profile in Amazon DataZone.
3998
4037
  #
3999
4038
  # @option params [required, String] :domain_identifier
@@ -7093,20 +7132,6 @@ module Aws::DataZone
7093
7132
  # resp.items[0].asset_item.owning_project_id #=> String
7094
7133
  # resp.items[0].asset_item.type_identifier #=> String
7095
7134
  # resp.items[0].asset_item.type_revision #=> String
7096
- # resp.items[0].data_product_item.created_at #=> Time
7097
- # resp.items[0].data_product_item.created_by #=> String
7098
- # resp.items[0].data_product_item.data_product_items #=> Array
7099
- # resp.items[0].data_product_item.data_product_items[0].domain_id #=> String
7100
- # resp.items[0].data_product_item.data_product_items[0].item_id #=> String
7101
- # resp.items[0].data_product_item.description #=> String
7102
- # resp.items[0].data_product_item.domain_id #=> String
7103
- # resp.items[0].data_product_item.glossary_terms #=> Array
7104
- # resp.items[0].data_product_item.glossary_terms[0] #=> String
7105
- # resp.items[0].data_product_item.id #=> String
7106
- # resp.items[0].data_product_item.name #=> String
7107
- # resp.items[0].data_product_item.owning_project_id #=> String
7108
- # resp.items[0].data_product_item.updated_at #=> Time
7109
- # resp.items[0].data_product_item.updated_by #=> String
7110
7135
  # resp.items[0].glossary_item.created_at #=> Time
7111
7136
  # resp.items[0].glossary_item.created_by #=> String
7112
7137
  # resp.items[0].glossary_item.description #=> String
@@ -9007,7 +9032,7 @@ module Aws::DataZone
9007
9032
  params: params,
9008
9033
  config: config)
9009
9034
  context[:gem_name] = 'aws-sdk-datazone'
9010
- context[:gem_version] = '1.15.0'
9035
+ context[:gem_version] = '1.17.0'
9011
9036
  Seahorse::Client::Request.new(handlers, context)
9012
9037
  end
9013
9038
 
@@ -120,12 +120,6 @@ module Aws::DataZone
120
120
  CustomParameterList = Shapes::ListShape.new(name: 'CustomParameterList')
121
121
  DataAssetActivityStatus = Shapes::StringShape.new(name: 'DataAssetActivityStatus')
122
122
  DataPointIdentifier = Shapes::StringShape.new(name: 'DataPointIdentifier')
123
- DataProductDescription = Shapes::StringShape.new(name: 'DataProductDescription')
124
- DataProductId = Shapes::StringShape.new(name: 'DataProductId')
125
- DataProductItem = Shapes::StructureShape.new(name: 'DataProductItem')
126
- DataProductItems = Shapes::ListShape.new(name: 'DataProductItems')
127
- DataProductName = Shapes::StringShape.new(name: 'DataProductName')
128
- DataProductSummary = Shapes::StructureShape.new(name: 'DataProductSummary')
129
123
  DataSourceConfigurationInput = Shapes::UnionShape.new(name: 'DataSourceConfigurationInput')
130
124
  DataSourceConfigurationOutput = Shapes::UnionShape.new(name: 'DataSourceConfigurationOutput')
131
125
  DataSourceErrorMessage = Shapes::StructureShape.new(name: 'DataSourceErrorMessage')
@@ -274,6 +268,8 @@ module Aws::DataZone
274
268
  GetEnvironmentBlueprintConfigurationOutput = Shapes::StructureShape.new(name: 'GetEnvironmentBlueprintConfigurationOutput')
275
269
  GetEnvironmentBlueprintInput = Shapes::StructureShape.new(name: 'GetEnvironmentBlueprintInput')
276
270
  GetEnvironmentBlueprintOutput = Shapes::StructureShape.new(name: 'GetEnvironmentBlueprintOutput')
271
+ GetEnvironmentCredentialsInput = Shapes::StructureShape.new(name: 'GetEnvironmentCredentialsInput')
272
+ GetEnvironmentCredentialsOutput = Shapes::StructureShape.new(name: 'GetEnvironmentCredentialsOutput')
277
273
  GetEnvironmentInput = Shapes::StructureShape.new(name: 'GetEnvironmentInput')
278
274
  GetEnvironmentOutput = Shapes::StructureShape.new(name: 'GetEnvironmentOutput')
279
275
  GetEnvironmentProfileInput = Shapes::StructureShape.new(name: 'GetEnvironmentProfileInput')
@@ -1329,25 +1325,6 @@ module Aws::DataZone
1329
1325
 
1330
1326
  CustomParameterList.member = Shapes::ShapeRef.new(shape: CustomParameter)
1331
1327
 
1332
- DataProductItem.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, location_name: "domainId"))
1333
- DataProductItem.add_member(:item_id, Shapes::ShapeRef.new(shape: DataProductId, location_name: "itemId"))
1334
- DataProductItem.struct_class = Types::DataProductItem
1335
-
1336
- DataProductItems.member = Shapes::ShapeRef.new(shape: DataProductItem, deprecated: true)
1337
-
1338
- DataProductSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
1339
- DataProductSummary.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
1340
- DataProductSummary.add_member(:data_product_items, Shapes::ShapeRef.new(shape: DataProductItems, deprecated: true, location_name: "dataProductItems"))
1341
- DataProductSummary.add_member(:description, Shapes::ShapeRef.new(shape: DataProductDescription, location_name: "description"))
1342
- DataProductSummary.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "domainId"))
1343
- DataProductSummary.add_member(:glossary_terms, Shapes::ShapeRef.new(shape: GlossaryTerms, location_name: "glossaryTerms"))
1344
- DataProductSummary.add_member(:id, Shapes::ShapeRef.new(shape: DataProductId, required: true, location_name: "id"))
1345
- DataProductSummary.add_member(:name, Shapes::ShapeRef.new(shape: DataProductName, required: true, location_name: "name"))
1346
- DataProductSummary.add_member(:owning_project_id, Shapes::ShapeRef.new(shape: ProjectId, required: true, location_name: "owningProjectId"))
1347
- DataProductSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: UpdatedAt, location_name: "updatedAt"))
1348
- DataProductSummary.add_member(:updated_by, Shapes::ShapeRef.new(shape: UpdatedBy, location_name: "updatedBy"))
1349
- DataProductSummary.struct_class = Types::DataProductSummary
1350
-
1351
1328
  DataSourceConfigurationInput.add_member(:glue_run_configuration, Shapes::ShapeRef.new(shape: GlueRunConfigurationInput, location_name: "glueRunConfiguration"))
1352
1329
  DataSourceConfigurationInput.add_member(:redshift_run_configuration, Shapes::ShapeRef.new(shape: RedshiftRunConfigurationInput, location_name: "redshiftRunConfiguration"))
1353
1330
  DataSourceConfigurationInput.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
@@ -1926,6 +1903,16 @@ module Aws::DataZone
1926
1903
  GetEnvironmentBlueprintOutput.add_member(:user_parameters, Shapes::ShapeRef.new(shape: CustomParameterList, location_name: "userParameters"))
1927
1904
  GetEnvironmentBlueprintOutput.struct_class = Types::GetEnvironmentBlueprintOutput
1928
1905
 
1906
+ GetEnvironmentCredentialsInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
1907
+ GetEnvironmentCredentialsInput.add_member(:environment_identifier, Shapes::ShapeRef.new(shape: EnvironmentId, required: true, location: "uri", location_name: "environmentIdentifier"))
1908
+ GetEnvironmentCredentialsInput.struct_class = Types::GetEnvironmentCredentialsInput
1909
+
1910
+ GetEnvironmentCredentialsOutput.add_member(:access_key_id, Shapes::ShapeRef.new(shape: String, location_name: "accessKeyId"))
1911
+ GetEnvironmentCredentialsOutput.add_member(:expiration, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "expiration"))
1912
+ GetEnvironmentCredentialsOutput.add_member(:secret_access_key, Shapes::ShapeRef.new(shape: String, location_name: "secretAccessKey"))
1913
+ GetEnvironmentCredentialsOutput.add_member(:session_token, Shapes::ShapeRef.new(shape: String, location_name: "sessionToken"))
1914
+ GetEnvironmentCredentialsOutput.struct_class = Types::GetEnvironmentCredentialsOutput
1915
+
1929
1916
  GetEnvironmentInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
1930
1917
  GetEnvironmentInput.add_member(:identifier, Shapes::ShapeRef.new(shape: EnvironmentId, required: true, location: "uri", location_name: "identifier"))
1931
1918
  GetEnvironmentInput.struct_class = Types::GetEnvironmentInput
@@ -3015,12 +3002,10 @@ module Aws::DataZone
3015
3002
  SearchInput.struct_class = Types::SearchInput
3016
3003
 
3017
3004
  SearchInventoryResultItem.add_member(:asset_item, Shapes::ShapeRef.new(shape: AssetItem, location_name: "assetItem"))
3018
- SearchInventoryResultItem.add_member(:data_product_item, Shapes::ShapeRef.new(shape: DataProductSummary, deprecated: true, location_name: "dataProductItem", metadata: {"deprecatedMessage"=>"This field is deprecated."}))
3019
3005
  SearchInventoryResultItem.add_member(:glossary_item, Shapes::ShapeRef.new(shape: GlossaryItem, location_name: "glossaryItem"))
3020
3006
  SearchInventoryResultItem.add_member(:glossary_term_item, Shapes::ShapeRef.new(shape: GlossaryTermItem, location_name: "glossaryTermItem"))
3021
3007
  SearchInventoryResultItem.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
3022
3008
  SearchInventoryResultItem.add_member_subclass(:asset_item, Types::SearchInventoryResultItem::AssetItem)
3023
- SearchInventoryResultItem.add_member_subclass(:data_product_item, Types::SearchInventoryResultItem::DataProductItem)
3024
3009
  SearchInventoryResultItem.add_member_subclass(:glossary_item, Types::SearchInventoryResultItem::GlossaryItem)
3025
3010
  SearchInventoryResultItem.add_member_subclass(:glossary_term_item, Types::SearchInventoryResultItem::GlossaryTermItem)
3026
3011
  SearchInventoryResultItem.add_member_subclass(:unknown, Types::SearchInventoryResultItem::Unknown)
@@ -4520,6 +4505,20 @@ module Aws::DataZone
4520
4505
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
4521
4506
  end)
4522
4507
 
4508
+ api.add_operation(:get_environment_credentials, Seahorse::Model::Operation.new.tap do |o|
4509
+ o.name = "GetEnvironmentCredentials"
4510
+ o.http_method = "GET"
4511
+ o.http_request_uri = "/v2/domains/{domainIdentifier}/environments/{environmentIdentifier}/credentials"
4512
+ o.input = Shapes::ShapeRef.new(shape: GetEnvironmentCredentialsInput)
4513
+ o.output = Shapes::ShapeRef.new(shape: GetEnvironmentCredentialsOutput)
4514
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
4515
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
4516
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
4517
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
4518
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
4519
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
4520
+ end)
4521
+
4523
4522
  api.add_operation(:get_environment_profile, Seahorse::Model::Operation.new.tap do |o|
4524
4523
  o.name = "GetEnvironmentProfile"
4525
4524
  o.http_method = "GET"
@@ -727,6 +727,19 @@ module Aws::DataZone
727
727
  end
728
728
  end
729
729
 
730
+ class GetEnvironmentCredentials
731
+ def self.build(context)
732
+ unless context.config.regional_endpoint
733
+ endpoint = context.config.endpoint.to_s
734
+ end
735
+ Aws::DataZone::EndpointParameters.new(
736
+ region: context.config.region,
737
+ use_fips: context.config.use_fips_endpoint,
738
+ endpoint: endpoint,
739
+ )
740
+ end
741
+ end
742
+
730
743
  class GetEnvironmentProfile
731
744
  def self.build(context)
732
745
  unless context.config.regional_endpoint
@@ -168,6 +168,8 @@ module Aws::DataZone
168
168
  Aws::DataZone::Endpoints::GetEnvironmentBlueprint.build(context)
169
169
  when :get_environment_blueprint_configuration
170
170
  Aws::DataZone::Endpoints::GetEnvironmentBlueprintConfiguration.build(context)
171
+ when :get_environment_credentials
172
+ Aws::DataZone::Endpoints::GetEnvironmentCredentials.build(context)
171
173
  when :get_environment_profile
172
174
  Aws::DataZone::Endpoints::GetEnvironmentProfile.build(context)
173
175
  when :get_form_type
@@ -3215,72 +3215,6 @@ module Aws::DataZone
3215
3215
  include Aws::Structure
3216
3216
  end
3217
3217
 
3218
- # @!attribute [rw] domain_id
3219
- # @return [String]
3220
- #
3221
- # @!attribute [rw] item_id
3222
- # @return [String]
3223
- #
3224
- # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DataProductItem AWS API Documentation
3225
- #
3226
- class DataProductItem < Struct.new(
3227
- :domain_id,
3228
- :item_id)
3229
- SENSITIVE = []
3230
- include Aws::Structure
3231
- end
3232
-
3233
- # @!attribute [rw] created_at
3234
- # @return [Time]
3235
- #
3236
- # @!attribute [rw] created_by
3237
- # @return [String]
3238
- #
3239
- # @!attribute [rw] data_product_items
3240
- # @return [Array<Types::DataProductItem>]
3241
- #
3242
- # @!attribute [rw] description
3243
- # @return [String]
3244
- #
3245
- # @!attribute [rw] domain_id
3246
- # @return [String]
3247
- #
3248
- # @!attribute [rw] glossary_terms
3249
- # @return [Array<String>]
3250
- #
3251
- # @!attribute [rw] id
3252
- # @return [String]
3253
- #
3254
- # @!attribute [rw] name
3255
- # @return [String]
3256
- #
3257
- # @!attribute [rw] owning_project_id
3258
- # @return [String]
3259
- #
3260
- # @!attribute [rw] updated_at
3261
- # @return [Time]
3262
- #
3263
- # @!attribute [rw] updated_by
3264
- # @return [String]
3265
- #
3266
- # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/DataProductSummary AWS API Documentation
3267
- #
3268
- class DataProductSummary < Struct.new(
3269
- :created_at,
3270
- :created_by,
3271
- :data_product_items,
3272
- :description,
3273
- :domain_id,
3274
- :glossary_terms,
3275
- :id,
3276
- :name,
3277
- :owning_project_id,
3278
- :updated_at,
3279
- :updated_by)
3280
- SENSITIVE = [:description, :name]
3281
- include Aws::Structure
3282
- end
3283
-
3284
3218
  # The configuration of the data source.
3285
3219
  #
3286
3220
  # @note DataSourceConfigurationInput is a union - when making an API calls you must set exactly one of the members.
@@ -5806,6 +5740,51 @@ module Aws::DataZone
5806
5740
  include Aws::Structure
5807
5741
  end
5808
5742
 
5743
+ # @!attribute [rw] domain_identifier
5744
+ # The ID of the Amazon DataZone domain in which this environment and
5745
+ # its credentials exist.
5746
+ # @return [String]
5747
+ #
5748
+ # @!attribute [rw] environment_identifier
5749
+ # The ID of the environment whose credentials this operation gets.
5750
+ # @return [String]
5751
+ #
5752
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetEnvironmentCredentialsInput AWS API Documentation
5753
+ #
5754
+ class GetEnvironmentCredentialsInput < Struct.new(
5755
+ :domain_identifier,
5756
+ :environment_identifier)
5757
+ SENSITIVE = []
5758
+ include Aws::Structure
5759
+ end
5760
+
5761
+ # @!attribute [rw] access_key_id
5762
+ # The access key ID of the environment.
5763
+ # @return [String]
5764
+ #
5765
+ # @!attribute [rw] expiration
5766
+ # The expiration timestamp of the environment credentials.
5767
+ # @return [Time]
5768
+ #
5769
+ # @!attribute [rw] secret_access_key
5770
+ # The secret access key of the environment credentials.
5771
+ # @return [String]
5772
+ #
5773
+ # @!attribute [rw] session_token
5774
+ # The session token of the environment credentials.
5775
+ # @return [String]
5776
+ #
5777
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetEnvironmentCredentialsOutput AWS API Documentation
5778
+ #
5779
+ class GetEnvironmentCredentialsOutput < Struct.new(
5780
+ :access_key_id,
5781
+ :expiration,
5782
+ :secret_access_key,
5783
+ :session_token)
5784
+ SENSITIVE = []
5785
+ include Aws::Structure
5786
+ end
5787
+
5809
5788
  # @!attribute [rw] domain_identifier
5810
5789
  # The ID of the Amazon DataZone domain where the environment exists.
5811
5790
  # @return [String]
@@ -10981,10 +10960,6 @@ module Aws::DataZone
10981
10960
  # The asset item included in the search results.
10982
10961
  # @return [Types::AssetItem]
10983
10962
  #
10984
- # @!attribute [rw] data_product_item
10985
- # The data product item included in the search results.
10986
- # @return [Types::DataProductSummary]
10987
- #
10988
10963
  # @!attribute [rw] glossary_item
10989
10964
  # The glossary item included in the search results.
10990
10965
  # @return [Types::GlossaryItem]
@@ -10997,7 +10972,6 @@ module Aws::DataZone
10997
10972
  #
10998
10973
  class SearchInventoryResultItem < Struct.new(
10999
10974
  :asset_item,
11000
- :data_product_item,
11001
10975
  :glossary_item,
11002
10976
  :glossary_term_item,
11003
10977
  :unknown)
@@ -11006,7 +10980,6 @@ module Aws::DataZone
11006
10980
  include Aws::Structure::Union
11007
10981
 
11008
10982
  class AssetItem < SearchInventoryResultItem; end
11009
- class DataProductItem < SearchInventoryResultItem; end
11010
10983
  class GlossaryItem < SearchInventoryResultItem; end
11011
10984
  class GlossaryTermItem < SearchInventoryResultItem; end
11012
10985
  class Unknown < SearchInventoryResultItem; end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-datazone/customizations'
52
52
  # @!group service
53
53
  module Aws::DataZone
54
54
 
55
- GEM_VERSION = '1.15.0'
55
+ GEM_VERSION = '1.17.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -1332,6 +1332,20 @@ module Aws
1332
1332
  ) -> _GetEnvironmentBlueprintConfigurationResponseSuccess
1333
1333
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEnvironmentBlueprintConfigurationResponseSuccess
1334
1334
 
1335
+ interface _GetEnvironmentCredentialsResponseSuccess
1336
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetEnvironmentCredentialsOutput]
1337
+ def access_key_id: () -> ::String
1338
+ def expiration: () -> ::Time
1339
+ def secret_access_key: () -> ::String
1340
+ def session_token: () -> ::String
1341
+ end
1342
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_environment_credentials-instance_method
1343
+ def get_environment_credentials: (
1344
+ domain_identifier: ::String,
1345
+ environment_identifier: ::String
1346
+ ) -> _GetEnvironmentCredentialsResponseSuccess
1347
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEnvironmentCredentialsResponseSuccess
1348
+
1335
1349
  interface _GetEnvironmentProfileResponseSuccess
1336
1350
  include ::Seahorse::Client::_ResponseSuccess[Types::GetEnvironmentProfileOutput]
1337
1351
  def aws_account_id: () -> ::String
data/sig/types.rbs CHANGED
@@ -796,27 +796,6 @@ module Aws::DataZone
796
796
  SENSITIVE: [:description]
797
797
  end
798
798
 
799
- class DataProductItem
800
- attr_accessor domain_id: ::String
801
- attr_accessor item_id: ::String
802
- SENSITIVE: []
803
- end
804
-
805
- class DataProductSummary
806
- attr_accessor created_at: ::Time
807
- attr_accessor created_by: ::String
808
- attr_accessor data_product_items: ::Array[Types::DataProductItem]
809
- attr_accessor description: ::String
810
- attr_accessor domain_id: ::String
811
- attr_accessor glossary_terms: ::Array[::String]
812
- attr_accessor id: ::String
813
- attr_accessor name: ::String
814
- attr_accessor owning_project_id: ::String
815
- attr_accessor updated_at: ::Time
816
- attr_accessor updated_by: ::String
817
- SENSITIVE: [:description, :name]
818
- end
819
-
820
799
  class DataSourceConfigurationInput
821
800
  attr_accessor glue_run_configuration: Types::GlueRunConfigurationInput
822
801
  attr_accessor redshift_run_configuration: Types::RedshiftRunConfigurationInput
@@ -1513,6 +1492,20 @@ module Aws::DataZone
1513
1492
  SENSITIVE: [:description]
1514
1493
  end
1515
1494
 
1495
+ class GetEnvironmentCredentialsInput
1496
+ attr_accessor domain_identifier: ::String
1497
+ attr_accessor environment_identifier: ::String
1498
+ SENSITIVE: []
1499
+ end
1500
+
1501
+ class GetEnvironmentCredentialsOutput
1502
+ attr_accessor access_key_id: ::String
1503
+ attr_accessor expiration: ::Time
1504
+ attr_accessor secret_access_key: ::String
1505
+ attr_accessor session_token: ::String
1506
+ SENSITIVE: []
1507
+ end
1508
+
1516
1509
  class GetEnvironmentInput
1517
1510
  attr_accessor domain_identifier: ::String
1518
1511
  attr_accessor identifier: ::String
@@ -2904,7 +2897,6 @@ module Aws::DataZone
2904
2897
 
2905
2898
  class SearchInventoryResultItem
2906
2899
  attr_accessor asset_item: Types::AssetItem
2907
- attr_accessor data_product_item: Types::DataProductSummary
2908
2900
  attr_accessor glossary_item: Types::GlossaryItem
2909
2901
  attr_accessor glossary_term_item: Types::GlossaryTermItem
2910
2902
  attr_accessor unknown: untyped
@@ -2912,8 +2904,6 @@ module Aws::DataZone
2912
2904
 
2913
2905
  class AssetItem < SearchInventoryResultItem
2914
2906
  end
2915
- class DataProductItem < SearchInventoryResultItem
2916
- end
2917
2907
  class GlossaryItem < SearchInventoryResultItem
2918
2908
  end
2919
2909
  class GlossaryTermItem < SearchInventoryResultItem
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-datazone
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.15.0
4
+ version: 1.17.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-07-22 00:00:00.000000000 Z
11
+ date: 2024-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core