Sha256: 8e88c2288d60c2a394f7842569e3f473f621d331779050b0e3b145cbba02b8c4
Contents?: true
Size: 1.33 KB
Versions: 17
Compression:
Stored size: 1.33 KB
Contents
# UserCipherUse ## Example UserCipherUse Object ``` { "id": 1, "protocol_cipher": "TLSv1.2; ECDHE-RSA-AES256-GCM-SHA384", "created_at": "2000-01-01T01:00:00Z", "interface": "restapi", "updated_at": "2000-01-01T01:00:00Z", "user_id": 1 } ``` * `id` (int64): UserCipherUse ID * `protocol_cipher` (string): The protocol and cipher employed * `created_at` (date-time): The earliest recorded use of this combination of interface and protocol and cipher (for this user) * `interface` (string): The interface accessed * `updated_at` (date-time): The most recent use of this combination of interface and protocol and cipher (for this user) * `user_id` (int64): ID of the user who performed this access --- ## List User Cipher Uses ``` Files::UserCipherUse.list( user_id: 1, page: 1, per_page: 1 ) ``` ### Parameters * `user_id` (int64): User ID. Provide a value of `0` to operate the current session's user. * `page` (int64): Current page number. * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended). * `action` (string): Deprecated: If set to `count` returns a count of matching records rather than the records themselves. * `cursor` (string): Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
Version data entries
17 entries across 17 versions & 1 rubygems