Class: Twilio::REST::Preview::DeployedDevices::FleetContext::CertificateInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Preview::DeployedDevices::FleetContext::CertificateInstance
- Defined in:
- lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
Specifies the unique string identifier of the Account responsible for this Certificate credential.
-
#context ⇒ CertificateContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
Specifies the date this Certificate credential was created, given in UTC ISO 8601 format.
-
#date_updated ⇒ Time
Specifies the date this Certificate credential was last updated, given in UTC ISO 8601 format.
-
#delete ⇒ Boolean
Delete the CertificateInstance.
-
#device_sid ⇒ String
Specifies the unique string identifier of a Device authenticated with this Certificate credential.
-
#fetch ⇒ CertificateInstance
Fetch the CertificateInstance.
-
#fleet_sid ⇒ String
Specifies the unique string identifier of the Fleet that the given Certificate credential belongs to.
-
#friendly_name ⇒ String
Contains a human readable descriptive text for this Certificate credential, up to 256 characters long.
-
#initialize(version, payload, fleet_sid: nil, sid: nil) ⇒ CertificateInstance
constructor
Initialize the CertificateInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#sid ⇒ String
Contains a 34 character string that uniquely identifies this Certificate credential resource.
-
#thumbprint ⇒ String
Contains a unique hash of the payload of this Certificate credential, used to authenticate the Device.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(friendly_name: :unset, device_sid: :unset) ⇒ CertificateInstance
Update the CertificateInstance.
-
#url ⇒ String
Contains an absolute URL for this Certificate credential resource.
Constructor Details
#initialize(version, payload, fleet_sid: nil, sid: nil) ⇒ CertificateInstance
Initialize the CertificateInstance
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 |
# File 'lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb', line 278 def initialize(version, payload , fleet_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'url' => payload['url'], 'friendly_name' => payload['friendly_name'], 'fleet_sid' => payload['fleet_sid'], 'account_sid' => payload['account_sid'], 'device_sid' => payload['device_sid'], 'thumbprint' => payload['thumbprint'], 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), } # Context @instance_context = nil @params = { 'fleet_sid' => fleet_sid || @properties['fleet_sid'] ,'sid' => sid || @properties['sid'] , } end |
Instance Method Details
#account_sid ⇒ String
Returns Specifies the unique string identifier of the Account responsible for this Certificate credential.
336 337 338 |
# File 'lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb', line 336 def account_sid @properties['account_sid'] end |
#context ⇒ CertificateContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
303 304 305 306 307 308 |
# File 'lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb', line 303 def context unless @instance_context @instance_context = CertificateContext.new(@version , @params['fleet_sid'], @params['sid']) end @instance_context end |
#date_created ⇒ Time
Returns Specifies the date this Certificate credential was created, given in UTC ISO 8601 format.
354 355 356 |
# File 'lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb', line 354 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns Specifies the date this Certificate credential was last updated, given in UTC ISO 8601 format.
360 361 362 |
# File 'lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb', line 360 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Delete the CertificateInstance
367 368 369 370 |
# File 'lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb', line 367 def delete context.delete end |
#device_sid ⇒ String
Returns Specifies the unique string identifier of a Device authenticated with this Certificate credential.
342 343 344 |
# File 'lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb', line 342 def device_sid @properties['device_sid'] end |
#fetch ⇒ CertificateInstance
Fetch the CertificateInstance
375 376 377 378 |
# File 'lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb', line 375 def fetch context.fetch end |
#fleet_sid ⇒ String
Returns Specifies the unique string identifier of the Fleet that the given Certificate credential belongs to.
330 331 332 |
# File 'lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb', line 330 def fleet_sid @properties['fleet_sid'] end |
#friendly_name ⇒ String
Returns Contains a human readable descriptive text for this Certificate credential, up to 256 characters long.
324 325 326 |
# File 'lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb', line 324 def friendly_name @properties['friendly_name'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
405 406 407 408 |
# File 'lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb', line 405 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Preview.DeployedDevices.CertificateInstance #{values}>" end |
#sid ⇒ String
Returns Contains a 34 character string that uniquely identifies this Certificate credential resource.
312 313 314 |
# File 'lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb', line 312 def sid @properties['sid'] end |
#thumbprint ⇒ String
Returns Contains a unique hash of the payload of this Certificate credential, used to authenticate the Device.
348 349 350 |
# File 'lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb', line 348 def thumbprint @properties['thumbprint'] end |
#to_s ⇒ Object
Provide a user friendly representation
398 399 400 401 |
# File 'lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb', line 398 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Preview.DeployedDevices.CertificateInstance #{values}>" end |
#update(friendly_name: :unset, device_sid: :unset) ⇒ CertificateInstance
Update the CertificateInstance
385 386 387 388 389 390 391 392 393 394 |
# File 'lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb', line 385 def update( friendly_name: :unset, device_sid: :unset ) context.update( friendly_name: friendly_name, device_sid: device_sid, ) end |
#url ⇒ String
Returns Contains an absolute URL for this Certificate credential resource.
318 319 320 |
# File 'lib/twilio-ruby/rest/preview/deployed_devices/fleet/certificate.rb', line 318 def url @properties['url'] end |