-
-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MinIO type defintions #192
Labels
feature
New feature or request
Comments
|
VersioningConfiguration pub struct VersioningConfiguration {
/// <p>Specifies whether MFA delete is enabled in the bucket versioning configuration. This
/// element is only returned if the bucket has been configured with MFA delete. If the bucket
/// has never been so configured, this element is not returned.</p>
pub mfa_delete: Option<MFADelete>,
/// <p>The versioning state of the bucket.</p>
pub status: Option<BucketVersioningStatus>,
} minio add ExcludedPrefixes,ExcludeFolders fields type Versioning struct {
XMLNS string `xml:"xmlns,attr,omitempty"`
XMLName xml.Name `xml:"VersioningConfiguration"`
// MFADelete State `xml:"MFADelete,omitempty"` // not supported yet.
Status State `xml:"Status,omitempty"`
// MinIO extension - allows selective, prefix-level versioning exclusion.
// Requires versioning to be enabled
ExcludedPrefixes []ExcludedPrefix `xml:",omitempty"`
ExcludeFolders bool `xml:",omitempty"`
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Collect differences between MinIO and AWS S3.
Branch: https://github.com/Nugine/s3s/tree/minio
CI
Differences
The text was updated successfully, but these errors were encountered: