Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: %27 テスト [xss] test

Results 451 - 460 of 480 for host:docs.min.io (0.06 sec)

  1. AIStor Object Store Documentation

    MinIO AIStor Documentation MinIO AIStor is a high-performance S3-compatible object store licensed under the MinIO Com...
    docs.min.io/enterprise/aistor-object-store/
    Registered: Fri Jan 16 04:51:13 UTC 2026
    - Last Modified: Wed Jan 14 19:11:18 UTC 2026
    - 267.1K bytes
    - Viewed (0)
  2. Developers | AIStor Object Store Documentation

    This section provides documentation for integrating applications with AIStor Object Store. If your application already works with Amazon S3, it can work with AIStor with minimal configuration changes. Migrating existing S3 applications from AWS to AIStor typically requires only updating the endpoint URL and credentials in the client configuration. AIStor implements a subset of the Amazon S3 API, allowing developers to use existing S3-compatible tools, libraries, and SDKs to interact with AIStor deployments.
    docs.min.io/enterprise/aistor-object-store/developers/
    Registered: Fri Jan 16 05:42:53 UTC 2026
    - Last Modified: Wed Jan 14 19:11:18 UTC 2026
    - 251.8K bytes
    - Viewed (0)
  3. Kafka Notification Settings | AIStor Object Sto...

    This page documents settings for configuring an Kafka service as a target for Bucket Notifications. See Publish Events to Kafka for a tutorial on using these settings. You can establish or modify settings by defining: an environment variable on the host system prior to starting or restarting the AIStor Server. Refer to your operating system’s documentation for how to define an environment variable. a configuration setting using mc admin config set. If you define both an environment variable and the similar configuration setting, AIStor uses the environment variable value.
    docs.min.io/enterprise/aistor-object-store/reference/aistor-server/settings/notifications/kafka/
    Registered: Fri Jan 16 05:41:18 UTC 2026
    - Last Modified: Wed Jan 14 19:11:19 UTC 2026
    - 311K bytes
    - Viewed (0)
  4. LDAP Settings | AIStor Object Store Documentation

    This page documents settings for enabling external identity management using an Active Directory or LDAP service. See Configure AIStor for Authentication using Active Directory / LDAP for a tutorial on using these settings. AIStor supports configuring multiple LDAP providers. You provide a unique name for each provider configuration, allowing you to integrate with different directory services or organizational units within your environment. MinIO recommends using the mc idp ldap commands for LDAP management operations. These commands offer better validation and additional features, while providing the same settings as the identity_ldap configuration key. The identity_ldap configuration settings remains available for existing scripts and other tools.
    docs.min.io/enterprise/aistor-object-store/reference/aistor-server/settings/iam/ldap/
    Registered: Fri Jan 16 05:41:28 UTC 2026
    - Last Modified: Wed Jan 14 19:11:19 UTC 2026
    - 307.7K bytes
    - Viewed (0)
  5. Go Client API Reference | AIStor Object Store D...

    Initialize MinIO client object MinIO package main import ( "log" "github.com/minio/minio-go/v7" "github.com/minio/minio-go/v7/pkg/credentials" ) func main() { endpoint := "play.min.io" accessKeyID := "Q3AM3UQ867SPQQA43P2F" secretAccessKey := "zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG" useSSL := true // Initialize minio client object. minioClient, err := minio.New(endpoint, &minio.Options{ Creds: credentials.NewStaticV4(accessKeyID, secretAccessKey, ""), Secure: useSSL, }) if err != nil { log.Fatalln(err) } log.Printf("%#v\n", minioClient) // minioClient is now setup } AWS S3 package main import ( "fmt" "github.com/minio/minio-go/v7" "github.com/minio/minio-go/v7/pkg/credentials" ) func main() { // Initialize minio client object. s3Client, err := minio.New("s3.amazonaws.com", &minio.Options{ Creds: credentials.NewStaticV4("YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY", ""), Secure: true, }) if err != nil { fmt.Println(err) return } } Bucket operations Object operations Presigned operations Bucket Policy/Notification Operations Client custom settings MakeBucket AppendObject PresignedGetObject SetBucketPolicy SetAppInfo GetObject PresignedPutObject GetBucketPolicy ListBuckets PutObject PresignedHeadObject SetBucketNotification TraceOn BucketExists CopyObject PresignedPostPolicy GetBucketNotification TraceOff RemoveBucket StatObject RemoveAllBucketNotification SetS3TransferAccelerate ListObjects RemoveObject ListenBucketNotification RemoveObjects SetBucketLifecycle ListIncompleteUploads RemoveIncompleteUpload GetBucketLifecycle SetBucketTagging FPutObject SetObjectLockConfig GetBucketTagging FGetObject GetObjectLockConfig RemoveBucketTagging ComposeObject EnableVersioning SetBucketReplication DisableVersioning GetBucketReplication PutObjectRetention GetBucketEncryption RemoveBucketReplication GetObjectRetention RemoveBucketEncryption CancelBucketReplicationResync PutObjectLegalHold GetObjectLegalHold SelectObjectContent PutObjectTagging GetObjectTagging RemoveObjectTagging RestoreObject GetObjectAttributes 1. Constructor
    docs.min.io/enterprise/aistor-object-store/developers/sdk/go/api/
    Registered: Fri Jan 16 05:40:46 UTC 2026
    - Last Modified: Wed Jan 14 19:11:18 UTC 2026
    - 593.3K bytes
    - Viewed (0)
  6. AIStor Server Operator Helm Chart | AIStor Obje...

    The following page includes the full contents of the AIStor Server Operator Helm Chart default values.yaml and all accompanying documentation. Configuration precedence The AIStor Operator Helm chart supports a hierarchical configuration system where settings can be defined at multiple levels. When the same setting is defined at multiple levels, the following order of precedence determines which value is used (highest to lowest):
    docs.min.io/enterprise/aistor-object-store/reference/kubernetes/object-store-operator-helm-chart/
    Registered: Fri Jan 16 05:41:37 UTC 2026
    - Last Modified: Wed Jan 14 19:11:19 UTC 2026
    - 276.4K bytes
    - Viewed (0)
  7. Go SDK | AIStor Object Store Documentation

    The MinIO Go Client SDK provides straightforward APIs to access any Amazon S3 compatible object storage. This Quickstart Guide covers how to install the MinIO client SDK, connect to MinIO, and create a sample file uploader. For a complete list of APIs and examples, see the godoc documentation or Go Client API Reference. These examples presume a working Go development environment and the MinIO mc command line tool. Download from GitHub From your project directory:
    docs.min.io/enterprise/aistor-object-store/developers/sdk/go/
    Registered: Fri Jan 16 05:41:42 UTC 2026
    - Last Modified: Wed Jan 14 19:11:18 UTC 2026
    - 299.3K bytes
    - Viewed (0)
  8. Elasticsearch Notification Settings | AIStor Ob...

    This page documents settings for configuring an Elasticsearch service as a target for Bucket Notifications. See Publish Events to Elasticsearch for a tutorial on using these settings. You can establish or modify settings by defining: an environment variable on the host system prior to starting or restarting the AIStor Server. Refer to your operating system’s documentation for how to define an environment variable. a configuration setting using mc admin config set. If you define both an environment variable and the similar configuration setting, AIStor uses the environment variable value.
    docs.min.io/enterprise/aistor-object-store/reference/aistor-server/settings/notifications/elastic...
    Registered: Fri Jan 16 05:42:14 UTC 2026
    - Last Modified: Wed Jan 14 19:11:19 UTC 2026
    - 282.2K bytes
    - Viewed (0)
  9. Python SDK | AIStor Object Store Documentation

    The MinIO Python Client SDK provides high level APIs to access any MinIO Object Storage or other Amazon S3 compatible service. This Quickstart Guide covers how to install the MinIO client SDK, connect to the object storage service, and create a sample file uploader. The example below uses: Python version 3.7+ The MinIO mc command line tool The MinIO play test server The play server is a public MinIO cluster located at https://play.min.io. This cluster runs the latest stable version of MinIO and may be used for testing and development. The access credentials in the example are open to the public and all data uploaded to play should be considered public and world-readable.
    docs.min.io/enterprise/aistor-object-store/developers/sdk/python/
    Registered: Fri Jan 16 05:47:26 UTC 2026
    - Last Modified: Wed Jan 14 19:11:18 UTC 2026
    - 271K bytes
    - Viewed (0)
  10. .NET Client API Reference | AIStor Object Store...

    Initialize MinIO client object MinIO IMinioClient minioClient = new MinioClient() .WithEndpoint("play.min.io") .WithCredentials("Q3AM3UQ867SPQQA43P2F", "zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG") .WithSSL() .Build(); AWS S3 IIMinioClient minioClient = new MinioClient() .WithEndpoint("s3.amazonaws.com") .WithCredentials("YOUR-ACCESSKEYID", "YOUR-SECRETACCESSKEY") .WithSSL() .Build(); Bucket operations Object operations Presigned operations Bucket Policy Operations makeBucket getObject presignedGetObject getBucketPolicy listBuckets putObject presignedPutObject setBucketPolicy bucketExists copyObject presignedPostPolicy setBucketNotification removeBucket statObject getBucketNotification listObjects removeObject removeAllBucketNotification listIncompleteUploads removeObjects listenBucketNotifications selectObjectContent setVersioning setLegalHold getVersioning getLegalHold setBucketEncryption setObjectTags getBucketEncryption getObjectTags removeBucketEncryption removeObjectTags setBucketTags setObjectRetention getBucketTags getObjectRetention removeBucketTags clearObjectRetention setObjectLock removeIncompleteUpload getObjectLock removeObjectLock setBucketLifecycle getBucketLifecycle removeBucketLifecycle setBucketReplication getBucketReplication removeBucketReplication 1. Constructors
    docs.min.io/enterprise/aistor-object-store/developers/sdk/dotnet/api/
    Registered: Fri Jan 16 05:47:32 UTC 2026
    - Last Modified: Wed Jan 14 19:11:18 UTC 2026
    - 625.7K bytes
    - Viewed (0)
Back to top