Class: JSS::ComputerInvitation

Inherits:
APIObject show all
Includes:
Creatable
Defined in:
lib/jss/api_object/computer_invitation.rb

Overview

This class represents a Computer Invitation in the JSS.

Adding Computer Invitations to the JSS

This class is meant only to generate and hold the response of creating an invitation.

See Also:

Constant Summary collapse

RSRC_BASE =

The base for REST resources of this class

'computerinvitations'.freeze
RSRC_LIST_KEY =

the hash key used for the JSON list output of all objects in the JSS

:computer_invitations
RSRC_OBJECT_KEY =

The hash key used for the JSON object output. It’s also used in various error messages

:computer_invitation
VALID_DATA_KEYS =

these keys, as well as :id and :name, are present in valid API JSON data for this class

[:invitation].freeze
OTHER_LOOKUP_KEYS =

See JSS::APIObject

{
  invitation: {rsrc_key: :invitation, list: :all_invitations}
}.freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args = { id: :new, name: 'some_new_name', ssh_username: 'casper_remote', hide_account: 'true' }) ⇒ ComputerInvitation

Returns a new instance of ComputerInvitation.



140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
# File 'lib/jss/api_object/computer_invitation.rb', line 140

def initialize(args = {
  id: :new,
  name: 'some_new_name',
  ssh_username: 'casper_remote',
  hide_account: 'true'
})

  super args

  @name = @init_data[:invitation]
  @invitation_type = @init_data[:invitation_type]
  @create_account_if_does_not_exist = @init_data[:create_account_if_does_not_exist]
  @expiration_date_epoch = @init_data[:expiration_date_epoch] || args[:expiration_date_epoch]
  @ssh_username = @init_data[:ssh_username] || args[:ssh_username]
  @hide_account = @init_data[:hide_account] || args[:hide_account]
  @invitation_status = @init_data[:invitation_status] || args[:invitation_status]
  @multiple_uses_allowed = @init_data[:multiple_uses_allowed] || args[:multiple_uses_allowed]
end

Instance Attribute Details

#create_account_if_does_not_existString

“true” or “false” are valid values.

Returns:

  • (String)

    whether or not to create the account if required



104
105
106
# File 'lib/jss/api_object/computer_invitation.rb', line 104

def 
  @create_account_if_does_not_exist
end

#expiration_date_epochString

Time since epoch that the invitation will expire at.

Note: defaults to “Unlimited”, so only set if it should expire.

Returns:



111
112
113
# File 'lib/jss/api_object/computer_invitation.rb', line 111

def expiration_date_epoch
  @expiration_date_epoch
end

#hide_accountString

The whether or not to hide the ssh user.

Returns:



123
124
125
# File 'lib/jss/api_object/computer_invitation.rb', line 123

def 
  @hide_account
end

#invitation_statusString

The invitation_status.

Returns:



128
129
130
# File 'lib/jss/api_object/computer_invitation.rb', line 128

def invitation_status
  @invitation_status
end

#invitation_typeString

Valid values are: URL and EMAIL. Will default to DEFAULT.

Returns:

  • (String)

    the invitation type



99
100
101
# File 'lib/jss/api_object/computer_invitation.rb', line 99

def invitation_type
  @invitation_type
end

#multiple_uses_allowedString

Whether the invitation can be used multiple times (boolean).

Returns:



133
134
135
# File 'lib/jss/api_object/computer_invitation.rb', line 133

def multiple_uses_allowed
  @multiple_uses_allowed
end

#nameString (readonly)

Returns the invitation name.

Returns:

  • (String)

    the invitation name



94
95
96
# File 'lib/jss/api_object/computer_invitation.rb', line 94

def name
  @name
end

#ssh_usernameString

The username of the ssh user to be created.

REQUIRED for valid setup.

Returns:



118
119
120
# File 'lib/jss/api_object/computer_invitation.rb', line 118

def ssh_username
  @ssh_username
end

Class Method Details

.all_invitationsObject

Class Methods



61
62
63
# File 'lib/jss/api_object/computer_invitation.rb', line 61

def self.all_invitations
  all.map { |ci| ci[:invitation]  }
end

Instance Method Details

#clone(new_name) ⇒ APIObject Originally defined in module Creatable

make a clone of this API object, with a new name. The class must be creatable

Parameters:

  • name (String)

    the name for the new object

Returns:

  • (APIObject)

    An uncreated clone of this APIObject with the given name

Raises:

#createJSS::ComputerInvitation

Needed to support creation of new Computer Invitations to set their name.



166
167
168
169
170
171
172
173
174
175
176
177
178
# File 'lib/jss/api_object/computer_invitation.rb', line 166

def create
  new_invitation_id = super

  jss_me = ComputerInvitation.new(id: new_invitation_id, name: 'set_by_request')
  @name = jss_me.name
  @invitation_type = jss_me.invitation_type
  @create_account_if_does_not_exist = jss_me.
  @expiration_date_epoch = jss_me.expiration_date_epoch
  @ssh_username = jss_me.ssh_username
  @hide_account = jss_me.
  @invitation_status = jss_me.invitation_status
  @multiple_uses_allowed = jss_me.multiple_uses_allowed
end