Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for UpdateServiceAccount (0.15 sec)

  1. cmd/admin-handlers-users_test.go

    		c.Fatalf("Err creating svcacct admin client: %v", err)
    	}
    	svcAdmClient.SetCustomTransport(s.TestSuiteCommon.client.Transport)
    
    	// Attempt to update the policy on the service account.
    	err = svcAdmClient.UpdateServiceAccount(ctx, cr.AccessKey,
    		madmin.UpdateServiceAccountReq{
    			NewPolicy: fullS3PolicyBytes,
    		})
    
    	if err == nil {
    		c.Fatalf("service account should not be able to update policy on itself")
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Sep 22 00:33:43 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  2. cmd/iam.go

    	expiration        *time.Time
    }
    
    // UpdateServiceAccount - edit a service account
    func (sys *IAMSys) UpdateServiceAccount(ctx context.Context, accessKey string, opts updateServiceAccountOpts) (updatedAt time.Time, err error) {
    	if !sys.Initialized() {
    		return updatedAt, errServerNotInitialized
    	}
    
    	updatedAt, err = sys.store.UpdateServiceAccount(ctx, accessKey, opts)
    	if err != nil {
    		return updatedAt, err
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 29 16:01:48 UTC 2024
    - 74.6K bytes
    - Viewed (0)
  3. cmd/admin-handlers-users.go

    					Status:        auth.AccountOn,
    					Expiration:    createReq.Expiration,
    				},
    			},
    			UpdatedAt: updatedAt,
    		}))
    	}
    }
    
    // UpdateServiceAccount - POST /minio/admin/v3/update-service-account
    func (a adminAPIHandlers) UpdateServiceAccount(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	// Get current object layer instance.
    	objectAPI := newObjectLayerFn()
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 03 23:11:02 UTC 2024
    - 85.1K bytes
    - Viewed (0)
  4. cmd/admin-router.go

    		adminRouter.Methods(http.MethodPost).Path(adminVersion+"/update-service-account").HandlerFunc(adminMiddleware(adminAPI.UpdateServiceAccount)).Queries("accessKey", "{accessKey:.*}")
    		adminRouter.Methods(http.MethodGet).Path(adminVersion+"/info-service-account").HandlerFunc(adminMiddleware(adminAPI.InfoServiceAccount)).Queries("accessKey", "{accessKey:.*}")
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Sep 21 11:35:40 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. cmd/iam-store.go

    	if err != nil {
    		return updatedAt, err
    	}
    
    	cache.updateUserWithClaims(u.Credentials.AccessKey, u)
    
    	return u.UpdatedAt, nil
    }
    
    // UpdateServiceAccount - updates a service account on storage.
    func (store *IAMStoreSys) UpdateServiceAccount(ctx context.Context, accessKey string, opts updateServiceAccountOpts) (updatedAt time.Time, err error) {
    	cache := store.lock()
    	defer store.unlock()
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Oct 14 16:35:37 UTC 2024
    - 83.2K bytes
    - Viewed (0)
  6. cmd/site-replication.go

    			name:          change.Update.Name,
    			description:   change.Update.Description,
    			sessionPolicy: sp,
    			expiration:    change.Update.Expiration,
    		}
    
    		_, err = globalIAMSys.UpdateServiceAccount(ctx, change.Update.AccessKey, opts)
    		if err != nil {
    			return wrapSRErr(err)
    		}
    
    	case change.Delete != nil:
    		// skip overwrite of local update if peer sent stale info
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 185.1K bytes
    - Viewed (0)
Back to top