Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for multiple (0.36 sec)

  1. internal/event/config.go

    	}
    
    	if err := ValidateFilterRuleValue(filter.Value); err != nil {
    		return err
    	}
    
    	*filter = FilterRule(rule)
    
    	return nil
    }
    
    // FilterRuleList - represents multiple <FilterRule>...</FilterRule>
    type FilterRuleList struct {
    	Rules []FilterRule `xml:"FilterRule,omitempty"`
    }
    
    // UnmarshalXML - decodes XML data.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Nov 16 17:28:29 GMT 2021
    - 8.4K bytes
    - Viewed (0)
  2. internal/kms/config.go

    package kms
    
    // Top level config constants for KMS
    const (
    	EnvKMSSecretKey        = "MINIO_KMS_SECRET_KEY"
    	EnvKMSSecretKeyFile    = "MINIO_KMS_SECRET_KEY_FILE"
    	EnvKESEndpoint         = "MINIO_KMS_KES_ENDPOINT"       // One or multiple KES endpoints, separated by ','
    	EnvKESKeyName          = "MINIO_KMS_KES_KEY_NAME"       // The default key name used for IAM data and when no key ID is specified on a bucket
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 15 07:42:50 GMT 2024
    - 2K bytes
    - Viewed (0)
Back to top