Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 7,698 for worm (0.09 sec)

  1. docs/bucket/retention/README.md

    - Install `awscli` - [Installing AWS Command Line Interface](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html)
    
    ### 2. Set bucket WORM configuration
    
    WORM on a bucket is enabled by setting object lock configuration. This configuration is applied to all the objects in the bucket. Below is an example to set `Governance` mode and one day retention time on `mybucket`.
    
    ```sh
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. cmd/bucket-object-lock.go

    // for requests with WORM headers
    // See https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock-managing.html for the spec.
    // For non-existing objects with object retention headers set, this method returns ErrNone if bucket has
    // locking enabled and user has requisite permissions (s3:PutObjectRetention)
    // If object exists on object store and site wide WORM enabled - this method
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. cmd/config-versions.go

    	quick.Config `json:"-"` // ignore interfaces
    
    	Version string `json:"version"`
    
    	// S3 API configuration.
    	Credential auth.Credentials `json:"credential"`
    	Region     string           `json:"region"`
    	Worm       config.BoolFlag  `json:"worm"`
    
    	// Storage class configuration
    	StorageClass storageclass.Config `json:"storageclass"`
    
    	// Notification queue configuration.
    	Notify notify.Config `json:"notify"`
    
    	// Logger configuration
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. internal/config/errors.go

    		"Erasure set can only accept any of [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16] values",
    	)
    
    	ErrInvalidWormValue = newErrFn(
    		"Invalid WORM value",
    		"Please check the passed value",
    		"WORM can only accept `on` and `off` values. To enable WORM, set this value to `on`",
    	)
    
    	ErrInvalidConfigDecryptionKey = newErrFn(
    		"Incorrect encryption key to decrypt internal data",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 18 22:25:32 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. cmd/object-api-errors.go

    func (e MethodNotAllowed) Error() string {
    	return "Method not allowed: " + e.Bucket + "/" + e.Object
    }
    
    // ObjectLocked object is currently WORM protected.
    type ObjectLocked GenericError
    
    func (e ObjectLocked) Error() string {
    	return "Object is WORM protected and cannot be overwritten: " + e.Bucket + "/" + e.Object + "(" + e.VersionID + ")"
    }
    
    // ObjectAlreadyExists object already exists.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 22:19:00 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  6. internal/bucket/object/lock/lock.go

    	ErrPastObjectLockRetainDate = errors.New("the retain until date must be in the future")
    	// ErrUnknownWORMModeDirective - indicates that the retention mode is invalid
    	ErrUnknownWORMModeDirective = errors.New("unknown WORM mode directive")
    	// ErrObjectLockMissingContentMD5 - indicates missing Content-MD5 header for put object requests with locking
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. internal/config/config.go

    							kvs[i].Value = "*redacted*"
    						}
    					}
    					configVals[name] = kvs
    				}
    			}
    		}
    	}
    
    	return nc
    }
    
    // Default KV configs for worm and region
    var (
    	DefaultCredentialKVS = KVS{
    		KV{
    			Key:   AccessKey,
    			Value: auth.DefaultAccessKey,
    		},
    		KV{
    			Key:   SecretKey,
    			Value: auth.DefaultSecretKey,
    		},
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"wood":                                 "\U0001fab5",
    	"woozy_face":                           "\U0001f974",
    	"world_map":                            "\U0001f5fa\ufe0f",
    	"worm":                                 "\U0001fab1",
    	"worried":                              "\U0001f61f",
    	"wrench":                               "\U0001f527",
    	"wrestling":                            "\U0001f93c",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  9. cmd/api-errors.go

    		Description:    "The specified object does not have a ObjectLock configuration",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrObjectLocked: {
    		Code:           "InvalidRequest",
    		Description:    "Object is WORM protected and cannot be overwritten",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidRetentionDate: {
    		Code:           "InvalidRequest",
    		Description:    "Date must be provided in ISO 8601 format",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package modfile
    
    import (
    	"fmt"
    	"sort"
    	"strings"
    )
    
    // A WorkFile is the parsed, interpreted form of a go.work file.
    type WorkFile struct {
    	Go        *Go
    	Toolchain *Toolchain
    	Godebug   []*Godebug
    	Use       []*Use
    	Replace   []*Replace
    
    	Syntax *FileSyntax
    }
    
    // A Use is a single directory statement.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top