-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAGMPowerCLIImportFunctions.ps1
More file actions
167 lines (132 loc) · 4.99 KB
/
AGMPowerCLIImportFunctions.ps1
File metadata and controls
167 lines (132 loc) · 4.99 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
# Copyright 2022 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
Function Import-AGMOnVault ([string]$diskpoolid,[string]$applianceid,[string]$appid,[switch][alias("f")]$forget,[switch][alias("o")]$ownershiptakeover,[string]$jsonbody,[string]$label)
{
<#
.SYNOPSIS
Imports or forgets OnVault images
There is no Forget-AGMOnvault command. You perform both import and forget from this function.
.EXAMPLE
Import-AGMOnVault -diskpoolid 20060633 -applianceid 1415019931
Imports all OnVault images from disk pool ID 20060633 created by Appliance ID 1415019931
.EXAMPLE
Import-AGMOnVault -diskpoolid 20060633 -applianceid 1415019931 -appid 4788
Imports all OnVault images from disk pool ID 20060633 and Source App ID 4788 created by Appliance ID 1415019931
.EXAMPLE
Import-AGMOnVault -diskpoolid 20060633 -applianceid 1415019931 -appid 4788 -owner
Imports all OnVault images from disk pool ID 20060633 and Source App ID 4788 created by Appliance ID 1415019931 and takes ownership
.EXAMPLE
Import-AGMOnVault -diskpoolid 20060633 -applianceid 1415019931 -appid 4788 -forget
Forgets all OnVault images imported from disk pool ID 20060633 and Source App ID 4788 created by Appliance ID 1415019931
.DESCRIPTION
A function to import OnVault images
Learn Appliance ID with Get-AGMAppliance
Learn Diskpool ID with Get-AGMDiskPool
Learn Application ID with Get-AGMApplication and use sources.id
#>
if (!($diskpoolid))
{
[string]$diskpoolid = Read-Host "Diskpool ID to import from"
}
if (!($applianceid))
{
[string]$applianceid = Read-Host "Appliance ID to import from"
}
if ($ownershiptakeover)
{
$owner="true"
}
else
{
$owner="false"
}
if ($forget)
{
$action = "forget"
}
else
{
$action = "import"
}
if($appid)
{
$endpoint = "/diskpool/$diskpoolid/vaultclusters/$applianceid/$appid" + "?action=$action&owner=$owner&nowait=true"
Post-AGMAPIData -endpoint $endpoint
}
else
{
$endpoint = "/diskpool/$diskpoolid/vaultclusters/$applianceid" + "?action=$action&owner=$owner&nowait=true"
Post-AGMAPIData -endpoint $endpoint
}
}
Function Import-AGMPDSnapshot ([string]$diskpoolid,[string]$applianceid,[string]$appid,[switch][alias("f")]$forget,[switch][alias("o")]$ownershiptakeover,[string]$jsonbody,[string]$label)
{
<#
.SYNOPSIS
Imports or forgets PD Snapshot images
This function Imports all PD snapshot images created by appliance ID 1415019931 and import destination is determined by specified diskpool ID
There is no Import-AGMPDSnapshot command. You can do import and forget from this function.
.EXAMPLE
Import-AGMPDSnapshot -diskpoolid 20060633 -applianceid 1415019931
Imports all PD Snapshot images from disk pool ID 20060633
.EXAMPLE
Import-AGMPDSnapshot -diskpoolid 20060633 -applianceid 1415019931 -appid 4788
Imports all PD Snapshot images from disk pool ID 20060633 and App ID 4788
.EXAMPLE
Import-AGMPDSnapshot -diskpoolid 20060633 -applianceid 1415019931 -appid 4788 -owner
Imports all PD Snapshot images from disk pool ID 20060633 and App ID 4788 and takes ownership
.EXAMPLE
Import-AGMPDSnapshot -diskpoolid 20060633 -applianceid 1415019931 -appid 4788 -forget
Forgets all PD Snapshot images imported from disk pool ID 20060633 and App ID 4788
.DESCRIPTION
A function to import PD Snapshot images
Learn Appliance ID with Get-AGMAppliance
Learn Diskpool ID with Get-AGMDiskPool
Learn Application ID with Get-AGMApplication
#>
if (!($diskpoolid))
{
[string]$diskpoolid = Read-Host "Diskpool ID to import from"
}
if (!($applianceid))
{
[string]$applianceid = Read-Host "Appliance ID to import into"
}
if ($ownershiptakeover)
{
$owner="true"
}
else
{
$owner="false"
}
if ($forget)
{
$action = "forget"
}
else
{
$action = "import"
}
if($appid)
{
$endpoint = "/diskpool/$diskpoolid/vaultclusters/$applianceid/$appid" + "?action=$action&owner=$owner&nowait=true&jobclass=1"
Post-AGMAPIData -endpoint $endpoint
}
else
{
$endpoint = "/diskpool/$diskpoolid/vaultclusters/$applianceid" + "?action=$action&owner=$owner&nowait=true&jobclass=1"
Post-AGMAPIData -endpoint $endpoint
}
}