forked from pulumi/pulumi-azure-native-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
accountFilter.go
200 lines (170 loc) · 6.89 KB
/
accountFilter.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
// 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"
)
// An Account Filter.
// Azure REST API version: 2023-01-01. Prior API version in Azure Native 1.x: 2020-05-01.
type AccountFilter struct {
pulumi.CustomResourceState
// The first quality.
FirstQuality FirstQualityResponsePtrOutput `pulumi:"firstQuality"`
// The name of the resource
Name pulumi.StringOutput `pulumi:"name"`
// The presentation time range.
PresentationTimeRange PresentationTimeRangeResponsePtrOutput `pulumi:"presentationTimeRange"`
// The system metadata relating to this resource.
SystemData SystemDataResponseOutput `pulumi:"systemData"`
// The tracks selection conditions.
Tracks FilterTrackSelectionResponseArrayOutput `pulumi:"tracks"`
// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Type pulumi.StringOutput `pulumi:"type"`
}
// NewAccountFilter registers a new resource with the given unique name, arguments, and options.
func NewAccountFilter(ctx *pulumi.Context,
name string, args *AccountFilterArgs, opts ...pulumi.ResourceOption) (*AccountFilter, 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.ResourceGroupName == nil {
return nil, errors.New("invalid value for required argument 'ResourceGroupName'")
}
aliases := pulumi.Aliases([]pulumi.Alias{
{
Type: pulumi.String("azure-native:media/v20180701:AccountFilter"),
},
{
Type: pulumi.String("azure-native:media/v20200501:AccountFilter"),
},
{
Type: pulumi.String("azure-native:media/v20210601:AccountFilter"),
},
{
Type: pulumi.String("azure-native:media/v20211101:AccountFilter"),
},
{
Type: pulumi.String("azure-native:media/v20220801:AccountFilter"),
},
{
Type: pulumi.String("azure-native:media/v20230101:AccountFilter"),
},
})
opts = append(opts, aliases)
opts = utilities.PkgResourceDefaultOpts(opts)
var resource AccountFilter
err := ctx.RegisterResource("azure-native:media:AccountFilter", name, args, &resource, opts...)
if err != nil {
return nil, err
}
return &resource, nil
}
// GetAccountFilter gets an existing AccountFilter 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 GetAccountFilter(ctx *pulumi.Context,
name string, id pulumi.IDInput, state *AccountFilterState, opts ...pulumi.ResourceOption) (*AccountFilter, error) {
var resource AccountFilter
err := ctx.ReadResource("azure-native:media:AccountFilter", name, id, state, &resource, opts...)
if err != nil {
return nil, err
}
return &resource, nil
}
// Input properties used for looking up and filtering AccountFilter resources.
type accountFilterState struct {
}
type AccountFilterState struct {
}
func (AccountFilterState) ElementType() reflect.Type {
return reflect.TypeOf((*accountFilterState)(nil)).Elem()
}
type accountFilterArgs struct {
// The Media Services account name.
AccountName string `pulumi:"accountName"`
// The Account Filter name
FilterName *string `pulumi:"filterName"`
// The first quality.
FirstQuality *FirstQuality `pulumi:"firstQuality"`
// The presentation time range.
PresentationTimeRange *PresentationTimeRange `pulumi:"presentationTimeRange"`
// The name of the resource group within the Azure subscription.
ResourceGroupName string `pulumi:"resourceGroupName"`
// The tracks selection conditions.
Tracks []FilterTrackSelection `pulumi:"tracks"`
}
// The set of arguments for constructing a AccountFilter resource.
type AccountFilterArgs struct {
// The Media Services account name.
AccountName pulumi.StringInput
// The Account Filter name
FilterName pulumi.StringPtrInput
// The first quality.
FirstQuality FirstQualityPtrInput
// The presentation time range.
PresentationTimeRange PresentationTimeRangePtrInput
// The name of the resource group within the Azure subscription.
ResourceGroupName pulumi.StringInput
// The tracks selection conditions.
Tracks FilterTrackSelectionArrayInput
}
func (AccountFilterArgs) ElementType() reflect.Type {
return reflect.TypeOf((*accountFilterArgs)(nil)).Elem()
}
type AccountFilterInput interface {
pulumi.Input
ToAccountFilterOutput() AccountFilterOutput
ToAccountFilterOutputWithContext(ctx context.Context) AccountFilterOutput
}
func (*AccountFilter) ElementType() reflect.Type {
return reflect.TypeOf((**AccountFilter)(nil)).Elem()
}
func (i *AccountFilter) ToAccountFilterOutput() AccountFilterOutput {
return i.ToAccountFilterOutputWithContext(context.Background())
}
func (i *AccountFilter) ToAccountFilterOutputWithContext(ctx context.Context) AccountFilterOutput {
return pulumi.ToOutputWithContext(ctx, i).(AccountFilterOutput)
}
type AccountFilterOutput struct{ *pulumi.OutputState }
func (AccountFilterOutput) ElementType() reflect.Type {
return reflect.TypeOf((**AccountFilter)(nil)).Elem()
}
func (o AccountFilterOutput) ToAccountFilterOutput() AccountFilterOutput {
return o
}
func (o AccountFilterOutput) ToAccountFilterOutputWithContext(ctx context.Context) AccountFilterOutput {
return o
}
// The first quality.
func (o AccountFilterOutput) FirstQuality() FirstQualityResponsePtrOutput {
return o.ApplyT(func(v *AccountFilter) FirstQualityResponsePtrOutput { return v.FirstQuality }).(FirstQualityResponsePtrOutput)
}
// The name of the resource
func (o AccountFilterOutput) Name() pulumi.StringOutput {
return o.ApplyT(func(v *AccountFilter) pulumi.StringOutput { return v.Name }).(pulumi.StringOutput)
}
// The presentation time range.
func (o AccountFilterOutput) PresentationTimeRange() PresentationTimeRangeResponsePtrOutput {
return o.ApplyT(func(v *AccountFilter) PresentationTimeRangeResponsePtrOutput { return v.PresentationTimeRange }).(PresentationTimeRangeResponsePtrOutput)
}
// The system metadata relating to this resource.
func (o AccountFilterOutput) SystemData() SystemDataResponseOutput {
return o.ApplyT(func(v *AccountFilter) SystemDataResponseOutput { return v.SystemData }).(SystemDataResponseOutput)
}
// The tracks selection conditions.
func (o AccountFilterOutput) Tracks() FilterTrackSelectionResponseArrayOutput {
return o.ApplyT(func(v *AccountFilter) FilterTrackSelectionResponseArrayOutput { return v.Tracks }).(FilterTrackSelectionResponseArrayOutput)
}
// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
func (o AccountFilterOutput) Type() pulumi.StringOutput {
return o.ApplyT(func(v *AccountFilter) pulumi.StringOutput { return v.Type }).(pulumi.StringOutput)
}
func init() {
pulumi.RegisterOutputType(AccountFilterOutput{})
}