-
Notifications
You must be signed in to change notification settings - Fork 13
/
CreateImageTemplateWindows.go
250 lines (247 loc) · 12.2 KB
/
CreateImageTemplateWindows.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
package armvirtualmachineimagebuilder_test
import (
"context"
"log"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/to"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/virtualmachineimagebuilder/armvirtualmachineimagebuilder"
)
// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/078b90617e5e08137d0395963bd4119f4561a910/specification/imagebuilder/resource-manager/Microsoft.VirtualMachineImages/stable/2022-02-14/examples/CreateImageTemplateWindows.json
func ExampleVirtualMachineImageTemplatesClient_BeginCreateOrUpdate_createAnImageTemplateForWindows() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
clientFactory, err := armvirtualmachineimagebuilder.NewClientFactory("<subscription-id>", cred, nil)
if err != nil {
log.Fatalf("failed to create client: %v", err)
}
poller, err := clientFactory.NewVirtualMachineImageTemplatesClient().BeginCreateOrUpdate(ctx, "myResourceGroup", "myImageTemplate", armvirtualmachineimagebuilder.ImageTemplate{
Location: to.Ptr("westus"),
Tags: map[string]*string{
"imagetemplate_tag1": to.Ptr("IT_T1"),
"imagetemplate_tag2": to.Ptr("IT_T2"),
},
Identity: &armvirtualmachineimagebuilder.ImageTemplateIdentity{
Type: to.Ptr(armvirtualmachineimagebuilder.ResourceIdentityTypeUserAssigned),
UserAssignedIdentities: map[string]*armvirtualmachineimagebuilder.ComponentsVrq145SchemasImagetemplateidentityPropertiesUserassignedidentitiesAdditionalproperties{
"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity_1": {},
},
},
Properties: &armvirtualmachineimagebuilder.ImageTemplateProperties{
Customize: []armvirtualmachineimagebuilder.ImageTemplateCustomizerClassification{
&armvirtualmachineimagebuilder.ImageTemplatePowerShellCustomizer{
Name: to.Ptr("PowerShell (inline) Customizer Example"),
Type: to.Ptr("PowerShell"),
Inline: []*string{
to.Ptr("Powershell command-1"),
to.Ptr("Powershell command-2"),
to.Ptr("Powershell command-3")},
},
&armvirtualmachineimagebuilder.ImageTemplatePowerShellCustomizer{
Name: to.Ptr("PowerShell (inline) Customizer Elevated user Example"),
Type: to.Ptr("PowerShell"),
Inline: []*string{
to.Ptr("Powershell command-1"),
to.Ptr("Powershell command-2"),
to.Ptr("Powershell command-3")},
RunElevated: to.Ptr(true),
},
&armvirtualmachineimagebuilder.ImageTemplatePowerShellCustomizer{
Name: to.Ptr("PowerShell (inline) Customizer Elevated Local System user Example"),
Type: to.Ptr("PowerShell"),
Inline: []*string{
to.Ptr("Powershell command-1"),
to.Ptr("Powershell command-2"),
to.Ptr("Powershell command-3")},
RunAsSystem: to.Ptr(true),
RunElevated: to.Ptr(true),
},
&armvirtualmachineimagebuilder.ImageTemplatePowerShellCustomizer{
Name: to.Ptr("PowerShell (script) Customizer Example"),
Type: to.Ptr("PowerShell"),
ScriptURI: to.Ptr("https://example.com/path/to/script.ps1"),
ValidExitCodes: []*int32{
to.Ptr[int32](0),
to.Ptr[int32](1)},
},
&armvirtualmachineimagebuilder.ImageTemplatePowerShellCustomizer{
Name: to.Ptr("PowerShell (script) Customizer Elevated Local System user Example"),
Type: to.Ptr("PowerShell"),
RunElevated: to.Ptr(true),
ScriptURI: to.Ptr("https://example.com/path/to/script.ps1"),
ValidExitCodes: []*int32{
to.Ptr[int32](0),
to.Ptr[int32](1)},
},
&armvirtualmachineimagebuilder.ImageTemplatePowerShellCustomizer{
Name: to.Ptr("PowerShell (script) Customizer Elevated Local System user Example"),
Type: to.Ptr("PowerShell"),
RunAsSystem: to.Ptr(true),
RunElevated: to.Ptr(true),
ScriptURI: to.Ptr("https://example.com/path/to/script.ps1"),
ValidExitCodes: []*int32{
to.Ptr[int32](0),
to.Ptr[int32](1)},
},
&armvirtualmachineimagebuilder.ImageTemplateRestartCustomizer{
Name: to.Ptr("Restart Customizer Example"),
Type: to.Ptr("WindowsRestart"),
RestartCheckCommand: to.Ptr("powershell -command \"& {Write-Output 'restarted.'}\""),
RestartCommand: to.Ptr("shutdown /f /r /t 0 /c \"packer restart\""),
RestartTimeout: to.Ptr("10m"),
},
&armvirtualmachineimagebuilder.ImageTemplateWindowsUpdateCustomizer{
Name: to.Ptr("Windows Update Customizer Example"),
Type: to.Ptr("WindowsUpdate"),
Filters: []*string{
to.Ptr("$_.BrowseOnly")},
SearchCriteria: to.Ptr("BrowseOnly=0 and IsInstalled=0"),
UpdateLimit: to.Ptr[int32](100),
}},
Distribute: []armvirtualmachineimagebuilder.ImageTemplateDistributorClassification{
&armvirtualmachineimagebuilder.ImageTemplateManagedImageDistributor{
Type: to.Ptr("ManagedImage"),
ArtifactTags: map[string]*string{
"tagName": to.Ptr("value"),
},
RunOutputName: to.Ptr("image_it_pir_1"),
ImageID: to.Ptr("/subscriptions/{subscription-id}/resourceGroups/rg1/providers/Microsoft.Compute/images/image_it_1"),
Location: to.Ptr("1_location"),
}},
Source: &armvirtualmachineimagebuilder.ImageTemplateManagedImageSource{
Type: to.Ptr("ManagedImage"),
ImageID: to.Ptr("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/images/source_image"),
},
VMProfile: &armvirtualmachineimagebuilder.ImageTemplateVMProfile{
OSDiskSizeGB: to.Ptr[int32](64),
VMSize: to.Ptr("Standard_D2s_v3"),
VnetConfig: &armvirtualmachineimagebuilder.VirtualNetworkConfig{
SubnetID: to.Ptr("/subscriptions/{subscription-id}/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/vnet_name/subnets/subnet_name"),
},
},
},
}, nil)
if err != nil {
log.Fatalf("failed to finish the request: %v", err)
}
res, err := poller.PollUntilDone(ctx, nil)
if err != nil {
log.Fatalf("failed to pull the result: %v", err)
}
// You could use response here. We use blank identifier for just demo purposes.
_ = res
// If the HTTP response code is 200 as defined in example definition, your response structure would look as follows. Please pay attention that all the values in the output are fake values for just demo purposes.
// res.ImageTemplate = armvirtualmachineimagebuilder.ImageTemplate{
// Name: to.Ptr("myImageTemplate"),
// Type: to.Ptr("Microsoft.VirtualMachineImages/imageTemplate"),
// ID: to.Ptr("/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.VirtualMachineImages/imageTemplates/myImageTemplate"),
// Location: to.Ptr("westus"),
// Identity: &armvirtualmachineimagebuilder.ImageTemplateIdentity{
// Type: to.Ptr(armvirtualmachineimagebuilder.ResourceIdentityTypeUserAssigned),
// UserAssignedIdentities: map[string]*armvirtualmachineimagebuilder.ComponentsVrq145SchemasImagetemplateidentityPropertiesUserassignedidentitiesAdditionalproperties{
// "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity_1": &armvirtualmachineimagebuilder.ComponentsVrq145SchemasImagetemplateidentityPropertiesUserassignedidentitiesAdditionalproperties{
// ClientID: to.Ptr("00000000-0000-0000-0000-000000000000"),
// PrincipalID: to.Ptr("00000000-0000-0000-0000-000000000000"),
// },
// },
// },
// Properties: &armvirtualmachineimagebuilder.ImageTemplateProperties{
// Customize: []armvirtualmachineimagebuilder.ImageTemplateCustomizerClassification{
// &armvirtualmachineimagebuilder.ImageTemplatePowerShellCustomizer{
// Name: to.Ptr("PowerShell (inline) Customizer Example"),
// Type: to.Ptr("PowerShell"),
// Inline: []*string{
// to.Ptr("Powershell command-1"),
// to.Ptr("Powershell command-2"),
// to.Ptr("Powershell command-3")},
// RunAsSystem: to.Ptr(false),
// RunElevated: to.Ptr(false),
// },
// &armvirtualmachineimagebuilder.ImageTemplatePowerShellCustomizer{
// Name: to.Ptr("PowerShell (inline) Customizer Elevated user Example"),
// Type: to.Ptr("PowerShell"),
// Inline: []*string{
// to.Ptr("Powershell command-1"),
// to.Ptr("Powershell command-2"),
// to.Ptr("Powershell command-3")},
// RunAsSystem: to.Ptr(false),
// RunElevated: to.Ptr(true),
// },
// &armvirtualmachineimagebuilder.ImageTemplatePowerShellCustomizer{
// Name: to.Ptr("PowerShell (inline) Customizer Elevated Local System user Example"),
// Type: to.Ptr("PowerShell"),
// Inline: []*string{
// to.Ptr("Powershell command-1"),
// to.Ptr("Powershell command-2"),
// to.Ptr("Powershell command-3")},
// RunAsSystem: to.Ptr(true),
// RunElevated: to.Ptr(true),
// },
// &armvirtualmachineimagebuilder.ImageTemplatePowerShellCustomizer{
// Name: to.Ptr("PowerShell (script) Customizer Example"),
// Type: to.Ptr("PowerShell"),
// RunAsSystem: to.Ptr(false),
// RunElevated: to.Ptr(false),
// ScriptURI: to.Ptr("https://example.com/path/to/script.ps1"),
// ValidExitCodes: []*int32{
// to.Ptr[int32](0),
// to.Ptr[int32](1)},
// },
// &armvirtualmachineimagebuilder.ImageTemplatePowerShellCustomizer{
// Name: to.Ptr("PowerShell (script) Customizer Elevated Local System user Example"),
// Type: to.Ptr("PowerShell"),
// RunAsSystem: to.Ptr(false),
// RunElevated: to.Ptr(true),
// ScriptURI: to.Ptr("https://example.com/path/to/script.ps1"),
// ValidExitCodes: []*int32{
// to.Ptr[int32](0),
// to.Ptr[int32](1)},
// },
// &armvirtualmachineimagebuilder.ImageTemplatePowerShellCustomizer{
// Name: to.Ptr("PowerShell (script) Customizer Elevated Local System user Example"),
// Type: to.Ptr("PowerShell"),
// RunAsSystem: to.Ptr(true),
// RunElevated: to.Ptr(true),
// ScriptURI: to.Ptr("https://example.com/path/to/script.ps1"),
// ValidExitCodes: []*int32{
// to.Ptr[int32](0),
// to.Ptr[int32](1)},
// },
// &armvirtualmachineimagebuilder.ImageTemplateRestartCustomizer{
// Name: to.Ptr("Restart Customizer Example"),
// Type: to.Ptr("WindowsRestart"),
// RestartCheckCommand: to.Ptr("powershell -command \"& {Write-Output 'restarted.'}\""),
// RestartCommand: to.Ptr("shutdown /f /r /t 0 /c \"packer restart\""),
// RestartTimeout: to.Ptr("10m"),
// },
// &armvirtualmachineimagebuilder.ImageTemplateWindowsUpdateCustomizer{
// Name: to.Ptr("Windows Update Customizer Example"),
// Type: to.Ptr("WindowsUpdate"),
// Filters: []*string{
// to.Ptr("$_.BrowseOnly")},
// SearchCriteria: to.Ptr("BrowseOnly=0 and IsInstalled=0"),
// UpdateLimit: to.Ptr[int32](100),
// }},
// Distribute: []armvirtualmachineimagebuilder.ImageTemplateDistributorClassification{
// &armvirtualmachineimagebuilder.ImageTemplateManagedImageDistributor{
// Type: to.Ptr("ManagedImage"),
// ArtifactTags: map[string]*string{
// "tagName": to.Ptr("value"),
// },
// RunOutputName: to.Ptr("image_it_pir_1"),
// ImageID: to.Ptr("/subscriptions/{subscription-id}/resourceGroups/rg1/providers/Microsoft.Compute/images/image_it_1"),
// Location: to.Ptr("1_location"),
// }},
// Source: &armvirtualmachineimagebuilder.ImageTemplateManagedImageSource{
// Type: to.Ptr("ManagedImage"),
// ImageID: to.Ptr("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/images/source_image"),
// },
// VMProfile: &armvirtualmachineimagebuilder.ImageTemplateVMProfile{
// OSDiskSizeGB: to.Ptr[int32](64),
// VMSize: to.Ptr("Standard_D2s_v3"),
// },
// },
// }
}