aws-sdk-glue 1.263.0 → 1.264.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-glue/client.rb +54 -3
- data/lib/aws-sdk-glue/client_api.rb +31 -5
- data/lib/aws-sdk-glue/types.rb +58 -0
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +16 -0
- data/sig/types.rbs +16 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ae43ce5518707ef7ff956bb25ba4c32db85c7a067487964bf431a9fc2ede96f2
|
|
4
|
+
data.tar.gz: 915588942744d528864a21c41df80b8162f79ebe5bff9ae10fe47fc1e0adf6fb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4ab793117c7a0c87f1fedcb20b94668c6c553ff2f39196f899457137e0decda946848f1208e9170fcc84d739c7be211b22373b81e3172bb6ab1f999d86be1155
|
|
7
|
+
data.tar.gz: 475c23481abada3db8c8a2053af5212feced5a2669f5a28d68279b527eec46e561c94dbd94779297dc21c14da82aefd5a2b52f9bd24d65af9a3aa02a7b83695e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.264.0 (2026-06-29)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added the UpdateAsset operation to set the business name and description for an existing AWS Glue Data Catalog asset.
|
|
8
|
+
|
|
4
9
|
1.263.0 (2026-06-19)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.264.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
|
@@ -15579,8 +15579,8 @@ module Aws::Glue
|
|
|
15579
15579
|
# iterable_form_name: "IterableFormName",
|
|
15580
15580
|
# item_identifier: "ItemIdentifier",
|
|
15581
15581
|
# attachment_name: "AttachmentName", # required
|
|
15582
|
-
# content: "
|
|
15583
|
-
# form_type_id: "
|
|
15582
|
+
# content: "FormContent", # required
|
|
15583
|
+
# form_type_id: "FormTypeId", # required
|
|
15584
15584
|
# client_token: "HashString",
|
|
15585
15585
|
# })
|
|
15586
15586
|
#
|
|
@@ -18301,6 +18301,57 @@ module Aws::Glue
|
|
|
18301
18301
|
req.send_request(options)
|
|
18302
18302
|
end
|
|
18303
18303
|
|
|
18304
|
+
# Updates the name and description of an existing asset in Glue Data
|
|
18305
|
+
# Catalog. Only the fields that you provide are updated.
|
|
18306
|
+
#
|
|
18307
|
+
# @option params [required, String] :identifier
|
|
18308
|
+
# The unique identifier of the asset to update.
|
|
18309
|
+
#
|
|
18310
|
+
# @option params [String] :name
|
|
18311
|
+
# The new name of the asset.
|
|
18312
|
+
#
|
|
18313
|
+
# @option params [String] :description
|
|
18314
|
+
# The new description of the asset.
|
|
18315
|
+
#
|
|
18316
|
+
# @option params [String] :client_token
|
|
18317
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
18318
|
+
# idempotency of the request.
|
|
18319
|
+
#
|
|
18320
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
18321
|
+
# not need to pass this option.**
|
|
18322
|
+
#
|
|
18323
|
+
# @return [Types::UpdateAssetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
18324
|
+
#
|
|
18325
|
+
# * {Types::UpdateAssetResponse#id #id} => String
|
|
18326
|
+
# * {Types::UpdateAssetResponse#name #name} => String
|
|
18327
|
+
# * {Types::UpdateAssetResponse#description #description} => String
|
|
18328
|
+
# * {Types::UpdateAssetResponse#updated_at #updated_at} => Time
|
|
18329
|
+
#
|
|
18330
|
+
# @example Request syntax with placeholder values
|
|
18331
|
+
#
|
|
18332
|
+
# resp = client.update_asset({
|
|
18333
|
+
# identifier: "AssetId", # required
|
|
18334
|
+
# name: "AssetName",
|
|
18335
|
+
# description: "AssetDescription",
|
|
18336
|
+
# client_token: "HashString",
|
|
18337
|
+
# })
|
|
18338
|
+
#
|
|
18339
|
+
# @example Response structure
|
|
18340
|
+
#
|
|
18341
|
+
# resp.id #=> String
|
|
18342
|
+
# resp.name #=> String
|
|
18343
|
+
# resp.description #=> String
|
|
18344
|
+
# resp.updated_at #=> Time
|
|
18345
|
+
#
|
|
18346
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateAsset AWS API Documentation
|
|
18347
|
+
#
|
|
18348
|
+
# @overload update_asset(params = {})
|
|
18349
|
+
# @param [Hash] params ({})
|
|
18350
|
+
def update_asset(params = {}, options = {})
|
|
18351
|
+
req = build_request(:update_asset, params)
|
|
18352
|
+
req.send_request(options)
|
|
18353
|
+
end
|
|
18354
|
+
|
|
18304
18355
|
# Updates a registered blueprint.
|
|
18305
18356
|
#
|
|
18306
18357
|
# @option params [required, String] :name
|
|
@@ -20579,7 +20630,7 @@ module Aws::Glue
|
|
|
20579
20630
|
tracer: tracer
|
|
20580
20631
|
)
|
|
20581
20632
|
context[:gem_name] = 'aws-sdk-glue'
|
|
20582
|
-
context[:gem_version] = '1.
|
|
20633
|
+
context[:gem_version] = '1.264.0'
|
|
20583
20634
|
Seahorse::Client::Request.new(handlers, context)
|
|
20584
20635
|
end
|
|
20585
20636
|
|
|
@@ -1187,8 +1187,6 @@ module Aws::Glue
|
|
|
1187
1187
|
MessagePrefix = Shapes::StringShape.new(name: 'MessagePrefix')
|
|
1188
1188
|
MessageString = Shapes::StringShape.new(name: 'MessageString')
|
|
1189
1189
|
MetadataDescription = Shapes::StringShape.new(name: 'MetadataDescription')
|
|
1190
|
-
MetadataFormContent = Shapes::StringShape.new(name: 'MetadataFormContent')
|
|
1191
|
-
MetadataFormTypeIdentifier = Shapes::StringShape.new(name: 'MetadataFormTypeIdentifier')
|
|
1192
1190
|
MetadataInfo = Shapes::StructureShape.new(name: 'MetadataInfo')
|
|
1193
1191
|
MetadataInfoMap = Shapes::MapShape.new(name: 'MetadataInfoMap')
|
|
1194
1192
|
MetadataKeyString = Shapes::StringShape.new(name: 'MetadataKeyString')
|
|
@@ -1712,6 +1710,8 @@ module Aws::Glue
|
|
|
1712
1710
|
UnnestSpec = Shapes::StringShape.new(name: 'UnnestSpec')
|
|
1713
1711
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
|
1714
1712
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
|
1713
|
+
UpdateAssetRequest = Shapes::StructureShape.new(name: 'UpdateAssetRequest')
|
|
1714
|
+
UpdateAssetResponse = Shapes::StructureShape.new(name: 'UpdateAssetResponse')
|
|
1715
1715
|
UpdateBehavior = Shapes::StringShape.new(name: 'UpdateBehavior')
|
|
1716
1716
|
UpdateBlueprintRequest = Shapes::StructureShape.new(name: 'UpdateBlueprintRequest')
|
|
1717
1717
|
UpdateBlueprintResponse = Shapes::StructureShape.new(name: 'UpdateBlueprintResponse')
|
|
@@ -6693,8 +6693,8 @@ module Aws::Glue
|
|
|
6693
6693
|
PutAttachmentRequest.add_member(:iterable_form_name, Shapes::ShapeRef.new(shape: IterableFormName, location_name: "IterableFormName"))
|
|
6694
6694
|
PutAttachmentRequest.add_member(:item_identifier, Shapes::ShapeRef.new(shape: ItemIdentifier, location_name: "ItemIdentifier"))
|
|
6695
6695
|
PutAttachmentRequest.add_member(:attachment_name, Shapes::ShapeRef.new(shape: AttachmentName, required: true, location_name: "AttachmentName"))
|
|
6696
|
-
PutAttachmentRequest.add_member(:content, Shapes::ShapeRef.new(shape:
|
|
6697
|
-
PutAttachmentRequest.add_member(:form_type_id, Shapes::ShapeRef.new(shape:
|
|
6696
|
+
PutAttachmentRequest.add_member(:content, Shapes::ShapeRef.new(shape: FormContent, required: true, location_name: "Content"))
|
|
6697
|
+
PutAttachmentRequest.add_member(:form_type_id, Shapes::ShapeRef.new(shape: FormTypeId, required: true, location_name: "FormTypeId"))
|
|
6698
6698
|
PutAttachmentRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: HashString, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
6699
6699
|
PutAttachmentRequest.struct_class = Types::PutAttachmentRequest
|
|
6700
6700
|
|
|
@@ -6702,7 +6702,7 @@ module Aws::Glue
|
|
|
6702
6702
|
PutAttachmentResponse.add_member(:iterable_form_name, Shapes::ShapeRef.new(shape: IterableFormName, location_name: "IterableFormName"))
|
|
6703
6703
|
PutAttachmentResponse.add_member(:item_identifier, Shapes::ShapeRef.new(shape: ItemIdentifier, location_name: "ItemIdentifier"))
|
|
6704
6704
|
PutAttachmentResponse.add_member(:attachment_name, Shapes::ShapeRef.new(shape: AttachmentName, location_name: "AttachmentName"))
|
|
6705
|
-
PutAttachmentResponse.add_member(:form_type_id, Shapes::ShapeRef.new(shape:
|
|
6705
|
+
PutAttachmentResponse.add_member(:form_type_id, Shapes::ShapeRef.new(shape: FormTypeId, location_name: "FormTypeId"))
|
|
6706
6706
|
PutAttachmentResponse.struct_class = Types::PutAttachmentResponse
|
|
6707
6707
|
|
|
6708
6708
|
PutDataCatalogEncryptionSettingsRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
|
|
@@ -8094,6 +8094,18 @@ module Aws::Glue
|
|
|
8094
8094
|
|
|
8095
8095
|
UntagResourceResponse.struct_class = Types::UntagResourceResponse
|
|
8096
8096
|
|
|
8097
|
+
UpdateAssetRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: AssetId, required: true, location_name: "Identifier"))
|
|
8098
|
+
UpdateAssetRequest.add_member(:name, Shapes::ShapeRef.new(shape: AssetName, location_name: "Name"))
|
|
8099
|
+
UpdateAssetRequest.add_member(:description, Shapes::ShapeRef.new(shape: AssetDescription, location_name: "Description"))
|
|
8100
|
+
UpdateAssetRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: HashString, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
8101
|
+
UpdateAssetRequest.struct_class = Types::UpdateAssetRequest
|
|
8102
|
+
|
|
8103
|
+
UpdateAssetResponse.add_member(:id, Shapes::ShapeRef.new(shape: AssetId, required: true, location_name: "Id"))
|
|
8104
|
+
UpdateAssetResponse.add_member(:name, Shapes::ShapeRef.new(shape: AssetName, location_name: "Name"))
|
|
8105
|
+
UpdateAssetResponse.add_member(:description, Shapes::ShapeRef.new(shape: AssetDescription, location_name: "Description"))
|
|
8106
|
+
UpdateAssetResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: UpdatedAt, location_name: "UpdatedAt"))
|
|
8107
|
+
UpdateAssetResponse.struct_class = Types::UpdateAssetResponse
|
|
8108
|
+
|
|
8097
8109
|
UpdateBlueprintRequest.add_member(:name, Shapes::ShapeRef.new(shape: OrchestrationNameString, required: true, location_name: "Name"))
|
|
8098
8110
|
UpdateBlueprintRequest.add_member(:description, Shapes::ShapeRef.new(shape: Generic512CharString, location_name: "Description"))
|
|
8099
8111
|
UpdateBlueprintRequest.add_member(:blueprint_location, Shapes::ShapeRef.new(shape: OrchestrationS3Location, required: true, location_name: "BlueprintLocation"))
|
|
@@ -12326,6 +12338,20 @@ module Aws::Glue
|
|
|
12326
12338
|
o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
|
|
12327
12339
|
end)
|
|
12328
12340
|
|
|
12341
|
+
api.add_operation(:update_asset, Seahorse::Model::Operation.new.tap do |o|
|
|
12342
|
+
o.name = "UpdateAsset"
|
|
12343
|
+
o.http_method = "POST"
|
|
12344
|
+
o.http_request_uri = "/"
|
|
12345
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateAssetRequest)
|
|
12346
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateAssetResponse)
|
|
12347
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
12348
|
+
o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
|
|
12349
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
|
12350
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
|
12351
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
|
12352
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
12353
|
+
end)
|
|
12354
|
+
|
|
12329
12355
|
api.add_operation(:update_blueprint, Seahorse::Model::Operation.new.tap do |o|
|
|
12330
12356
|
o.name = "UpdateBlueprint"
|
|
12331
12357
|
o.http_method = "POST"
|
data/lib/aws-sdk-glue/types.rb
CHANGED
|
@@ -30964,6 +30964,64 @@ module Aws::Glue
|
|
|
30964
30964
|
#
|
|
30965
30965
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
|
30966
30966
|
|
|
30967
|
+
# @!attribute [rw] identifier
|
|
30968
|
+
# The unique identifier of the asset to update.
|
|
30969
|
+
# @return [String]
|
|
30970
|
+
#
|
|
30971
|
+
# @!attribute [rw] name
|
|
30972
|
+
# The new name of the asset.
|
|
30973
|
+
# @return [String]
|
|
30974
|
+
#
|
|
30975
|
+
# @!attribute [rw] description
|
|
30976
|
+
# The new description of the asset.
|
|
30977
|
+
# @return [String]
|
|
30978
|
+
#
|
|
30979
|
+
# @!attribute [rw] client_token
|
|
30980
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
30981
|
+
# idempotency of the request.
|
|
30982
|
+
#
|
|
30983
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
30984
|
+
# not need to pass this option.
|
|
30985
|
+
# @return [String]
|
|
30986
|
+
#
|
|
30987
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateAssetRequest AWS API Documentation
|
|
30988
|
+
#
|
|
30989
|
+
class UpdateAssetRequest < Struct.new(
|
|
30990
|
+
:identifier,
|
|
30991
|
+
:name,
|
|
30992
|
+
:description,
|
|
30993
|
+
:client_token)
|
|
30994
|
+
SENSITIVE = []
|
|
30995
|
+
include Aws::Structure
|
|
30996
|
+
end
|
|
30997
|
+
|
|
30998
|
+
# @!attribute [rw] id
|
|
30999
|
+
# The unique identifier of the asset.
|
|
31000
|
+
# @return [String]
|
|
31001
|
+
#
|
|
31002
|
+
# @!attribute [rw] name
|
|
31003
|
+
# The name of the asset.
|
|
31004
|
+
# @return [String]
|
|
31005
|
+
#
|
|
31006
|
+
# @!attribute [rw] description
|
|
31007
|
+
# The description of the asset.
|
|
31008
|
+
# @return [String]
|
|
31009
|
+
#
|
|
31010
|
+
# @!attribute [rw] updated_at
|
|
31011
|
+
# The timestamp at which the asset was last updated.
|
|
31012
|
+
# @return [Time]
|
|
31013
|
+
#
|
|
31014
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateAssetResponse AWS API Documentation
|
|
31015
|
+
#
|
|
31016
|
+
class UpdateAssetResponse < Struct.new(
|
|
31017
|
+
:id,
|
|
31018
|
+
:name,
|
|
31019
|
+
:description,
|
|
31020
|
+
:updated_at)
|
|
31021
|
+
SENSITIVE = []
|
|
31022
|
+
include Aws::Structure
|
|
31023
|
+
end
|
|
31024
|
+
|
|
30967
31025
|
# @!attribute [rw] name
|
|
30968
31026
|
# The name of the blueprint.
|
|
30969
31027
|
# @return [String]
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -4196,6 +4196,22 @@ module Aws
|
|
|
4196
4196
|
) -> _UntagResourceResponseSuccess
|
|
4197
4197
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
|
4198
4198
|
|
|
4199
|
+
interface _UpdateAssetResponseSuccess
|
|
4200
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAssetResponse]
|
|
4201
|
+
def id: () -> ::String
|
|
4202
|
+
def name: () -> ::String
|
|
4203
|
+
def description: () -> ::String
|
|
4204
|
+
def updated_at: () -> ::Time
|
|
4205
|
+
end
|
|
4206
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#update_asset-instance_method
|
|
4207
|
+
def update_asset: (
|
|
4208
|
+
identifier: ::String,
|
|
4209
|
+
?name: ::String,
|
|
4210
|
+
?description: ::String,
|
|
4211
|
+
?client_token: ::String
|
|
4212
|
+
) -> _UpdateAssetResponseSuccess
|
|
4213
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAssetResponseSuccess
|
|
4214
|
+
|
|
4199
4215
|
interface _UpdateBlueprintResponseSuccess
|
|
4200
4216
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateBlueprintResponse]
|
|
4201
4217
|
def name: () -> ::String
|
data/sig/types.rbs
CHANGED
|
@@ -7672,6 +7672,22 @@ module Aws::Glue
|
|
|
7672
7672
|
class UntagResourceResponse < Aws::EmptyStructure
|
|
7673
7673
|
end
|
|
7674
7674
|
|
|
7675
|
+
class UpdateAssetRequest
|
|
7676
|
+
attr_accessor identifier: ::String
|
|
7677
|
+
attr_accessor name: ::String
|
|
7678
|
+
attr_accessor description: ::String
|
|
7679
|
+
attr_accessor client_token: ::String
|
|
7680
|
+
SENSITIVE: []
|
|
7681
|
+
end
|
|
7682
|
+
|
|
7683
|
+
class UpdateAssetResponse
|
|
7684
|
+
attr_accessor id: ::String
|
|
7685
|
+
attr_accessor name: ::String
|
|
7686
|
+
attr_accessor description: ::String
|
|
7687
|
+
attr_accessor updated_at: ::Time
|
|
7688
|
+
SENSITIVE: []
|
|
7689
|
+
end
|
|
7690
|
+
|
|
7675
7691
|
class UpdateBlueprintRequest
|
|
7676
7692
|
attr_accessor name: ::String
|
|
7677
7693
|
attr_accessor description: ::String
|