Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for optional (0.17 sec)

  1. internal/config/identity/plugin/config.go

    		},
    		config.HelpKV{
    			Key:         RoleID,
    			Description: "unique ID to generate the ARN" + defaultHelpPostfix(RoleID),
    			Optional:    true,
    			Type:        "string",
    		},
    		config.HelpKV{
    			Key:         config.Comment,
    			Description: config.DefaultComment,
    			Optional:    true,
    			Type:        "sentence",
    		},
    	}
    )
    
    // Allows only Base64 URL encoding characters.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 13.3K bytes
    - Viewed (3)
  2. internal/kms/config.go

    	EnvKESClientKey        = "MINIO_KMS_KES_KEY_FILE"       // Path to TLS private key for authenticating to KES with mTLS - usually prefer API keys
    	EnvKESClientPassword   = "MINIO_KMS_KES_KEY_PASSWORD"   // Optional password to decrypt an encrypt TLS private key
    	EnvKESClientCert       = "MINIO_KMS_KES_CERT_FILE"      // Path to TLS certificate for authenticating to KES with mTLS - usually prefer API keys
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 15 07:42:50 GMT 2024
    - 2K bytes
    - Viewed (0)
  3. internal/config/config.go

    			// then it is implicit on for the sub-system.
    			enabled = true
    		}
    		v, _ := currKVS.Lookup(hkv.Key)
    		if v == "" && !hkv.Optional && enabled {
    			// Return error only if the
    			// key is enabled, for state=off
    			// let it be empty.
    			return false, Errorf(
    				"'%s' is not optional for '%s' sub-system, please check '%s' documentation",
    				hkv.Key, subSys, subSys)
    		}
    	}
    	c[subSys][tgt] = currKVS
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Mar 02 05:11:03 GMT 2024
    - 37.3K bytes
    - Viewed (0)
Back to top