Class: Twilio::REST::Messaging::V1::DomainCertsInstance

Inherits:
InstanceResource show all
Defined in:
lib/twilio-ruby/rest/messaging/v1/domain_certs.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, domain_sid: nil) ⇒ DomainCertsInstance

Initialize the DomainCertsInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String)

    The SID of the Account that created this DomainCerts resource.

  • sid (String)

    The SID of the Call resource to fetch.



154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
# File 'lib/twilio-ruby/rest/messaging/v1/domain_certs.rb', line 154

def initialize(version, payload , domain_sid: nil)
    super(version)
    
    # Marshaled Properties
    @properties = { 
        'domain_sid' => payload['domain_sid'],
        'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
        'date_expires' => Twilio.deserialize_iso8601_datetime(payload['date_expires']),
        'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
        'domain_name' => payload['domain_name'],
        'certificate_sid' => payload['certificate_sid'],
        'url' => payload['url'],
        'cert_in_validation' => payload['cert_in_validation'],
    }

    # Context
    @instance_context = nil
    @params = { 'domain_sid' => domain_sid  || @properties['domain_sid']  , }
end

Instance Method Details

#cert_in_validationHash

Returns Optional JSON field describing the status and upload date of a new certificate in the process of validation.

Returns:

  • (Hash)

    Optional JSON field describing the status and upload date of a new certificate in the process of validation



229
230
231
# File 'lib/twilio-ruby/rest/messaging/v1/domain_certs.rb', line 229

def cert_in_validation
    @properties['cert_in_validation']
end

#certificate_sidString

Returns The unique string that we created to identify this Certificate resource.

Returns:

  • (String)

    The unique string that we created to identify this Certificate resource.



217
218
219
# File 'lib/twilio-ruby/rest/messaging/v1/domain_certs.rb', line 217

def certificate_sid
    @properties['certificate_sid']
end

#contextDomainCertsContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context

Returns:



178
179
180
181
182
183
# File 'lib/twilio-ruby/rest/messaging/v1/domain_certs.rb', line 178

def context
    unless @instance_context
        @instance_context = DomainCertsContext.new(@version , @params['domain_sid'])
    end
    @instance_context
end

#date_createdTime

Returns Date that this Domain was registered to the Twilio platform to create a new Domain object.

Returns:

  • (Time)

    Date that this Domain was registered to the Twilio platform to create a new Domain object.



205
206
207
# File 'lib/twilio-ruby/rest/messaging/v1/domain_certs.rb', line 205

def date_created
    @properties['date_created']
end

#date_expiresTime

Returns Date that the private certificate associated with this domain expires. You will need to update the certificate before that date to ensure your shortened links will continue to work.

Returns:

  • (Time)

    Date that the private certificate associated with this domain expires. You will need to update the certificate before that date to ensure your shortened links will continue to work.



199
200
201
# File 'lib/twilio-ruby/rest/messaging/v1/domain_certs.rb', line 199

def date_expires
    @properties['date_expires']
end

#date_updatedTime

Returns Date that this Domain was last updated.

Returns:

  • (Time)

    Date that this Domain was last updated.



193
194
195
# File 'lib/twilio-ruby/rest/messaging/v1/domain_certs.rb', line 193

def date_updated
    @properties['date_updated']
end

#deleteBoolean

Delete the DomainCertsInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



236
237
238
239
# File 'lib/twilio-ruby/rest/messaging/v1/domain_certs.rb', line 236

def delete

    context.delete
end

#domain_nameString

Returns Full url path for this domain.

Returns:

  • (String)

    Full url path for this domain.



211
212
213
# File 'lib/twilio-ruby/rest/messaging/v1/domain_certs.rb', line 211

def domain_name
    @properties['domain_name']
end

#domain_sidString

Returns The unique string that we created to identify the Domain resource.

Returns:

  • (String)

    The unique string that we created to identify the Domain resource.



187
188
189
# File 'lib/twilio-ruby/rest/messaging/v1/domain_certs.rb', line 187

def domain_sid
    @properties['domain_sid']
end

#fetchDomainCertsInstance

Fetch the DomainCertsInstance

Returns:



244
245
246
247
# File 'lib/twilio-ruby/rest/messaging/v1/domain_certs.rb', line 244

def fetch

    context.fetch
end

#inspectObject

Provide a detailed, user friendly representation



271
272
273
274
# File 'lib/twilio-ruby/rest/messaging/v1/domain_certs.rb', line 271

def inspect
    values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Messaging.V1.DomainCertsInstance #{values}>"
end

#to_sObject

Provide a user friendly representation



264
265
266
267
# File 'lib/twilio-ruby/rest/messaging/v1/domain_certs.rb', line 264

def to_s
    values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Messaging.V1.DomainCertsInstance #{values}>"
end

#update(tls_cert: nil) ⇒ DomainCertsInstance

Update the DomainCertsInstance

Parameters:

  • tls_cert (String) (defaults to: nil)

    Contains the full TLS certificate and private for this domain in PEM format: en.wikipedia.org/wiki/Privacy-Enhanced_Mail. Twilio uses this information to process HTTPS traffic sent to your domain.

Returns:



253
254
255
256
257
258
259
260
# File 'lib/twilio-ruby/rest/messaging/v1/domain_certs.rb', line 253

def update(
    tls_cert: nil
)

    context.update(
        tls_cert: tls_cert, 
    )
end

#urlString

Returns:

  • (String)


223
224
225
# File 'lib/twilio-ruby/rest/messaging/v1/domain_certs.rb', line 223

def url
    @properties['url']
end