forked from pulumi/pulumi-azure-native-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
streamingLocator.go
287 lines (250 loc) · 12.7 KB
/
streamingLocator.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
// Code generated by the Pulumi SDK Generator DO NOT EDIT.
// *** WARNING: Do not edit by hand unless you're certain you know what you are doing! ***
package media
import (
"context"
"reflect"
"errors"
"github.com/pulumi/pulumi-azure-native-sdk/v2/utilities"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
// A Streaming Locator resource
// Azure REST API version: 2023-01-01. Prior API version in Azure Native 1.x: 2020-05-01.
//
// Other available API versions: 2018-03-30-preview.
type StreamingLocator struct {
pulumi.CustomResourceState
// Alternative Media ID of this Streaming Locator
AlternativeMediaId pulumi.StringPtrOutput `pulumi:"alternativeMediaId"`
// Asset Name
AssetName pulumi.StringOutput `pulumi:"assetName"`
// The ContentKeys used by this Streaming Locator.
ContentKeys StreamingLocatorContentKeyResponseArrayOutput `pulumi:"contentKeys"`
// The creation time of the Streaming Locator.
Created pulumi.StringOutput `pulumi:"created"`
// Name of the default ContentKeyPolicy used by this Streaming Locator.
DefaultContentKeyPolicyName pulumi.StringPtrOutput `pulumi:"defaultContentKeyPolicyName"`
// The end time of the Streaming Locator.
EndTime pulumi.StringPtrOutput `pulumi:"endTime"`
// A list of asset or account filters which apply to this streaming locator
Filters pulumi.StringArrayOutput `pulumi:"filters"`
// The name of the resource
Name pulumi.StringOutput `pulumi:"name"`
// The start time of the Streaming Locator.
StartTime pulumi.StringPtrOutput `pulumi:"startTime"`
// The StreamingLocatorId of the Streaming Locator.
StreamingLocatorId pulumi.StringPtrOutput `pulumi:"streamingLocatorId"`
// Name of the Streaming Policy used by this Streaming Locator. Either specify the name of Streaming Policy you created or use one of the predefined Streaming Policies. The predefined Streaming Policies available are: 'Predefined_DownloadOnly', 'Predefined_ClearStreamingOnly', 'Predefined_DownloadAndClearStreaming', 'Predefined_ClearKey', 'Predefined_MultiDrmCencStreaming' and 'Predefined_MultiDrmStreaming'
StreamingPolicyName pulumi.StringOutput `pulumi:"streamingPolicyName"`
// The system metadata relating to this resource.
SystemData SystemDataResponseOutput `pulumi:"systemData"`
// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Type pulumi.StringOutput `pulumi:"type"`
}
// NewStreamingLocator registers a new resource with the given unique name, arguments, and options.
func NewStreamingLocator(ctx *pulumi.Context,
name string, args *StreamingLocatorArgs, opts ...pulumi.ResourceOption) (*StreamingLocator, error) {
if args == nil {
return nil, errors.New("missing one or more required arguments")
}
if args.AccountName == nil {
return nil, errors.New("invalid value for required argument 'AccountName'")
}
if args.AssetName == nil {
return nil, errors.New("invalid value for required argument 'AssetName'")
}
if args.ResourceGroupName == nil {
return nil, errors.New("invalid value for required argument 'ResourceGroupName'")
}
if args.StreamingPolicyName == nil {
return nil, errors.New("invalid value for required argument 'StreamingPolicyName'")
}
aliases := pulumi.Aliases([]pulumi.Alias{
{
Type: pulumi.String("azure-native:media/v20180330preview:StreamingLocator"),
},
{
Type: pulumi.String("azure-native:media/v20180601preview:StreamingLocator"),
},
{
Type: pulumi.String("azure-native:media/v20180701:StreamingLocator"),
},
{
Type: pulumi.String("azure-native:media/v20200501:StreamingLocator"),
},
{
Type: pulumi.String("azure-native:media/v20210601:StreamingLocator"),
},
{
Type: pulumi.String("azure-native:media/v20211101:StreamingLocator"),
},
{
Type: pulumi.String("azure-native:media/v20220801:StreamingLocator"),
},
{
Type: pulumi.String("azure-native:media/v20230101:StreamingLocator"),
},
})
opts = append(opts, aliases)
opts = utilities.PkgResourceDefaultOpts(opts)
var resource StreamingLocator
err := ctx.RegisterResource("azure-native:media:StreamingLocator", name, args, &resource, opts...)
if err != nil {
return nil, err
}
return &resource, nil
}
// GetStreamingLocator gets an existing StreamingLocator resource's state with the given name, ID, and optional
// state properties that are used to uniquely qualify the lookup (nil if not required).
func GetStreamingLocator(ctx *pulumi.Context,
name string, id pulumi.IDInput, state *StreamingLocatorState, opts ...pulumi.ResourceOption) (*StreamingLocator, error) {
var resource StreamingLocator
err := ctx.ReadResource("azure-native:media:StreamingLocator", name, id, state, &resource, opts...)
if err != nil {
return nil, err
}
return &resource, nil
}
// Input properties used for looking up and filtering StreamingLocator resources.
type streamingLocatorState struct {
}
type StreamingLocatorState struct {
}
func (StreamingLocatorState) ElementType() reflect.Type {
return reflect.TypeOf((*streamingLocatorState)(nil)).Elem()
}
type streamingLocatorArgs struct {
// The Media Services account name.
AccountName string `pulumi:"accountName"`
// Alternative Media ID of this Streaming Locator
AlternativeMediaId *string `pulumi:"alternativeMediaId"`
// Asset Name
AssetName string `pulumi:"assetName"`
// The ContentKeys used by this Streaming Locator.
ContentKeys []StreamingLocatorContentKey `pulumi:"contentKeys"`
// Name of the default ContentKeyPolicy used by this Streaming Locator.
DefaultContentKeyPolicyName *string `pulumi:"defaultContentKeyPolicyName"`
// The end time of the Streaming Locator.
EndTime *string `pulumi:"endTime"`
// A list of asset or account filters which apply to this streaming locator
Filters []string `pulumi:"filters"`
// The name of the resource group within the Azure subscription.
ResourceGroupName string `pulumi:"resourceGroupName"`
// The start time of the Streaming Locator.
StartTime *string `pulumi:"startTime"`
// The StreamingLocatorId of the Streaming Locator.
StreamingLocatorId *string `pulumi:"streamingLocatorId"`
// The Streaming Locator name.
StreamingLocatorName *string `pulumi:"streamingLocatorName"`
// Name of the Streaming Policy used by this Streaming Locator. Either specify the name of Streaming Policy you created or use one of the predefined Streaming Policies. The predefined Streaming Policies available are: 'Predefined_DownloadOnly', 'Predefined_ClearStreamingOnly', 'Predefined_DownloadAndClearStreaming', 'Predefined_ClearKey', 'Predefined_MultiDrmCencStreaming' and 'Predefined_MultiDrmStreaming'
StreamingPolicyName string `pulumi:"streamingPolicyName"`
}
// The set of arguments for constructing a StreamingLocator resource.
type StreamingLocatorArgs struct {
// The Media Services account name.
AccountName pulumi.StringInput
// Alternative Media ID of this Streaming Locator
AlternativeMediaId pulumi.StringPtrInput
// Asset Name
AssetName pulumi.StringInput
// The ContentKeys used by this Streaming Locator.
ContentKeys StreamingLocatorContentKeyArrayInput
// Name of the default ContentKeyPolicy used by this Streaming Locator.
DefaultContentKeyPolicyName pulumi.StringPtrInput
// The end time of the Streaming Locator.
EndTime pulumi.StringPtrInput
// A list of asset or account filters which apply to this streaming locator
Filters pulumi.StringArrayInput
// The name of the resource group within the Azure subscription.
ResourceGroupName pulumi.StringInput
// The start time of the Streaming Locator.
StartTime pulumi.StringPtrInput
// The StreamingLocatorId of the Streaming Locator.
StreamingLocatorId pulumi.StringPtrInput
// The Streaming Locator name.
StreamingLocatorName pulumi.StringPtrInput
// Name of the Streaming Policy used by this Streaming Locator. Either specify the name of Streaming Policy you created or use one of the predefined Streaming Policies. The predefined Streaming Policies available are: 'Predefined_DownloadOnly', 'Predefined_ClearStreamingOnly', 'Predefined_DownloadAndClearStreaming', 'Predefined_ClearKey', 'Predefined_MultiDrmCencStreaming' and 'Predefined_MultiDrmStreaming'
StreamingPolicyName pulumi.StringInput
}
func (StreamingLocatorArgs) ElementType() reflect.Type {
return reflect.TypeOf((*streamingLocatorArgs)(nil)).Elem()
}
type StreamingLocatorInput interface {
pulumi.Input
ToStreamingLocatorOutput() StreamingLocatorOutput
ToStreamingLocatorOutputWithContext(ctx context.Context) StreamingLocatorOutput
}
func (*StreamingLocator) ElementType() reflect.Type {
return reflect.TypeOf((**StreamingLocator)(nil)).Elem()
}
func (i *StreamingLocator) ToStreamingLocatorOutput() StreamingLocatorOutput {
return i.ToStreamingLocatorOutputWithContext(context.Background())
}
func (i *StreamingLocator) ToStreamingLocatorOutputWithContext(ctx context.Context) StreamingLocatorOutput {
return pulumi.ToOutputWithContext(ctx, i).(StreamingLocatorOutput)
}
type StreamingLocatorOutput struct{ *pulumi.OutputState }
func (StreamingLocatorOutput) ElementType() reflect.Type {
return reflect.TypeOf((**StreamingLocator)(nil)).Elem()
}
func (o StreamingLocatorOutput) ToStreamingLocatorOutput() StreamingLocatorOutput {
return o
}
func (o StreamingLocatorOutput) ToStreamingLocatorOutputWithContext(ctx context.Context) StreamingLocatorOutput {
return o
}
// Alternative Media ID of this Streaming Locator
func (o StreamingLocatorOutput) AlternativeMediaId() pulumi.StringPtrOutput {
return o.ApplyT(func(v *StreamingLocator) pulumi.StringPtrOutput { return v.AlternativeMediaId }).(pulumi.StringPtrOutput)
}
// Asset Name
func (o StreamingLocatorOutput) AssetName() pulumi.StringOutput {
return o.ApplyT(func(v *StreamingLocator) pulumi.StringOutput { return v.AssetName }).(pulumi.StringOutput)
}
// The ContentKeys used by this Streaming Locator.
func (o StreamingLocatorOutput) ContentKeys() StreamingLocatorContentKeyResponseArrayOutput {
return o.ApplyT(func(v *StreamingLocator) StreamingLocatorContentKeyResponseArrayOutput { return v.ContentKeys }).(StreamingLocatorContentKeyResponseArrayOutput)
}
// The creation time of the Streaming Locator.
func (o StreamingLocatorOutput) Created() pulumi.StringOutput {
return o.ApplyT(func(v *StreamingLocator) pulumi.StringOutput { return v.Created }).(pulumi.StringOutput)
}
// Name of the default ContentKeyPolicy used by this Streaming Locator.
func (o StreamingLocatorOutput) DefaultContentKeyPolicyName() pulumi.StringPtrOutput {
return o.ApplyT(func(v *StreamingLocator) pulumi.StringPtrOutput { return v.DefaultContentKeyPolicyName }).(pulumi.StringPtrOutput)
}
// The end time of the Streaming Locator.
func (o StreamingLocatorOutput) EndTime() pulumi.StringPtrOutput {
return o.ApplyT(func(v *StreamingLocator) pulumi.StringPtrOutput { return v.EndTime }).(pulumi.StringPtrOutput)
}
// A list of asset or account filters which apply to this streaming locator
func (o StreamingLocatorOutput) Filters() pulumi.StringArrayOutput {
return o.ApplyT(func(v *StreamingLocator) pulumi.StringArrayOutput { return v.Filters }).(pulumi.StringArrayOutput)
}
// The name of the resource
func (o StreamingLocatorOutput) Name() pulumi.StringOutput {
return o.ApplyT(func(v *StreamingLocator) pulumi.StringOutput { return v.Name }).(pulumi.StringOutput)
}
// The start time of the Streaming Locator.
func (o StreamingLocatorOutput) StartTime() pulumi.StringPtrOutput {
return o.ApplyT(func(v *StreamingLocator) pulumi.StringPtrOutput { return v.StartTime }).(pulumi.StringPtrOutput)
}
// The StreamingLocatorId of the Streaming Locator.
func (o StreamingLocatorOutput) StreamingLocatorId() pulumi.StringPtrOutput {
return o.ApplyT(func(v *StreamingLocator) pulumi.StringPtrOutput { return v.StreamingLocatorId }).(pulumi.StringPtrOutput)
}
// Name of the Streaming Policy used by this Streaming Locator. Either specify the name of Streaming Policy you created or use one of the predefined Streaming Policies. The predefined Streaming Policies available are: 'Predefined_DownloadOnly', 'Predefined_ClearStreamingOnly', 'Predefined_DownloadAndClearStreaming', 'Predefined_ClearKey', 'Predefined_MultiDrmCencStreaming' and 'Predefined_MultiDrmStreaming'
func (o StreamingLocatorOutput) StreamingPolicyName() pulumi.StringOutput {
return o.ApplyT(func(v *StreamingLocator) pulumi.StringOutput { return v.StreamingPolicyName }).(pulumi.StringOutput)
}
// The system metadata relating to this resource.
func (o StreamingLocatorOutput) SystemData() SystemDataResponseOutput {
return o.ApplyT(func(v *StreamingLocator) SystemDataResponseOutput { return v.SystemData }).(SystemDataResponseOutput)
}
// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
func (o StreamingLocatorOutput) Type() pulumi.StringOutput {
return o.ApplyT(func(v *StreamingLocator) pulumi.StringOutput { return v.Type }).(pulumi.StringOutput)
}
func init() {
pulumi.RegisterOutputType(StreamingLocatorOutput{})
}