Class: Files::UserCipherUse
- Inherits:
-
Object
- Object
- Files::UserCipherUse
- Defined in:
- lib/files.com/models/user_cipher_use.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Class Method Summary collapse
- .all(params = {}, options = {}) ⇒ Object
-
.list(params = {}, options = {}) ⇒ Object
Parameters: user_id - integer - User ID.
Instance Method Summary collapse
-
#created_at ⇒ Object
date-time - The earliest recorded use of this combination of interface and protocol and cipher (for this user).
-
#id ⇒ Object
int64 - UserCipherUse ID.
-
#initialize(attributes = {}, options = {}) ⇒ UserCipherUse
constructor
A new instance of UserCipherUse.
-
#interface ⇒ Object
string - The interface accessed.
-
#protocol_cipher ⇒ Object
string - The protocol and cipher employed.
-
#updated_at ⇒ Object
date-time - The most recent use of this combination of interface and protocol and cipher (for this user).
-
#user_id ⇒ Object
int64 - ID of the user who performed this access.
Constructor Details
#initialize(attributes = {}, options = {}) ⇒ UserCipherUse
Returns a new instance of UserCipherUse.
7 8 9 10 |
# File 'lib/files.com/models/user_cipher_use.rb', line 7 def initialize(attributes = {}, = {}) @attributes = attributes || {} @options = || {} end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
5 6 7 |
# File 'lib/files.com/models/user_cipher_use.rb', line 5 def attributes @attributes end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
5 6 7 |
# File 'lib/files.com/models/user_cipher_use.rb', line 5 def @options end |
Class Method Details
.all(params = {}, options = {}) ⇒ Object
57 58 59 |
# File 'lib/files.com/models/user_cipher_use.rb', line 57 def self.all(params = {}, = {}) list(params, ) end |
.list(params = {}, options = {}) ⇒ Object
Parameters:
user_id - integer - User ID. If not provided, this operation will operate on your own user.
page - integer - Current page number.
per_page - integer - 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.
47 48 49 50 51 52 53 54 55 |
# File 'lib/files.com/models/user_cipher_use.rb', line 47 def self.list(params = {}, = {}) raise InvalidParameterError.new("Bad parameter: user_id must be an Integer") if params.dig(:user_id) and !params.dig(:user_id).is_a?(Integer) raise InvalidParameterError.new("Bad parameter: page must be an Integer") if params.dig(:page) and !params.dig(:page).is_a?(Integer) raise InvalidParameterError.new("Bad parameter: per_page must be an Integer") if params.dig(:per_page) and !params.dig(:per_page).is_a?(Integer) raise InvalidParameterError.new("Bad parameter: action must be an String") if params.dig(:action) and !params.dig(:action).is_a?(String) response, = Api.send_request("/user_cipher_uses", :get, params, ) response.data.map { |object| UserCipherUse.new(object, ) } end |
Instance Method Details
#created_at ⇒ Object
date-time - The earliest recorded use of this combination of interface and protocol and cipher (for this user)
13 14 15 |
# File 'lib/files.com/models/user_cipher_use.rb', line 13 def created_at @attributes[:created_at] end |
#id ⇒ Object
int64 - UserCipherUse ID
18 19 20 |
# File 'lib/files.com/models/user_cipher_use.rb', line 18 def id @attributes[:id] end |
#interface ⇒ Object
string - The interface accessed
23 24 25 |
# File 'lib/files.com/models/user_cipher_use.rb', line 23 def interface @attributes[:interface] end |
#protocol_cipher ⇒ Object
string - The protocol and cipher employed
28 29 30 |
# File 'lib/files.com/models/user_cipher_use.rb', line 28 def protocol_cipher @attributes[:protocol_cipher] end |
#updated_at ⇒ Object
date-time - The most recent use of this combination of interface and protocol and cipher (for this user)
33 34 35 |
# File 'lib/files.com/models/user_cipher_use.rb', line 33 def updated_at @attributes[:updated_at] end |
#user_id ⇒ Object
int64 - ID of the user who performed this access
38 39 40 |
# File 'lib/files.com/models/user_cipher_use.rb', line 38 def user_id @attributes[:user_id] end |