Class: Kaltura::KalturaAmazonS3StorageProfile
- Inherits:
-
KalturaStorageProfile
- Object
- KalturaObjectBase
- KalturaStorageProfile
- Kaltura::KalturaAmazonS3StorageProfile
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#end_point ⇒ Object
Returns the value of attribute end_point.
-
#files_permission_in_s3 ⇒ Object
Returns the value of attribute files_permission_in_s3.
-
#s3region ⇒ Object
Returns the value of attribute s3region.
-
#signature_type ⇒ Object
Returns the value of attribute signature_type.
-
#sse_kms_key_id ⇒ Object
Returns the value of attribute sse_kms_key_id.
-
#sse_type ⇒ Object
Returns the value of attribute sse_type.
Attributes inherited from KalturaStorageProfile
#allow_auto_delete, #create_file_link, #created_at, #delivery_priority, #delivery_profile_ids, #delivery_status, #desciption, #flavor_params_ids, #id, #mapped_packager_url, #max_concurrent_connections, #max_file_size, #min_file_size, #name, #partner_id, #pass_phrase, #path_manager_class, #path_manager_params, #private_key, #protocol, #public_key, #ready_behavior, #regular_packager_url, #rules, #should_export_thumbs, #status, #storage_base_dir, #storage_ftp_passive_mode, #storage_password, #storage_url, #storage_username, #system_name, #trigger, #updated_at
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#end_point ⇒ Object
Returns the value of attribute end_point.
10466 10467 10468 |
# File 'lib/kaltura_types.rb', line 10466 def end_point @end_point end |
#files_permission_in_s3 ⇒ Object
Returns the value of attribute files_permission_in_s3.
10461 10462 10463 |
# File 'lib/kaltura_types.rb', line 10461 def end |
#s3region ⇒ Object
Returns the value of attribute s3region.
10462 10463 10464 |
# File 'lib/kaltura_types.rb', line 10462 def s3region @s3region end |
#signature_type ⇒ Object
Returns the value of attribute signature_type.
10465 10466 10467 |
# File 'lib/kaltura_types.rb', line 10465 def signature_type @signature_type end |
#sse_kms_key_id ⇒ Object
Returns the value of attribute sse_kms_key_id.
10464 10465 10466 |
# File 'lib/kaltura_types.rb', line 10464 def sse_kms_key_id @sse_kms_key_id end |
#sse_type ⇒ Object
Returns the value of attribute sse_type.
10463 10464 10465 |
# File 'lib/kaltura_types.rb', line 10463 def sse_type @sse_type end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 |
# File 'lib/kaltura_types.rb', line 10469 def from_xml(xml_element) super if xml_element.elements['filesPermissionInS3'] != nil self. = xml_element.elements['filesPermissionInS3'].text end if xml_element.elements['s3Region'] != nil self.s3region = xml_element.elements['s3Region'].text end if xml_element.elements['sseType'] != nil self.sse_type = xml_element.elements['sseType'].text end if xml_element.elements['sseKmsKeyId'] != nil self.sse_kms_key_id = xml_element.elements['sseKmsKeyId'].text end if xml_element.elements['signatureType'] != nil self.signature_type = xml_element.elements['signatureType'].text end if xml_element.elements['endPoint'] != nil self.end_point = xml_element.elements['endPoint'].text end end |