Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Optional (0.19 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 Apr 21 19:28:08 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 Apr 21 19:28:08 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 Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Mar 02 05:11:03 GMT 2024
    - 37.3K bytes
    - Viewed (0)
  4. internal/config/identity/tls/config.go

    var Help = config.HelpKVS{
    	config.HelpKV{
    		Key:         skipVerify,
    		Description: `trust client certificates without verification (default: 'off')`,
    		Optional:    true,
    		Type:        "on|off",
    	},
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Sep 04 19:57:37 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  5. cmd/config.go

    			minioMetaBucket: path.Join(minioMetaBucket, configFile),
    		})
    		if err != nil {
    			return err
    		}
    	}
    	return saveConfig(ctx, objAPI, configFile, data)
    }
    
    // data is optional. If nil it will be loaded from backend.
    func readServerConfig(ctx context.Context, objAPI ObjectLayer, data []byte) (config.Config, error) {
    	srvCfg := config.New()
    	var err error
    	if len(data) == 0 {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Aug 23 10:07:06 GMT 2023
    - 6K bytes
    - Viewed (0)
Back to top