Class: Azure::MediaServices::Mgmt::V2018_07_01::Models::LiveOutput
- Inherits:
-
ProxyResource
- Object
- Resource
- ProxyResource
- Azure::MediaServices::Mgmt::V2018_07_01::Models::LiveOutput
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-07-01/generated/azure_mgmt_media_services/models/live_output.rb
Overview
The Live Output.
Instance Attribute Summary collapse
-
#archive_window_length ⇒ Duration
length.
-
#asset_name ⇒ String
The asset name.
-
#created ⇒ DateTime
The exact time the Live Output was created.
-
#description ⇒ String
The description of the Live Output.
-
#hls ⇒ Hls
The HLS configuration.
-
#last_modified ⇒ DateTime
The exact time the Live Output was last modified.
-
#manifest_name ⇒ String
will generate one automatically.
-
#output_snap_time ⇒ Integer
The output snapshot time.
-
#provisioning_state ⇒ String
The provisioning state of the Live Output.
-
#resource_state ⇒ LiveOutputResourceState
Output.
Attributes inherited from Resource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for LiveOutput class as Ruby Hash.
Methods inherited from Resource
Instance Attribute Details
#archive_window_length ⇒ Duration
length. This is duration that customer want to retain the recorded content.
24 25 26 |
# File 'lib/2018-07-01/generated/azure_mgmt_media_services/models/live_output.rb', line 24 def archive_window_length @archive_window_length end |
#asset_name ⇒ String
19 20 21 |
# File 'lib/2018-07-01/generated/azure_mgmt_media_services/models/live_output.rb', line 19 def asset_name @asset_name end |
#created ⇒ DateTime
37 38 39 |
# File 'lib/2018-07-01/generated/azure_mgmt_media_services/models/live_output.rb', line 37 def created @created end |
#description ⇒ String
16 17 18 |
# File 'lib/2018-07-01/generated/azure_mgmt_media_services/models/live_output.rb', line 16 def description @description end |
#hls ⇒ Hls
31 32 33 |
# File 'lib/2018-07-01/generated/azure_mgmt_media_services/models/live_output.rb', line 31 def hls @hls end |
#last_modified ⇒ DateTime
40 41 42 |
# File 'lib/2018-07-01/generated/azure_mgmt_media_services/models/live_output.rb', line 40 def last_modified @last_modified end |
#manifest_name ⇒ String
will generate one automatically.
28 29 30 |
# File 'lib/2018-07-01/generated/azure_mgmt_media_services/models/live_output.rb', line 28 def manifest_name @manifest_name end |
#output_snap_time ⇒ Integer
34 35 36 |
# File 'lib/2018-07-01/generated/azure_mgmt_media_services/models/live_output.rb', line 34 def output_snap_time @output_snap_time end |
#provisioning_state ⇒ String
43 44 45 |
# File 'lib/2018-07-01/generated/azure_mgmt_media_services/models/live_output.rb', line 43 def provisioning_state @provisioning_state end |
#resource_state ⇒ LiveOutputResourceState
Output. Possible values include: ‘Creating’, ‘Running’, ‘Deleting’
47 48 49 |
# File 'lib/2018-07-01/generated/azure_mgmt_media_services/models/live_output.rb', line 47 def resource_state @resource_state end |
Class Method Details
.mapper ⇒ Object
Mapper for LiveOutput class as Ruby Hash. This will be used for serialization/deserialization.
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 |
# File 'lib/2018-07-01/generated/azure_mgmt_media_services/models/live_output.rb', line 54 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'LiveOutput', type: { name: 'Composite', class_name: 'LiveOutput', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, description: { client_side_validation: true, required: false, serialized_name: 'properties.description', type: { name: 'String' } }, asset_name: { client_side_validation: true, required: true, serialized_name: 'properties.assetName', type: { name: 'String' } }, archive_window_length: { client_side_validation: true, required: true, serialized_name: 'properties.archiveWindowLength', type: { name: 'TimeSpan' } }, manifest_name: { client_side_validation: true, required: false, serialized_name: 'properties.manifestName', type: { name: 'String' } }, hls: { client_side_validation: true, required: false, serialized_name: 'properties.hls', type: { name: 'Composite', class_name: 'Hls' } }, output_snap_time: { client_side_validation: true, required: false, serialized_name: 'properties.outputSnapTime', type: { name: 'Number' } }, created: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.created', type: { name: 'DateTime' } }, last_modified: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.lastModified', type: { name: 'DateTime' } }, provisioning_state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.provisioningState', type: { name: 'String' } }, resource_state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.resourceState', type: { name: 'String' } } } } } end |