Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for account_id (0.21 sec)

  1. internal/config/lambda/event/event.go

    //	    }
    //	  },
    //	  "userIdentity": {
    //	    "type": "IAMUser",
    //	    "principalId": "AIDAJF5MO57RFXQCE5ZNC",
    //	    "arn": "...",
    //	    "accountId": "...",
    //	    "accessKeyId": "AKIA3WNQJCXE2DYPAU7R"
    //	  },
    //	  "protocolVersion": "1.00"
    //	}
    type Event struct {
    	ProtocolVersion  string            `json:"protocolVersion"`
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Mar 07 16:12:41 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  2. cmd/data-scanner.go

    				if h == thisHash {
    					return nil
    				}
    				this := cachedFolder{name: entName, parent: &thisHash, objectHealProbDiv: folder.objectHealProbDiv}
    				delete(abandonedChildren, h.Key()) // h.Key() already accounted for.
    				if exists {
    					existingFolders = append(existingFolders, this)
    					f.updateCache.copyWithChildren(&f.oldCache, h, &thisHash)
    				} else {
    					newFolders = append(newFolders, this)
    				}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 47.4K bytes
    - Viewed (0)
  3. cmd/endpoint-ellipses.go

    			return nil, config.ErrInvalidNumberOfErasureEndpoints(nil).Msg(msg)
    		}
    
    		// Final set size with all the symmetry accounted for.
    		setSize = commonSetDriveCount(commonSize, setCounts)
    	}
    
    	// Check whether setSize is with the supported range.
    	if !isValidSetSize(setSize) {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 11 21:22:47 GMT 2024
    - 14.8K bytes
    - Viewed (0)
  4. cmd/object-api-datatypes.go

    	}
    	return cinfo
    }
    
    func (o ObjectInfo) tierStats() tierStats {
    	ts := tierStats{
    		TotalSize:   uint64(o.Size),
    		NumVersions: 1,
    	}
    	// the current version of an object is accounted towards objects count
    	if o.IsLatest {
    		ts.NumObjects = 1
    	}
    	return ts
    }
    
    // ToObjectInfo converts a replication object info to a partial ObjectInfo
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 20.8K bytes
    - Viewed (0)
Back to top