-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathSet-AzsBackupConfiguration.ps1
More file actions
201 lines (175 loc) · 8.27 KB
/
Set-AzsBackupConfiguration.ps1
File metadata and controls
201 lines (175 loc) · 8.27 KB
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
<#
.Synopsis
Update a backup location.
.Description
Update a backup location.
.Example
To view examples, please use the -Online parameter with Get-Help or navigate to: https://docs.microsoft.com/en-us/powershell/module/azs.backup.admin/set-azsbackupconfiguration
.Inputs
Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IBackupLocation
.Outputs
Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IBackupLocation
.Notes
COMPLEX PARAMETER PROPERTIES
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
BACKUP <IBackupLocation>: Information about the backup location.
[Location <String>]: Location of the resource.
[Tag <IResourceTags>]: List of key value pairs.
[(Any) <String>]: This indicates any property can be added to this object.
[BackupFrequencyInHours <Int32?>]: The interval, in hours, for the frequency that the scheduler takes a backup.
[BackupRetentionPeriodInDays <Int32?>]: The retention period, in days, for backs in the storage location.
[EncryptionCertBase64 <String>]: The base64 raw data for the backup encryption certificate.
[IsBackupSchedulerEnabled <Boolean?>]: True if the backup scheduler is enabled.
[Password <String>]: Password to access the location.
[Path <String>]: Path to the update location
[UserName <String>]: Username to access the location.
.Link
https://docs.microsoft.com/en-us/powershell/module/azs.backup.admin/set-azsbackupconfiguration
#>
function Set-AzsBackupConfiguration {
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IBackupLocation])]
[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
[Parameter()]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Path')]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Runtime.DefaultInfo(Script='(Get-AzLocation)[0].Location')]
[System.String]
# Name of the backup location.
${Location},
[Parameter()]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Path')]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Runtime.DefaultInfo(Script='"system.$((Get-AzLocation)[0].Location)"')]
[System.String]
# Name of the resource group.
${ResourceGroupName},
[Parameter()]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Path')]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
[System.String]
# Subscription credentials that uniquely identify Microsoft Azure subscription.
# The subscription ID forms part of the URI for every service call.
${SubscriptionId},
[Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Body')]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IBackupLocation]
# Information about the backup location.
# To construct, see NOTES section for BACKUP properties and create a hash table.
${Backup},
[Parameter(ParameterSetName='UpdateExpanded')]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Body')]
[System.Int32]
# The interval, in hours, for the frequency that the scheduler takes a backup.
${BackupFrequencyInHours},
[Parameter(ParameterSetName='UpdateExpanded')]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Body')]
[System.Int32]
# The retention period, in days, for backs in the storage location.
${BackupRetentionPeriodInDays},
[Parameter(ParameterSetName='UpdateExpanded')]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Body')]
[System.String]
# Path to the encryption cert file with public key (.cer).
${EncryptionCertPath},
[Parameter(ParameterSetName='UpdateExpanded')]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Body')]
[System.Management.Automation.SwitchParameter]
# True if the backup scheduler is enabled.
${IsBackupSchedulerEnabled},
[Parameter(ParameterSetName='UpdateExpanded')]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Body')]
[SecureString]
# Password to access the location.
${Password},
[Parameter(ParameterSetName='UpdateExpanded')]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Body')]
[System.String]
# Path to the update location
${Path},
[Parameter(ParameterSetName='UpdateExpanded')]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Body')]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IResourceTags]))]
[System.Collections.Hashtable]
# List of key value pairs.
${Tag},
[Parameter(ParameterSetName='UpdateExpanded')]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Body')]
[System.String]
# Username to access the location.
${UserName},
[Parameter()]
[Alias('AzureRMContext', 'AzureCredential')]
[ValidateNotNull()]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Azure')]
[System.Management.Automation.PSObject]
# The credentials, account, tenant, and subscription used for communication with Azure.
${DefaultProfile},
[Parameter()]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Runtime')]
[System.Management.Automation.SwitchParameter]
# Run the command as a job
${AsJob},
[Parameter(DontShow)]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Runtime')]
[System.Management.Automation.SwitchParameter]
# Wait for .NET debugger to attach
${Break},
[Parameter(DontShow)]
[ValidateNotNull()]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Runtime')]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Runtime.SendAsyncStep[]]
# SendAsync Pipeline Steps to be appended to the front of the pipeline
${HttpPipelineAppend},
[Parameter(DontShow)]
[ValidateNotNull()]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Runtime')]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Runtime.SendAsyncStep[]]
# SendAsync Pipeline Steps to be prepended to the front of the pipeline
${HttpPipelinePrepend},
[Parameter()]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Runtime')]
[System.Management.Automation.SwitchParameter]
# Run the command asynchronously
${NoWait},
[Parameter(DontShow)]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Runtime')]
[System.Uri]
# The URI for the proxy server to use
${Proxy},
[Parameter(DontShow)]
[ValidateNotNull()]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Runtime')]
[System.Management.Automation.PSCredential]
# Credentials for a proxy server to use for the remote call
${ProxyCredential},
[Parameter(DontShow)]
[Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Runtime')]
[System.Management.Automation.SwitchParameter]
# Use the default credentials for the proxy
${ProxyUseDefaultCredentials}
)
process {
if ($PSCmdlet.ParameterSetName -eq 'UpdateExpanded')
{
$PSBoundParameters.Add('Location1', $Location)
}
if ($PSBoundParameters.ContainsKey(('Password')))
{
$Ptr = [System.Runtime.InteropServices.Marshal]::SecureStringToCoTaskMemUnicode($Password)
$PasswordString = [System.Runtime.InteropServices.Marshal]::PtrToStringUni($Ptr)
[System.Runtime.InteropServices.Marshal]::ZeroFreeCoTaskMemUnicode($Ptr)
$PSBoundParameters['Password'] = $PasswordString
}
if ($PSBoundParameters.ContainsKey(('EncryptionCertPath')))
{
if (!(Test-Path -Path $EncryptionCertPath -PathType Leaf))
{
throw "The specified encryption cert $EncryptionCertPath does not exist"
}
$EncryptionCertBytes = [System.IO.File]::ReadAllBytes($EncryptionCertPath)
$EncryptionCertBase64 = [System.Convert]::ToBase64String($EncryptionCertBytes)
$null = $PSBoundParameters.Remove('EncryptionCertPath')
$PSBoundParameters.Add('EncryptionCertBase64', $EncryptionCertBase64)
}
Azs.Backup.Admin.internal\Set-AzsBackupConfiguration @PSBoundParameters
}
}