Class: CldProvisioning::Models::Operations::GetAccessKeysRequest

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Includes:
Crystalline::MetadataFields
Defined in:
lib/cld_provisioning/models/operations/getaccesskeys_request.rb

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

#field, #fields, included, #marshal_single, #to_dict, #to_json

Constructor Details

#initialize(sub_account_id:, account_id: nil, page_size: nil, page: nil, sort_by: nil, sort_order: nil) ⇒ GetAccessKeysRequest

Returns a new instance of GetAccessKeysRequest.



66
67
68
69
70
71
72
73
# File 'lib/cld_provisioning/models/operations/getaccesskeys_request.rb', line 66

def initialize(sub_account_id:, account_id: nil, page_size: nil, page: nil, sort_by: nil, sort_order: nil)
  @sub_account_id = 
  @account_id = 
  @page_size = page_size
  @page = page
  @sort_by = sort_by
  @sort_order = sort_order
end

Instance Method Details

#==(other) ⇒ Object



76
77
78
79
80
81
82
83
84
85
# File 'lib/cld_provisioning/models/operations/getaccesskeys_request.rb', line 76

def ==(other)
  return false unless other.is_a?(self.class)
  return false unless @sub_account_id == other.
  return false unless @account_id == other.
  return false unless @page_size == other.page_size
  return false unless @page == other.page
  return false unless @sort_by == other.sort_by
  return false unless @sort_order == other.sort_order
  true
end