Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion generator/ServiceClientGeneratorLib/ServiceModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,8 @@ public List<Operation> S3AllowListOperations
new Operation(this, "ListMultipartUploads", DocumentRoot[OperationsKey]["ListMultipartUploads"]),
new Operation(this, "CompleteMultipartUpload", DocumentRoot[OperationsKey]["CompleteMultipartUpload"]),
new Operation(this, "DeleteObject", DocumentRoot[OperationsKey]["DeleteObject"]),
new Operation(this, "DeleteObjects", DocumentRoot[OperationsKey]["DeleteObjects"])
new Operation(this, "DeleteObjects", DocumentRoot[OperationsKey]["DeleteObjects"]),
new Operation(this, "DeleteObjectTagging", DocumentRoot[OperationsKey]["DeleteObjectTagging"])
};
}
return _s3AllowListOperations.Where(operation => operation.data != null).ToList();
Expand Down
17 changes: 17 additions & 0 deletions generator/ServiceModels/s3/s3.customizations.json
Original file line number Diff line number Diff line change
Expand Up @@ -1423,6 +1423,23 @@
"ETag":{"injectXmlIsSet":["return !String.IsNullOrEmpty(this._eTag);"]}
}
]
},
"DeleteObjectTaggingRequest":{
"modify":[
{
"ExpectedBucketOwner":{"injectXmlIsSet":["return !String.IsNullOrEmpty(this._expectedBucketOwner);"]}
},
{
"VersionId":{"injectXmlIsSet":["return !String.IsNullOrEmpty(this._versionId);"]}
}
]
},
"DeleteObjectTaggingOutput":{
"modify":[
{
"VersionId":{"injectXmlIsSet":["return !String.IsNullOrEmpty(this._versionId);"]}
}
]
}
},
"operationModifiers": {
Expand Down
176 changes: 0 additions & 176 deletions sdk/src/Services/S3/Custom/Model/DeleteObjectTaggingRequest.cs

This file was deleted.

44 changes: 0 additions & 44 deletions sdk/src/Services/S3/Custom/Model/DeleteObjectTaggingResponse.cs

This file was deleted.

This file was deleted.

Loading