Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for serviceAccountList (0.24 sec)

  1. cmd/admin-handlers-idp-ldap.go

    			writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    			return
    		}
    	}
    
    	var serviceAccountList []madmin.ServiceAccountInfo
    	var stsKeyList []madmin.ServiceAccountInfo
    
    	for _, svc := range serviceAccounts {
    		expiryTime := svc.Expiration
    		serviceAccountList = append(serviceAccountList, madmin.ServiceAccountInfo{
    			AccessKey:  svc.AccessKey,
    			Expiration: &expiryTime,
    		})
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 13.3K bytes
    - Viewed (0)
  2. cmd/admin-handlers-users.go

    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    	var serviceAccountList []madmin.ServiceAccountInfo
    
    	for _, svc := range serviceAccounts {
    		expiryTime := svc.Expiration
    		serviceAccountList = append(serviceAccountList, madmin.ServiceAccountInfo{
    			AccessKey:  svc.AccessKey,
    			Expiration: &expiryTime,
    		})
    	}
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 77.3K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // Can be overridden at the pod level.
      // +optional
      optional bool automountServiceAccountToken = 4;
    }
    
    // ServiceAccountList is a list of ServiceAccount objects
    message ServiceAccountList {
      // Standard list metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
      // +optional
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
Back to top