Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for bere (0.16 sec)

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

    		// (base64 URL encoding chars).
    		if !validRoleIDRegex.MatchString(roleID) {
    			return args, config.Errorf("Role ID must match the regexp `^[a-zA-Z0-9_-]+$`")
    		}
    
    		// Use the user provided ID here.
    		resourceID += roleID
    	}
    
    	roleArn, err := arn.NewIAMRoleARN(resourceID, serverRegion)
    	if err != nil {
    		return args, config.Errorf("unable to generate ARN from the plugin config: %v", err)
    	}
    
    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. cmd/config.go

    				}
    
    				cfgEntry.Data = string(data)
    			}
    			configHistory = append(configHistory, cfgEntry)
    			count--
    			if count == 0 {
    				break
    			}
    		}
    		if !res.IsTruncated {
    			// We are done here
    			break
    		}
    		marker = res.NextMarker
    	}
    	sort.Slice(configHistory, func(i, j int) bool {
    		return configHistory[i].CreateTime.Before(configHistory[j].CreateTime)
    	})
    	return configHistory, nil
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Aug 23 10:07:06 GMT 2023
    - 6K bytes
    - Viewed (0)
  3. internal/config/config.go

    	DriveSubSys          = madmin.DriveSubSys
    	BatchSubSys          = madmin.BatchSubSys
    	BrowserSubSys        = madmin.BrowserSubSys
    	ILMSubSys            = madmin.ILMSubsys
    
    	// Add new constants here (similar to above) if you add new fields to config.
    )
    
    // Notification config constants.
    const (
    	NotifyKafkaSubSys    = madmin.NotifyKafkaSubSys
    	NotifyMQTTSubSys     = madmin.NotifyMQTTSubSys
    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