Skip to content

Commit bd02d2f

Browse files
committed
generate deleteobjecttagging
1 parent 5e59374 commit bd02d2f

File tree

10 files changed

+463
-367
lines changed

10 files changed

+463
-367
lines changed

generator/ServiceClientGeneratorLib/ServiceModel.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,8 @@ public List<Operation> S3AllowListOperations
581581
new Operation(this, "ListMultipartUploads", DocumentRoot[OperationsKey]["ListMultipartUploads"]),
582582
new Operation(this, "CompleteMultipartUpload", DocumentRoot[OperationsKey]["CompleteMultipartUpload"]),
583583
new Operation(this, "DeleteObject", DocumentRoot[OperationsKey]["DeleteObject"]),
584-
new Operation(this, "DeleteObjects", DocumentRoot[OperationsKey]["DeleteObjects"])
584+
new Operation(this, "DeleteObjects", DocumentRoot[OperationsKey]["DeleteObjects"]),
585+
new Operation(this, "DeleteObjectTagging", DocumentRoot[OperationsKey]["DeleteObjectTagging"])
585586
};
586587
}
587588
return _s3AllowListOperations.Where(operation => operation.data != null).ToList();

generator/ServiceModels/s3/s3.customizations.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1423,6 +1423,23 @@
14231423
"ETag":{"injectXmlIsSet":["return !String.IsNullOrEmpty(this._eTag);"]}
14241424
}
14251425
]
1426+
},
1427+
"DeleteObjectTaggingRequest":{
1428+
"modify":[
1429+
{
1430+
"ExpectedBucketOwner":{"injectXmlIsSet":["return !String.IsNullOrEmpty(this._expectedBucketOwner);"]}
1431+
},
1432+
{
1433+
"VersionId":{"injectXmlIsSet":["return !String.IsNullOrEmpty(this._versionId);"]}
1434+
}
1435+
]
1436+
},
1437+
"DeleteObjectTaggingOutput":{
1438+
"modify":[
1439+
{
1440+
"VersionId":{"injectXmlIsSet":["return !String.IsNullOrEmpty(this._versionId);"]}
1441+
}
1442+
]
14261443
}
14271444
},
14281445
"operationModifiers": {

sdk/src/Services/S3/Custom/Model/DeleteObjectTaggingRequest.cs

Lines changed: 0 additions & 176 deletions
This file was deleted.

sdk/src/Services/S3/Custom/Model/DeleteObjectTaggingResponse.cs

Lines changed: 0 additions & 44 deletions
This file was deleted.

sdk/src/Services/S3/Custom/Model/Internal/MarshallTransformations/DeleteObjectTaggingRequestMarshaller.cs

Lines changed: 0 additions & 81 deletions
This file was deleted.

0 commit comments

Comments
 (0)