@stack-spot/portal-network 0.236.0 → 0.238.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/dist/api/cloudPlatform.d.ts +94 -816
- package/dist/api/cloudPlatform.d.ts.map +1 -1
- package/dist/api/cloudPlatform.js +33 -599
- package/dist/api/cloudPlatform.js.map +1 -1
- package/dist/api/workspaceManager.d.ts +28 -1
- package/dist/api/workspaceManager.d.ts.map +1 -1
- package/dist/api/workspaceManager.js +20 -0
- package/dist/api/workspaceManager.js.map +1 -1
- package/dist/apis.json +1 -1
- package/dist/client/cloud-platform.d.ts +470 -942
- package/dist/client/cloud-platform.d.ts.map +1 -1
- package/dist/client/cloud-platform.js +460 -963
- package/dist/client/cloud-platform.js.map +1 -1
- package/dist/client/workspace-manager.d.ts +16 -0
- package/dist/client/workspace-manager.d.ts.map +1 -1
- package/dist/client/workspace-manager.js +19 -1
- package/dist/client/workspace-manager.js.map +1 -1
- package/package.json +1 -1
- package/src/api/cloudPlatform.ts +150 -1546
- package/src/api/workspaceManager.ts +48 -3
- package/src/api-docs/cloud-platform-docs-prd.json +1681 -7331
- package/src/api-docs/cloud-platform-docs-stg.json +1430 -6671
- package/src/apis.json +1 -1
- package/src/client/cloud-platform.ts +417 -694
- package/src/client/workspace-manager.ts +10 -0
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { getApiAddresses } from '../api-addresses.js';
|
|
2
|
-
import {
|
|
2
|
+
import { roleControllerUpdateAccountRole } from '../api/account.js';
|
|
3
|
+
import { accountAssignmentControllerCreate, accountAssignmentControllerDelete, accountAssignmentControllerGet, accountAssignmentControllerList, boundaryControllerCreate, boundaryControllerDelete, boundaryControllerGet, boundaryControllerList, boundaryControllerPutPolicyDocument, boundaryControllerPutTags, boundarySsoControllerCreate, boundarySsoControllerDelete, boundarySsoControllerGet, boundarySsoControllerList, boundarySsoControllerPutPolicyDocument, boundarySsoControllerPutTags, certificateControllerCreate, certificateControllerDelete, certificateControllerGet, certificateControllerList, certificateControllerPutTags, cidrControllerCreate, cidrControllerDelete, cidrControllerGet, cidrControllerList, cidrControllerPutTags, customerPolicyAttachmentControllerCreate, customerPolicyAttachmentControllerDelete, customerPolicyAttachmentControllerGet, customerPolicyAttachmentControllerList, defaults, dnsRecordControllerCreate, dnsRecordControllerDelete, dnsRecordControllerGet, dnsRecordControllerListBy, dnsRecordControllerPutRecords, dnsRecordControllerPutTtl, dnsZoneControllerCreate, dnsZoneControllerDelete, dnsZoneControllerGet, dnsZoneControllerListBy, dnsZoneControllerPutTags, finOpsControllerGet, firewallControllerCreate, firewallControllerDelete, firewallControllerGet, firewallControllerList, fmsAssociateAdminAccountControllerCreate, fmsAssociateAdminAccountControllerDelete, fmsAssociateAdminAccountControllerGet, fmsAssociateAdminAccountControllerList, fmsPolicyControllerCreate, fmsPolicyControllerDelete, fmsPolicyControllerGet, fmsPolicyControllerList, folderControllerCreate, folderControllerDelete, folderControllerGet, folderControllerListByFolderRef, folderControllerPutName, folderControllerPutTags, foundationControllerCreate, foundationControllerGet, foundationControllerList, foundationControllerPutSecProjectTags, identityCenterControllerCreate, identityCenterControllerDelete, identityCenterControllerGet, identityCenterControllerList, identityStoreGroupControllerCreate, identityStoreGroupControllerDelete, identityStoreGroupControllerGet, identityStoreGroupControllerList, identityStoreMembershipControllerCreate, identityStoreMembershipControllerDelete, identityStoreMembershipControllerGet, identityStoreMembershipControllerList, identityStoreUserControllerCreate, identityStoreUserControllerDelete, identityStoreUserControllerGet, identityStoreUserControllerList, managedPolicyAttachmentControllerCreate, managedPolicyAttachmentControllerDelete, managedPolicyAttachmentControllerGet, managedPolicyAttachmentControllerList, networkControllerCreate, networkControllerDelete, networkControllerGet, networkControllerListBy, networkControllerPutNetworkName, networkControllerPutTags, oidcControllerGet, permissionSetControllerCreate, permissionSetControllerDelete, permissionSetControllerGet, permissionSetControllerList, projectControllerCreate, projectControllerDelete, projectControllerGet, projectControllerListByFolderRef, projectControllerPutName, projectControllerPutTags, roleControllerCreate, roleControllerDelete, roleControllerGet, roleControllerList, serviceControlPolicyControllerCreate, serviceControlPolicyControllerDelete, serviceControlPolicyControllerGet, serviceControlPolicyControllerList, serviceControlPolicyControllerPutContent, serviceControlPolicyControllerPutDescription, serviceControlPolicyControllerPutName, serviceControlPolicyControllerPutTags, serviceControlPolicyControllerPutTarget, vpnControllerCreate, vpnControllerDelete, vpnControllerGet, vpnControllerList, vpnControllerPutTags, } from '../api/cloudPlatform.js';
|
|
3
4
|
import { DefaultAPIError } from '../error/DefaultAPIError.js';
|
|
4
5
|
import { scfDictionary } from '../error/dictionary/cloud-platform.js';
|
|
5
6
|
import { ReactQueryNetworkClient } from '../network/ReactQueryNetworkClient.js';
|
|
@@ -8,1597 +9,1093 @@ class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
8
9
|
constructor() {
|
|
9
10
|
super(getApiAddresses().cloudPlatform.url, defaults);
|
|
10
11
|
/**
|
|
11
|
-
*
|
|
12
|
+
* Update network tags V2
|
|
12
13
|
*/
|
|
13
|
-
Object.defineProperty(this, "
|
|
14
|
+
Object.defineProperty(this, "updateNetworkTagsV2", {
|
|
14
15
|
enumerable: true,
|
|
15
16
|
configurable: true,
|
|
16
17
|
writable: true,
|
|
17
|
-
value: this.
|
|
18
|
+
value: this.mutation(removeAuthorizationParam(networkControllerPutTags))
|
|
18
19
|
});
|
|
19
20
|
/**
|
|
20
|
-
*
|
|
21
|
+
* Update network name V2
|
|
21
22
|
*/
|
|
22
|
-
Object.defineProperty(this, "
|
|
23
|
+
Object.defineProperty(this, "updateNetworkNameV2", {
|
|
23
24
|
enumerable: true,
|
|
24
25
|
configurable: true,
|
|
25
26
|
writable: true,
|
|
26
|
-
value: this.
|
|
27
|
+
value: this.mutation(removeAuthorizationParam(networkControllerPutNetworkName))
|
|
27
28
|
});
|
|
28
29
|
/**
|
|
29
|
-
*
|
|
30
|
+
* List networks V2
|
|
30
31
|
*/
|
|
31
|
-
Object.defineProperty(this, "
|
|
32
|
+
Object.defineProperty(this, "listNetworksV2", {
|
|
32
33
|
enumerable: true,
|
|
33
34
|
configurable: true,
|
|
34
35
|
writable: true,
|
|
35
|
-
value: this.query(removeAuthorizationParam(
|
|
36
|
+
value: this.query(removeAuthorizationParam(networkControllerListBy))
|
|
36
37
|
});
|
|
37
38
|
/**
|
|
38
|
-
* Create
|
|
39
|
+
* Create network V2
|
|
39
40
|
*/
|
|
40
|
-
Object.defineProperty(this, "
|
|
41
|
+
Object.defineProperty(this, "createNetworkV2", {
|
|
41
42
|
enumerable: true,
|
|
42
43
|
configurable: true,
|
|
43
44
|
writable: true,
|
|
44
|
-
value: this.mutation(removeAuthorizationParam(
|
|
45
|
+
value: this.mutation(removeAuthorizationParam(networkControllerCreate))
|
|
45
46
|
});
|
|
46
47
|
/**
|
|
47
|
-
*
|
|
48
|
+
* Get network V2
|
|
48
49
|
*/
|
|
49
|
-
Object.defineProperty(this, "
|
|
50
|
+
Object.defineProperty(this, "getNetworkV2", {
|
|
50
51
|
enumerable: true,
|
|
51
52
|
configurable: true,
|
|
52
53
|
writable: true,
|
|
53
|
-
value: this.
|
|
54
|
+
value: this.query(removeAuthorizationParam(networkControllerGet))
|
|
54
55
|
});
|
|
55
56
|
/**
|
|
56
|
-
*
|
|
57
|
+
* Delete network V2
|
|
57
58
|
*/
|
|
58
|
-
Object.defineProperty(this, "
|
|
59
|
+
Object.defineProperty(this, "deleteNetworkV2", {
|
|
59
60
|
enumerable: true,
|
|
60
61
|
configurable: true,
|
|
61
62
|
writable: true,
|
|
62
|
-
value: this.
|
|
63
|
+
value: this.mutation(removeAuthorizationParam(networkControllerDelete))
|
|
63
64
|
});
|
|
64
65
|
/**
|
|
65
|
-
*
|
|
66
|
+
* Update project tags V2
|
|
66
67
|
*/
|
|
67
|
-
Object.defineProperty(this, "
|
|
68
|
+
Object.defineProperty(this, "updateProjectTagsV2", {
|
|
68
69
|
enumerable: true,
|
|
69
70
|
configurable: true,
|
|
70
71
|
writable: true,
|
|
71
|
-
value: this.mutation(removeAuthorizationParam(
|
|
72
|
+
value: this.mutation(removeAuthorizationParam(projectControllerPutTags))
|
|
72
73
|
});
|
|
73
74
|
/**
|
|
74
|
-
*
|
|
75
|
+
* Update project name V2
|
|
75
76
|
*/
|
|
76
|
-
Object.defineProperty(this, "
|
|
77
|
+
Object.defineProperty(this, "updateProjectNameV2", {
|
|
77
78
|
enumerable: true,
|
|
78
79
|
configurable: true,
|
|
79
80
|
writable: true,
|
|
80
|
-
value: this.
|
|
81
|
+
value: this.mutation(removeAuthorizationParam(projectControllerPutName))
|
|
81
82
|
});
|
|
82
83
|
/**
|
|
83
|
-
*
|
|
84
|
+
* Update folder tags V2
|
|
84
85
|
*/
|
|
85
|
-
Object.defineProperty(this, "
|
|
86
|
+
Object.defineProperty(this, "updateFolderTagsV2", {
|
|
86
87
|
enumerable: true,
|
|
87
88
|
configurable: true,
|
|
88
89
|
writable: true,
|
|
89
|
-
value: this.mutation(removeAuthorizationParam(
|
|
90
|
+
value: this.mutation(removeAuthorizationParam(folderControllerPutTags))
|
|
90
91
|
});
|
|
91
92
|
/**
|
|
92
|
-
*
|
|
93
|
+
* Update folder name V2
|
|
93
94
|
*/
|
|
94
|
-
Object.defineProperty(this, "
|
|
95
|
+
Object.defineProperty(this, "updateFolderNameV2", {
|
|
95
96
|
enumerable: true,
|
|
96
97
|
configurable: true,
|
|
97
98
|
writable: true,
|
|
98
|
-
value: this.
|
|
99
|
+
value: this.mutation(removeAuthorizationParam(folderControllerPutName))
|
|
99
100
|
});
|
|
100
101
|
/**
|
|
101
|
-
*
|
|
102
|
+
* Update DNS records TTL V2
|
|
102
103
|
*/
|
|
103
|
-
Object.defineProperty(this, "
|
|
104
|
+
Object.defineProperty(this, "updateDnsRecordsTtlV2", {
|
|
104
105
|
enumerable: true,
|
|
105
106
|
configurable: true,
|
|
106
107
|
writable: true,
|
|
107
|
-
value: this.
|
|
108
|
+
value: this.mutation(removeAuthorizationParam(dnsRecordControllerPutTtl))
|
|
108
109
|
});
|
|
109
110
|
/**
|
|
110
|
-
*
|
|
111
|
+
* Update DNS records V2
|
|
111
112
|
*/
|
|
112
|
-
Object.defineProperty(this, "
|
|
113
|
+
Object.defineProperty(this, "updateDnsRecordsV2", {
|
|
113
114
|
enumerable: true,
|
|
114
115
|
configurable: true,
|
|
115
116
|
writable: true,
|
|
116
|
-
value: this.mutation(removeAuthorizationParam(
|
|
117
|
+
value: this.mutation(removeAuthorizationParam(dnsRecordControllerPutRecords))
|
|
117
118
|
});
|
|
118
119
|
/**
|
|
119
|
-
*
|
|
120
|
+
* Update certificate tags V2
|
|
120
121
|
*/
|
|
121
|
-
Object.defineProperty(this, "
|
|
122
|
+
Object.defineProperty(this, "updateCertificatesTagsV2", {
|
|
122
123
|
enumerable: true,
|
|
123
124
|
configurable: true,
|
|
124
125
|
writable: true,
|
|
125
|
-
value: this.mutation(removeAuthorizationParam(
|
|
126
|
+
value: this.mutation(removeAuthorizationParam(certificateControllerPutTags))
|
|
126
127
|
});
|
|
127
128
|
/**
|
|
128
|
-
*
|
|
129
|
+
* List Vpn's V2
|
|
129
130
|
*/
|
|
130
|
-
Object.defineProperty(this, "
|
|
131
|
+
Object.defineProperty(this, "listVpnV2", {
|
|
131
132
|
enumerable: true,
|
|
132
133
|
configurable: true,
|
|
133
134
|
writable: true,
|
|
134
|
-
value: this.query(removeAuthorizationParam(
|
|
135
|
+
value: this.query(removeAuthorizationParam(vpnControllerList))
|
|
135
136
|
});
|
|
136
137
|
/**
|
|
137
|
-
*
|
|
138
|
+
* Create Vpn V2
|
|
138
139
|
*/
|
|
139
|
-
Object.defineProperty(this, "
|
|
140
|
+
Object.defineProperty(this, "createVpnV2", {
|
|
140
141
|
enumerable: true,
|
|
141
142
|
configurable: true,
|
|
142
143
|
writable: true,
|
|
143
|
-
value: this.
|
|
144
|
+
value: this.mutation(removeAuthorizationParam(vpnControllerCreate))
|
|
144
145
|
});
|
|
145
146
|
/**
|
|
146
|
-
*
|
|
147
|
+
* Update Vpn tags V2
|
|
147
148
|
*/
|
|
148
|
-
Object.defineProperty(this, "
|
|
149
|
+
Object.defineProperty(this, "updateVpnTagsV2", {
|
|
149
150
|
enumerable: true,
|
|
150
151
|
configurable: true,
|
|
151
152
|
writable: true,
|
|
152
|
-
value: this.mutation(removeAuthorizationParam(
|
|
153
|
+
value: this.mutation(removeAuthorizationParam(vpnControllerPutTags))
|
|
153
154
|
});
|
|
154
155
|
/**
|
|
155
|
-
* Get
|
|
156
|
+
* Get Vpn by name V2
|
|
156
157
|
*/
|
|
157
|
-
Object.defineProperty(this, "
|
|
158
|
+
Object.defineProperty(this, "getVpnSByNameV2", {
|
|
158
159
|
enumerable: true,
|
|
159
160
|
configurable: true,
|
|
160
161
|
writable: true,
|
|
161
|
-
value: this.query(removeAuthorizationParam(
|
|
162
|
+
value: this.query(removeAuthorizationParam(vpnControllerGet))
|
|
162
163
|
});
|
|
163
164
|
/**
|
|
164
|
-
*
|
|
165
|
+
* Delete Vpn V2
|
|
165
166
|
*/
|
|
166
|
-
Object.defineProperty(this, "
|
|
167
|
+
Object.defineProperty(this, "deleteVpnSV2", {
|
|
167
168
|
enumerable: true,
|
|
168
169
|
configurable: true,
|
|
169
170
|
writable: true,
|
|
170
|
-
value: this.mutation(removeAuthorizationParam(
|
|
171
|
+
value: this.mutation(removeAuthorizationParam(vpnControllerDelete))
|
|
171
172
|
});
|
|
172
173
|
/**
|
|
173
|
-
*
|
|
174
|
+
* List projects V2
|
|
174
175
|
*/
|
|
175
|
-
Object.defineProperty(this, "
|
|
176
|
+
Object.defineProperty(this, "listProjectsV2", {
|
|
176
177
|
enumerable: true,
|
|
177
178
|
configurable: true,
|
|
178
179
|
writable: true,
|
|
179
|
-
value: this.query(removeAuthorizationParam(
|
|
180
|
+
value: this.query(removeAuthorizationParam(projectControllerListByFolderRef))
|
|
180
181
|
});
|
|
181
182
|
/**
|
|
182
|
-
*
|
|
183
|
+
* Create project V2
|
|
183
184
|
*/
|
|
184
|
-
Object.defineProperty(this, "
|
|
185
|
+
Object.defineProperty(this, "createProjectV2", {
|
|
185
186
|
enumerable: true,
|
|
186
187
|
configurable: true,
|
|
187
188
|
writable: true,
|
|
188
|
-
value: this.
|
|
189
|
+
value: this.mutation(removeAuthorizationParam(projectControllerCreate))
|
|
189
190
|
});
|
|
190
191
|
/**
|
|
191
|
-
*
|
|
192
|
+
* Get project by name V2
|
|
192
193
|
*/
|
|
193
|
-
Object.defineProperty(this, "
|
|
194
|
+
Object.defineProperty(this, "getProjectByNameV2", {
|
|
194
195
|
enumerable: true,
|
|
195
196
|
configurable: true,
|
|
196
197
|
writable: true,
|
|
197
|
-
value: this.
|
|
198
|
+
value: this.query(removeAuthorizationParam(projectControllerGet))
|
|
198
199
|
});
|
|
199
200
|
/**
|
|
200
|
-
*
|
|
201
|
+
* Delete project V2
|
|
201
202
|
*/
|
|
202
|
-
Object.defineProperty(this, "
|
|
203
|
+
Object.defineProperty(this, "deleteProjectV2", {
|
|
203
204
|
enumerable: true,
|
|
204
205
|
configurable: true,
|
|
205
206
|
writable: true,
|
|
206
|
-
value: this.
|
|
207
|
+
value: this.mutation(removeAuthorizationParam(projectControllerDelete))
|
|
207
208
|
});
|
|
208
209
|
/**
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
Object.defineProperty(this, "
|
|
210
|
+
* List managed policy attachments V2
|
|
211
|
+
*/
|
|
212
|
+
Object.defineProperty(this, "listManagedPolicyAttachmentsV2", {
|
|
212
213
|
enumerable: true,
|
|
213
214
|
configurable: true,
|
|
214
215
|
writable: true,
|
|
215
|
-
value: this.query(removeAuthorizationParam(
|
|
216
|
+
value: this.query(removeAuthorizationParam(managedPolicyAttachmentControllerList))
|
|
216
217
|
});
|
|
217
218
|
/**
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
Object.defineProperty(this, "
|
|
219
|
+
* Create managed policy attachment V2
|
|
220
|
+
*/
|
|
221
|
+
Object.defineProperty(this, "createManagedPolicyAttachmentV2", {
|
|
221
222
|
enumerable: true,
|
|
222
223
|
configurable: true,
|
|
223
224
|
writable: true,
|
|
224
|
-
value: this.mutation(removeAuthorizationParam(
|
|
225
|
+
value: this.mutation(removeAuthorizationParam(managedPolicyAttachmentControllerCreate))
|
|
225
226
|
});
|
|
226
227
|
/**
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
Object.defineProperty(this, "
|
|
228
|
+
* Get managed policy attachment by name V2
|
|
229
|
+
*/
|
|
230
|
+
Object.defineProperty(this, "getManagedPolicyAttachmentByNameV2", {
|
|
230
231
|
enumerable: true,
|
|
231
232
|
configurable: true,
|
|
232
233
|
writable: true,
|
|
233
|
-
value: this.
|
|
234
|
+
value: this.query(removeAuthorizationParam(managedPolicyAttachmentControllerGet))
|
|
234
235
|
});
|
|
235
236
|
/**
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
Object.defineProperty(this, "
|
|
237
|
+
* Delete managed policy attachment V2
|
|
238
|
+
*/
|
|
239
|
+
Object.defineProperty(this, "deleteManagedPolicyAttachmentV2", {
|
|
239
240
|
enumerable: true,
|
|
240
241
|
configurable: true,
|
|
241
242
|
writable: true,
|
|
242
|
-
value: this.mutation(removeAuthorizationParam(
|
|
243
|
+
value: this.mutation(removeAuthorizationParam(managedPolicyAttachmentControllerDelete))
|
|
243
244
|
});
|
|
244
245
|
/**
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
Object.defineProperty(this, "
|
|
246
|
+
* List identity store users V2
|
|
247
|
+
*/
|
|
248
|
+
Object.defineProperty(this, "listIdentityStoreUsersV2", {
|
|
248
249
|
enumerable: true,
|
|
249
250
|
configurable: true,
|
|
250
251
|
writable: true,
|
|
251
|
-
value: this.
|
|
252
|
+
value: this.query(removeAuthorizationParam(identityStoreUserControllerList))
|
|
252
253
|
});
|
|
253
254
|
/**
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
Object.defineProperty(this, "
|
|
255
|
+
* Create identity store user V2
|
|
256
|
+
*/
|
|
257
|
+
Object.defineProperty(this, "createIdentityStoreUsersV2", {
|
|
257
258
|
enumerable: true,
|
|
258
259
|
configurable: true,
|
|
259
260
|
writable: true,
|
|
260
|
-
value: this.mutation(removeAuthorizationParam(
|
|
261
|
+
value: this.mutation(removeAuthorizationParam(identityStoreUserControllerCreate))
|
|
261
262
|
});
|
|
262
263
|
/**
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
Object.defineProperty(this, "
|
|
264
|
+
* Get identity store user by name V2
|
|
265
|
+
*/
|
|
266
|
+
Object.defineProperty(this, "getIdentityStoreUserByNameV2", {
|
|
266
267
|
enumerable: true,
|
|
267
268
|
configurable: true,
|
|
268
269
|
writable: true,
|
|
269
|
-
value: this.
|
|
270
|
+
value: this.query(removeAuthorizationParam(identityStoreUserControllerGet))
|
|
270
271
|
});
|
|
271
272
|
/**
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
Object.defineProperty(this, "
|
|
273
|
+
* Delete identity store user V2
|
|
274
|
+
*/
|
|
275
|
+
Object.defineProperty(this, "deleteIdentityStoreUserV2", {
|
|
275
276
|
enumerable: true,
|
|
276
277
|
configurable: true,
|
|
277
278
|
writable: true,
|
|
278
|
-
value: this.mutation(removeAuthorizationParam(
|
|
279
|
+
value: this.mutation(removeAuthorizationParam(identityStoreUserControllerDelete))
|
|
279
280
|
});
|
|
280
281
|
/**
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
Object.defineProperty(this, "
|
|
282
|
+
* List identity store memberships V2
|
|
283
|
+
*/
|
|
284
|
+
Object.defineProperty(this, "listIdentityStoreMembershipsV2", {
|
|
284
285
|
enumerable: true,
|
|
285
286
|
configurable: true,
|
|
286
287
|
writable: true,
|
|
287
|
-
value: this.
|
|
288
|
+
value: this.query(removeAuthorizationParam(identityStoreMembershipControllerList))
|
|
288
289
|
});
|
|
289
290
|
/**
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
Object.defineProperty(this, "
|
|
291
|
+
* Create identity store membership V2
|
|
292
|
+
*/
|
|
293
|
+
Object.defineProperty(this, "createIdentityStoreMembershipsV2", {
|
|
293
294
|
enumerable: true,
|
|
294
295
|
configurable: true,
|
|
295
296
|
writable: true,
|
|
296
|
-
value: this.mutation(removeAuthorizationParam(
|
|
297
|
+
value: this.mutation(removeAuthorizationParam(identityStoreMembershipControllerCreate))
|
|
297
298
|
});
|
|
298
299
|
/**
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
Object.defineProperty(this, "
|
|
300
|
+
* Get identity store membership by name V2
|
|
301
|
+
*/
|
|
302
|
+
Object.defineProperty(this, "getIdentityStoreMembershipByNameV2", {
|
|
302
303
|
enumerable: true,
|
|
303
304
|
configurable: true,
|
|
304
305
|
writable: true,
|
|
305
|
-
value: this.
|
|
306
|
+
value: this.query(removeAuthorizationParam(identityStoreMembershipControllerGet))
|
|
306
307
|
});
|
|
307
308
|
/**
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
Object.defineProperty(this, "
|
|
309
|
+
* Delete identity store membership V2
|
|
310
|
+
*/
|
|
311
|
+
Object.defineProperty(this, "deleteIdentityStoreMembershipV2", {
|
|
311
312
|
enumerable: true,
|
|
312
313
|
configurable: true,
|
|
313
314
|
writable: true,
|
|
314
|
-
value: this.mutation(removeAuthorizationParam(
|
|
315
|
+
value: this.mutation(removeAuthorizationParam(identityStoreMembershipControllerDelete))
|
|
315
316
|
});
|
|
316
317
|
/**
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
Object.defineProperty(this, "
|
|
318
|
+
* List identity store groups V2
|
|
319
|
+
*/
|
|
320
|
+
Object.defineProperty(this, "listIdentityStoreGroupsV2", {
|
|
320
321
|
enumerable: true,
|
|
321
322
|
configurable: true,
|
|
322
323
|
writable: true,
|
|
323
|
-
value: this.
|
|
324
|
+
value: this.query(removeAuthorizationParam(identityStoreGroupControllerList))
|
|
324
325
|
});
|
|
325
326
|
/**
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
Object.defineProperty(this, "
|
|
327
|
+
* Create identity store group V2
|
|
328
|
+
*/
|
|
329
|
+
Object.defineProperty(this, "createIdentityStoreGroupV2", {
|
|
329
330
|
enumerable: true,
|
|
330
331
|
configurable: true,
|
|
331
332
|
writable: true,
|
|
332
|
-
value: this.mutation(removeAuthorizationParam(
|
|
333
|
+
value: this.mutation(removeAuthorizationParam(identityStoreGroupControllerCreate))
|
|
333
334
|
});
|
|
334
335
|
/**
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
Object.defineProperty(this, "
|
|
336
|
+
* Get identity store group by name V2
|
|
337
|
+
*/
|
|
338
|
+
Object.defineProperty(this, "getIdentityStoreGroupsByNameV2", {
|
|
338
339
|
enumerable: true,
|
|
339
340
|
configurable: true,
|
|
340
341
|
writable: true,
|
|
341
|
-
value: this.
|
|
342
|
+
value: this.query(removeAuthorizationParam(identityStoreGroupControllerGet))
|
|
342
343
|
});
|
|
343
344
|
/**
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
Object.defineProperty(this, "
|
|
345
|
+
* Delete identity store group V2
|
|
346
|
+
*/
|
|
347
|
+
Object.defineProperty(this, "deleteIdentityStoreGroupV2", {
|
|
347
348
|
enumerable: true,
|
|
348
349
|
configurable: true,
|
|
349
350
|
writable: true,
|
|
350
|
-
value: this.mutation(removeAuthorizationParam(
|
|
351
|
+
value: this.mutation(removeAuthorizationParam(identityStoreGroupControllerDelete))
|
|
351
352
|
});
|
|
352
353
|
/**
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
Object.defineProperty(this, "
|
|
354
|
+
* List identity centers V2
|
|
355
|
+
*/
|
|
356
|
+
Object.defineProperty(this, "listIdentityCentersV2", {
|
|
356
357
|
enumerable: true,
|
|
357
358
|
configurable: true,
|
|
358
359
|
writable: true,
|
|
359
|
-
value: this.query(removeAuthorizationParam(
|
|
360
|
+
value: this.query(removeAuthorizationParam(identityCenterControllerList))
|
|
360
361
|
});
|
|
361
362
|
/**
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
Object.defineProperty(this, "
|
|
363
|
+
* Create identity center V2
|
|
364
|
+
*/
|
|
365
|
+
Object.defineProperty(this, "createIdentityCenterV2", {
|
|
365
366
|
enumerable: true,
|
|
366
367
|
configurable: true,
|
|
367
368
|
writable: true,
|
|
368
|
-
value: this.
|
|
369
|
+
value: this.mutation(removeAuthorizationParam(identityCenterControllerCreate))
|
|
369
370
|
});
|
|
370
371
|
/**
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
Object.defineProperty(this, "
|
|
372
|
+
* Get identity center by name V2
|
|
373
|
+
*/
|
|
374
|
+
Object.defineProperty(this, "getIdentityCentersByNameV2", {
|
|
374
375
|
enumerable: true,
|
|
375
376
|
configurable: true,
|
|
376
377
|
writable: true,
|
|
377
|
-
value: this.
|
|
378
|
+
value: this.query(removeAuthorizationParam(identityCenterControllerGet))
|
|
378
379
|
});
|
|
379
380
|
/**
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
Object.defineProperty(this, "
|
|
381
|
+
* Delete identity center V2
|
|
382
|
+
*/
|
|
383
|
+
Object.defineProperty(this, "deleteIdentityCentersV2", {
|
|
383
384
|
enumerable: true,
|
|
384
385
|
configurable: true,
|
|
385
386
|
writable: true,
|
|
386
|
-
value: this.mutation(removeAuthorizationParam(
|
|
387
|
+
value: this.mutation(removeAuthorizationParam(identityCenterControllerDelete))
|
|
387
388
|
});
|
|
388
389
|
/**
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
Object.defineProperty(this, "
|
|
390
|
+
* List permission sets V2
|
|
391
|
+
*/
|
|
392
|
+
Object.defineProperty(this, "listPermissionSetsV2", {
|
|
392
393
|
enumerable: true,
|
|
393
394
|
configurable: true,
|
|
394
395
|
writable: true,
|
|
395
|
-
value: this.query(removeAuthorizationParam(
|
|
396
|
+
value: this.query(removeAuthorizationParam(permissionSetControllerList))
|
|
396
397
|
});
|
|
397
398
|
/**
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
Object.defineProperty(this, "
|
|
399
|
+
* Create permission set V2
|
|
400
|
+
*/
|
|
401
|
+
Object.defineProperty(this, "createPermissionSetV2", {
|
|
401
402
|
enumerable: true,
|
|
402
403
|
configurable: true,
|
|
403
404
|
writable: true,
|
|
404
|
-
value: this.
|
|
405
|
+
value: this.mutation(removeAuthorizationParam(permissionSetControllerCreate))
|
|
405
406
|
});
|
|
406
407
|
/**
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
Object.defineProperty(this, "
|
|
408
|
+
* Get permission set by name V2
|
|
409
|
+
*/
|
|
410
|
+
Object.defineProperty(this, "getPermissionSetByNameV2", {
|
|
410
411
|
enumerable: true,
|
|
411
412
|
configurable: true,
|
|
412
413
|
writable: true,
|
|
413
|
-
value: this.
|
|
414
|
+
value: this.query(removeAuthorizationParam(permissionSetControllerGet))
|
|
414
415
|
});
|
|
415
416
|
/**
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
Object.defineProperty(this, "
|
|
417
|
+
* Delete permission set V2
|
|
418
|
+
*/
|
|
419
|
+
Object.defineProperty(this, "deletePermissionSetV2", {
|
|
419
420
|
enumerable: true,
|
|
420
421
|
configurable: true,
|
|
421
422
|
writable: true,
|
|
422
|
-
value: this.mutation(removeAuthorizationParam(
|
|
423
|
+
value: this.mutation(removeAuthorizationParam(permissionSetControllerDelete))
|
|
423
424
|
});
|
|
424
425
|
/**
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
Object.defineProperty(this, "
|
|
426
|
+
* List account assignments V2
|
|
427
|
+
*/
|
|
428
|
+
Object.defineProperty(this, "listAccountAssignmentsV2", {
|
|
428
429
|
enumerable: true,
|
|
429
430
|
configurable: true,
|
|
430
431
|
writable: true,
|
|
431
|
-
value: this.
|
|
432
|
+
value: this.query(removeAuthorizationParam(accountAssignmentControllerList))
|
|
432
433
|
});
|
|
433
434
|
/**
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
Object.defineProperty(this, "
|
|
435
|
+
* Create account assignment V2
|
|
436
|
+
*/
|
|
437
|
+
Object.defineProperty(this, "createAccountAssignmentV2", {
|
|
437
438
|
enumerable: true,
|
|
438
439
|
configurable: true,
|
|
439
440
|
writable: true,
|
|
440
|
-
value: this.mutation(removeAuthorizationParam(
|
|
441
|
+
value: this.mutation(removeAuthorizationParam(accountAssignmentControllerCreate))
|
|
441
442
|
});
|
|
442
443
|
/**
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
Object.defineProperty(this, "
|
|
444
|
+
* Get account assignment by name V2
|
|
445
|
+
*/
|
|
446
|
+
Object.defineProperty(this, "getAccountAssignmentsByNameV2", {
|
|
446
447
|
enumerable: true,
|
|
447
448
|
configurable: true,
|
|
448
449
|
writable: true,
|
|
449
|
-
value: this.
|
|
450
|
+
value: this.query(removeAuthorizationParam(accountAssignmentControllerGet))
|
|
450
451
|
});
|
|
451
452
|
/**
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
Object.defineProperty(this, "
|
|
453
|
+
* Delete account assignment V2
|
|
454
|
+
*/
|
|
455
|
+
Object.defineProperty(this, "deleteAccountAssignmentV2", {
|
|
455
456
|
enumerable: true,
|
|
456
457
|
configurable: true,
|
|
457
458
|
writable: true,
|
|
458
|
-
value: this.mutation(removeAuthorizationParam(
|
|
459
|
+
value: this.mutation(removeAuthorizationParam(accountAssignmentControllerDelete))
|
|
459
460
|
});
|
|
460
461
|
/**
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
Object.defineProperty(this, "
|
|
462
|
+
* List folders V2
|
|
463
|
+
*/
|
|
464
|
+
Object.defineProperty(this, "listFoldersV2", {
|
|
464
465
|
enumerable: true,
|
|
465
466
|
configurable: true,
|
|
466
467
|
writable: true,
|
|
467
|
-
value: this.
|
|
468
|
+
value: this.query(removeAuthorizationParam(folderControllerListByFolderRef))
|
|
468
469
|
});
|
|
469
470
|
/**
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
Object.defineProperty(this, "
|
|
471
|
+
* Create folder V2
|
|
472
|
+
*/
|
|
473
|
+
Object.defineProperty(this, "createFoldersV2", {
|
|
473
474
|
enumerable: true,
|
|
474
475
|
configurable: true,
|
|
475
476
|
writable: true,
|
|
476
|
-
value: this.mutation(removeAuthorizationParam(
|
|
477
|
+
value: this.mutation(removeAuthorizationParam(folderControllerCreate))
|
|
477
478
|
});
|
|
478
479
|
/**
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
Object.defineProperty(this, "
|
|
480
|
+
* Get folder by name V2
|
|
481
|
+
*/
|
|
482
|
+
Object.defineProperty(this, "getFolderByNameV2", {
|
|
482
483
|
enumerable: true,
|
|
483
484
|
configurable: true,
|
|
484
485
|
writable: true,
|
|
485
|
-
value: this.
|
|
486
|
+
value: this.query(removeAuthorizationParam(folderControllerGet))
|
|
486
487
|
});
|
|
487
488
|
/**
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
Object.defineProperty(this, "
|
|
489
|
+
* Delete folder V2
|
|
490
|
+
*/
|
|
491
|
+
Object.defineProperty(this, "deleteFolderV2", {
|
|
491
492
|
enumerable: true,
|
|
492
493
|
configurable: true,
|
|
493
494
|
writable: true,
|
|
494
|
-
value: this.
|
|
495
|
+
value: this.mutation(removeAuthorizationParam(folderControllerDelete))
|
|
495
496
|
});
|
|
496
497
|
/**
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
Object.defineProperty(this, "
|
|
498
|
+
* List firewalls V2
|
|
499
|
+
*/
|
|
500
|
+
Object.defineProperty(this, "listFirewallsV2", {
|
|
500
501
|
enumerable: true,
|
|
501
502
|
configurable: true,
|
|
502
503
|
writable: true,
|
|
503
|
-
value: this.query(removeAuthorizationParam(
|
|
504
|
+
value: this.query(removeAuthorizationParam(firewallControllerList))
|
|
504
505
|
});
|
|
505
506
|
/**
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
Object.defineProperty(this, "
|
|
507
|
+
* Create firewall V2
|
|
508
|
+
*/
|
|
509
|
+
Object.defineProperty(this, "createFirewallV2", {
|
|
509
510
|
enumerable: true,
|
|
510
511
|
configurable: true,
|
|
511
512
|
writable: true,
|
|
512
|
-
value: this.mutation(removeAuthorizationParam(
|
|
513
|
+
value: this.mutation(removeAuthorizationParam(firewallControllerCreate))
|
|
513
514
|
});
|
|
514
515
|
/**
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
Object.defineProperty(this, "
|
|
516
|
+
* Get firewall by name V2
|
|
517
|
+
*/
|
|
518
|
+
Object.defineProperty(this, "getFirewallByNameV2", {
|
|
518
519
|
enumerable: true,
|
|
519
520
|
configurable: true,
|
|
520
521
|
writable: true,
|
|
521
|
-
value: this.
|
|
522
|
+
value: this.query(removeAuthorizationParam(firewallControllerGet))
|
|
522
523
|
});
|
|
523
524
|
/**
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
Object.defineProperty(this, "
|
|
525
|
+
* Delete firewall V2
|
|
526
|
+
*/
|
|
527
|
+
Object.defineProperty(this, "deleteFirewallV2", {
|
|
527
528
|
enumerable: true,
|
|
528
529
|
configurable: true,
|
|
529
530
|
writable: true,
|
|
530
|
-
value: this.mutation(removeAuthorizationParam(
|
|
531
|
+
value: this.mutation(removeAuthorizationParam(firewallControllerDelete))
|
|
531
532
|
});
|
|
532
533
|
/**
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
Object.defineProperty(this, "
|
|
534
|
+
* List DNS zones V2
|
|
535
|
+
*/
|
|
536
|
+
Object.defineProperty(this, "listDNSZonesV2", {
|
|
536
537
|
enumerable: true,
|
|
537
538
|
configurable: true,
|
|
538
539
|
writable: true,
|
|
539
|
-
value: this.query(removeAuthorizationParam(
|
|
540
|
+
value: this.query(removeAuthorizationParam(dnsZoneControllerListBy))
|
|
540
541
|
});
|
|
541
542
|
/**
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
Object.defineProperty(this, "
|
|
543
|
+
* Create DNS zone V2
|
|
544
|
+
*/
|
|
545
|
+
Object.defineProperty(this, "createDNSZonesV2", {
|
|
545
546
|
enumerable: true,
|
|
546
547
|
configurable: true,
|
|
547
548
|
writable: true,
|
|
548
|
-
value: this.
|
|
549
|
+
value: this.mutation(removeAuthorizationParam(dnsZoneControllerCreate))
|
|
549
550
|
});
|
|
550
551
|
/**
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
Object.defineProperty(this, "
|
|
552
|
+
* Get DNS zone by name V2
|
|
553
|
+
*/
|
|
554
|
+
Object.defineProperty(this, "getDNSZoneByNameV2", {
|
|
554
555
|
enumerable: true,
|
|
555
556
|
configurable: true,
|
|
556
557
|
writable: true,
|
|
557
|
-
value: this.
|
|
558
|
+
value: this.query(removeAuthorizationParam(dnsZoneControllerGet))
|
|
558
559
|
});
|
|
559
560
|
/**
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
Object.defineProperty(this, "
|
|
561
|
+
* Delete DNS zone V2
|
|
562
|
+
*/
|
|
563
|
+
Object.defineProperty(this, "deleteDNSZoneV2", {
|
|
563
564
|
enumerable: true,
|
|
564
565
|
configurable: true,
|
|
565
566
|
writable: true,
|
|
566
|
-
value: this.
|
|
567
|
+
value: this.mutation(removeAuthorizationParam(dnsZoneControllerDelete))
|
|
567
568
|
});
|
|
568
569
|
/**
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
Object.defineProperty(this, "
|
|
570
|
+
* Update DNS zone tags V2
|
|
571
|
+
*/
|
|
572
|
+
Object.defineProperty(this, "upsertDNSTagsV2", {
|
|
572
573
|
enumerable: true,
|
|
573
574
|
configurable: true,
|
|
574
575
|
writable: true,
|
|
575
|
-
value: this.mutation(removeAuthorizationParam(
|
|
576
|
+
value: this.mutation(removeAuthorizationParam(dnsZoneControllerPutTags))
|
|
576
577
|
});
|
|
577
578
|
/**
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
Object.defineProperty(this, "
|
|
579
|
+
* List DNS records V2
|
|
580
|
+
*/
|
|
581
|
+
Object.defineProperty(this, "listDNSRecordsV2", {
|
|
581
582
|
enumerable: true,
|
|
582
583
|
configurable: true,
|
|
583
584
|
writable: true,
|
|
584
|
-
value: this.
|
|
585
|
+
value: this.query(removeAuthorizationParam(dnsRecordControllerListBy))
|
|
585
586
|
});
|
|
586
587
|
/**
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
Object.defineProperty(this, "
|
|
588
|
+
* Create DNS record V2
|
|
589
|
+
*/
|
|
590
|
+
Object.defineProperty(this, "createDNSRecordsV2", {
|
|
590
591
|
enumerable: true,
|
|
591
592
|
configurable: true,
|
|
592
593
|
writable: true,
|
|
593
|
-
value: this.
|
|
594
|
+
value: this.mutation(removeAuthorizationParam(dnsRecordControllerCreate))
|
|
594
595
|
});
|
|
595
596
|
/**
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
Object.defineProperty(this, "
|
|
597
|
+
* Get DNS record by name V2
|
|
598
|
+
*/
|
|
599
|
+
Object.defineProperty(this, "getDNSRecordByNameV2", {
|
|
599
600
|
enumerable: true,
|
|
600
601
|
configurable: true,
|
|
601
602
|
writable: true,
|
|
602
|
-
value: this.
|
|
603
|
+
value: this.query(removeAuthorizationParam(dnsRecordControllerGet))
|
|
603
604
|
});
|
|
604
605
|
/**
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
Object.defineProperty(this, "
|
|
606
|
+
* Delete DNS record V2
|
|
607
|
+
*/
|
|
608
|
+
Object.defineProperty(this, "deleteDNSRecordV2", {
|
|
608
609
|
enumerable: true,
|
|
609
610
|
configurable: true,
|
|
610
611
|
writable: true,
|
|
611
|
-
value: this.
|
|
612
|
+
value: this.mutation(removeAuthorizationParam(dnsRecordControllerDelete))
|
|
612
613
|
});
|
|
613
614
|
/**
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
Object.defineProperty(this, "
|
|
615
|
+
* List customer policy attachments V2
|
|
616
|
+
*/
|
|
617
|
+
Object.defineProperty(this, "listCustomerPolicyAttachmentsV2", {
|
|
617
618
|
enumerable: true,
|
|
618
619
|
configurable: true,
|
|
619
620
|
writable: true,
|
|
620
|
-
value: this.
|
|
621
|
+
value: this.query(removeAuthorizationParam(customerPolicyAttachmentControllerList))
|
|
621
622
|
});
|
|
622
623
|
/**
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
Object.defineProperty(this, "
|
|
624
|
+
* Create customer policy attachment V2
|
|
625
|
+
*/
|
|
626
|
+
Object.defineProperty(this, "createCustomerPolicyAttachmentsV2", {
|
|
626
627
|
enumerable: true,
|
|
627
628
|
configurable: true,
|
|
628
629
|
writable: true,
|
|
629
|
-
value: this.
|
|
630
|
+
value: this.mutation(removeAuthorizationParam(customerPolicyAttachmentControllerCreate))
|
|
630
631
|
});
|
|
631
632
|
/**
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
Object.defineProperty(this, "
|
|
633
|
+
* Get customer policy attachment by name V2
|
|
634
|
+
*/
|
|
635
|
+
Object.defineProperty(this, "getCustomerPolicyAttachmentV2", {
|
|
635
636
|
enumerable: true,
|
|
636
637
|
configurable: true,
|
|
637
638
|
writable: true,
|
|
638
|
-
value: this.
|
|
639
|
+
value: this.query(removeAuthorizationParam(customerPolicyAttachmentControllerGet))
|
|
639
640
|
});
|
|
640
641
|
/**
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
Object.defineProperty(this, "
|
|
642
|
+
* Delete customer policy attachment V2
|
|
643
|
+
*/
|
|
644
|
+
Object.defineProperty(this, "deleteCustomerPolicyAttachmentV2", {
|
|
644
645
|
enumerable: true,
|
|
645
646
|
configurable: true,
|
|
646
647
|
writable: true,
|
|
647
|
-
value: this.mutation(removeAuthorizationParam(
|
|
648
|
+
value: this.mutation(removeAuthorizationParam(customerPolicyAttachmentControllerDelete))
|
|
648
649
|
});
|
|
649
650
|
/**
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
Object.defineProperty(this, "
|
|
651
|
+
* List CIDRs V2
|
|
652
|
+
*/
|
|
653
|
+
Object.defineProperty(this, "listCIDRSV2", {
|
|
653
654
|
enumerable: true,
|
|
654
655
|
configurable: true,
|
|
655
656
|
writable: true,
|
|
656
|
-
value: this.query(removeAuthorizationParam(
|
|
657
|
+
value: this.query(removeAuthorizationParam(cidrControllerList))
|
|
657
658
|
});
|
|
658
659
|
/**
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
Object.defineProperty(this, "
|
|
660
|
+
* Create CIDR V2
|
|
661
|
+
*/
|
|
662
|
+
Object.defineProperty(this, "createCIDRSV2", {
|
|
662
663
|
enumerable: true,
|
|
663
664
|
configurable: true,
|
|
664
665
|
writable: true,
|
|
665
|
-
value: this.mutation(removeAuthorizationParam(
|
|
666
|
+
value: this.mutation(removeAuthorizationParam(cidrControllerCreate))
|
|
666
667
|
});
|
|
667
668
|
/**
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
Object.defineProperty(this, "
|
|
669
|
+
* Get CIDR by name V2
|
|
670
|
+
*/
|
|
671
|
+
Object.defineProperty(this, "getCIDRByNameV2", {
|
|
671
672
|
enumerable: true,
|
|
672
673
|
configurable: true,
|
|
673
674
|
writable: true,
|
|
674
|
-
value: this.query(removeAuthorizationParam(
|
|
675
|
+
value: this.query(removeAuthorizationParam(cidrControllerGet))
|
|
675
676
|
});
|
|
676
677
|
/**
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
Object.defineProperty(this, "
|
|
678
|
+
* Delete CIDR V2
|
|
679
|
+
*/
|
|
680
|
+
Object.defineProperty(this, "deleteCIDRV2", {
|
|
680
681
|
enumerable: true,
|
|
681
682
|
configurable: true,
|
|
682
683
|
writable: true,
|
|
683
|
-
value: this.mutation(removeAuthorizationParam(
|
|
684
|
+
value: this.mutation(removeAuthorizationParam(cidrControllerDelete))
|
|
684
685
|
});
|
|
685
686
|
/**
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
Object.defineProperty(this, "
|
|
687
|
+
* Update CIDR tags V2
|
|
688
|
+
*/
|
|
689
|
+
Object.defineProperty(this, "upsertCIDRTagsV2", {
|
|
689
690
|
enumerable: true,
|
|
690
691
|
configurable: true,
|
|
691
692
|
writable: true,
|
|
692
|
-
value: this.
|
|
693
|
+
value: this.mutation(removeAuthorizationParam(cidrControllerPutTags))
|
|
693
694
|
});
|
|
694
695
|
/**
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
Object.defineProperty(this, "
|
|
696
|
+
* List certificates V2
|
|
697
|
+
*/
|
|
698
|
+
Object.defineProperty(this, "listCertificatesV2", {
|
|
698
699
|
enumerable: true,
|
|
699
700
|
configurable: true,
|
|
700
701
|
writable: true,
|
|
701
|
-
value: this.
|
|
702
|
+
value: this.query(removeAuthorizationParam(certificateControllerList))
|
|
702
703
|
});
|
|
703
704
|
/**
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
Object.defineProperty(this, "
|
|
707
|
-
enumerable: true,
|
|
708
|
-
configurable: true,
|
|
709
|
-
writable: true,
|
|
710
|
-
value: this.mutation(removeAuthorizationParam(permissionSetControllerDelete))
|
|
711
|
-
});
|
|
712
|
-
/**
|
|
713
|
-
* List Account assignment by Foundation Namespace V2
|
|
714
|
-
*/
|
|
715
|
-
Object.defineProperty(this, "listAccountAssignments", {
|
|
716
|
-
enumerable: true,
|
|
717
|
-
configurable: true,
|
|
718
|
-
writable: true,
|
|
719
|
-
value: this.query(removeAuthorizationParam(accountAssignmentControllerList))
|
|
720
|
-
});
|
|
721
|
-
/**
|
|
722
|
-
* Create a Account Assignment V2
|
|
723
|
-
*/
|
|
724
|
-
Object.defineProperty(this, "createAccountAssignment", {
|
|
725
|
-
enumerable: true,
|
|
726
|
-
configurable: true,
|
|
727
|
-
writable: true,
|
|
728
|
-
value: this.mutation(removeAuthorizationParam(accountAssignmentControllerCreate))
|
|
729
|
-
});
|
|
730
|
-
/**
|
|
731
|
-
* Delete a Account Assignment
|
|
732
|
-
*/
|
|
733
|
-
Object.defineProperty(this, "deleteAccountAssignment", {
|
|
734
|
-
enumerable: true,
|
|
735
|
-
configurable: true,
|
|
736
|
-
writable: true,
|
|
737
|
-
value: this.mutation(removeAuthorizationParam(accountAssignmentControllerDelete))
|
|
738
|
-
});
|
|
739
|
-
/**
|
|
740
|
-
* Update a network tags V2
|
|
741
|
-
*/
|
|
742
|
-
Object.defineProperty(this, "updateNetworkTagsV2", {
|
|
743
|
-
enumerable: true,
|
|
744
|
-
configurable: true,
|
|
745
|
-
writable: true,
|
|
746
|
-
value: this.mutation(removeAuthorizationParam(networkControllerPutTags))
|
|
747
|
-
});
|
|
748
|
-
/**
|
|
749
|
-
* Update network name
|
|
750
|
-
*/
|
|
751
|
-
Object.defineProperty(this, "updateNetworkNameV2", {
|
|
752
|
-
enumerable: true,
|
|
753
|
-
configurable: true,
|
|
754
|
-
writable: true,
|
|
755
|
-
value: this.mutation(removeAuthorizationParam(networkControllerPutNetworkName))
|
|
756
|
-
});
|
|
757
|
-
/**
|
|
758
|
-
* List networks V2
|
|
759
|
-
*/
|
|
760
|
-
Object.defineProperty(this, "listNetworksV2", {
|
|
761
|
-
enumerable: true,
|
|
762
|
-
configurable: true,
|
|
763
|
-
writable: true,
|
|
764
|
-
value: this.query(removeAuthorizationParam(networkControllerList))
|
|
765
|
-
});
|
|
766
|
-
/**
|
|
767
|
-
* Update network name
|
|
768
|
-
*/
|
|
769
|
-
Object.defineProperty(this, "createNetworkV2", {
|
|
770
|
-
enumerable: true,
|
|
771
|
-
configurable: true,
|
|
772
|
-
writable: true,
|
|
773
|
-
value: this.mutation(removeAuthorizationParam(networkControllerCreate))
|
|
774
|
-
});
|
|
775
|
-
/**
|
|
776
|
-
* List networks V2
|
|
777
|
-
*/
|
|
778
|
-
Object.defineProperty(this, "getNetworkV2", {
|
|
779
|
-
enumerable: true,
|
|
780
|
-
configurable: true,
|
|
781
|
-
writable: true,
|
|
782
|
-
value: this.query(removeAuthorizationParam(networkControllerGet))
|
|
783
|
-
});
|
|
784
|
-
/**
|
|
785
|
-
* Delete a Network V2
|
|
786
|
-
*/
|
|
787
|
-
Object.defineProperty(this, "deleteNetworkV2", {
|
|
788
|
-
enumerable: true,
|
|
789
|
-
configurable: true,
|
|
790
|
-
writable: true,
|
|
791
|
-
value: this.mutation(removeAuthorizationParam(networkControllerDelete))
|
|
792
|
-
});
|
|
793
|
-
/**
|
|
794
|
-
* Update project tags V2
|
|
795
|
-
*/
|
|
796
|
-
Object.defineProperty(this, "updateProjectTagsV2", {
|
|
797
|
-
enumerable: true,
|
|
798
|
-
configurable: true,
|
|
799
|
-
writable: true,
|
|
800
|
-
value: this.mutation(removeAuthorizationParam(projectControllerPutTags))
|
|
801
|
-
});
|
|
802
|
-
/**
|
|
803
|
-
* Update project name V2
|
|
804
|
-
*/
|
|
805
|
-
Object.defineProperty(this, "updateProjectNameV2", {
|
|
806
|
-
enumerable: true,
|
|
807
|
-
configurable: true,
|
|
808
|
-
writable: true,
|
|
809
|
-
value: this.mutation(removeAuthorizationParam(projectControllerPutName))
|
|
810
|
-
});
|
|
811
|
-
/**
|
|
812
|
-
* Update folder tags V2
|
|
813
|
-
*/
|
|
814
|
-
Object.defineProperty(this, "updateFolderTagsV2", {
|
|
815
|
-
enumerable: true,
|
|
816
|
-
configurable: true,
|
|
817
|
-
writable: true,
|
|
818
|
-
value: this.mutation(removeAuthorizationParam(folderControllerPutTags))
|
|
819
|
-
});
|
|
820
|
-
/**
|
|
821
|
-
* Update folder name V2
|
|
822
|
-
*/
|
|
823
|
-
Object.defineProperty(this, "updateFolderNameV2", {
|
|
824
|
-
enumerable: true,
|
|
825
|
-
configurable: true,
|
|
826
|
-
writable: true,
|
|
827
|
-
value: this.mutation(removeAuthorizationParam(folderControllerPutName))
|
|
828
|
-
});
|
|
829
|
-
/**
|
|
830
|
-
* Update dns records ttl V2
|
|
831
|
-
*/
|
|
832
|
-
Object.defineProperty(this, "updateDNSRecordsTTLV2", {
|
|
833
|
-
enumerable: true,
|
|
834
|
-
configurable: true,
|
|
835
|
-
writable: true,
|
|
836
|
-
value: this.mutation(removeAuthorizationParam(dnsRecordControllerPutTtl))
|
|
837
|
-
});
|
|
838
|
-
/**
|
|
839
|
-
* Update dns records V2
|
|
840
|
-
*/
|
|
841
|
-
Object.defineProperty(this, "updateDNSRecordsV2", {
|
|
842
|
-
enumerable: true,
|
|
843
|
-
configurable: true,
|
|
844
|
-
writable: true,
|
|
845
|
-
value: this.mutation(removeAuthorizationParam(dnsRecordControllerPutRecords))
|
|
846
|
-
});
|
|
847
|
-
/**
|
|
848
|
-
* Update certificates tags V2
|
|
849
|
-
*/
|
|
850
|
-
Object.defineProperty(this, "updateCertificatesTagsV2", {
|
|
851
|
-
enumerable: true,
|
|
852
|
-
configurable: true,
|
|
853
|
-
writable: true,
|
|
854
|
-
value: this.mutation(removeAuthorizationParam(certificateControllerPutTags))
|
|
855
|
-
});
|
|
856
|
-
/**
|
|
857
|
-
* List vpns V2
|
|
858
|
-
*/
|
|
859
|
-
Object.defineProperty(this, "listVPNSV2", {
|
|
860
|
-
enumerable: true,
|
|
861
|
-
configurable: true,
|
|
862
|
-
writable: true,
|
|
863
|
-
value: this.query(removeAuthorizationParam(vpnControllerList))
|
|
864
|
-
});
|
|
865
|
-
/**
|
|
866
|
-
* Create VPN V2
|
|
867
|
-
*/
|
|
868
|
-
Object.defineProperty(this, "createVPNV2", {
|
|
869
|
-
enumerable: true,
|
|
870
|
-
configurable: true,
|
|
871
|
-
writable: true,
|
|
872
|
-
value: this.mutation(removeAuthorizationParam(vpnControllerCreate))
|
|
873
|
-
});
|
|
874
|
-
/**
|
|
875
|
-
* Update VPN tags V2
|
|
876
|
-
*/
|
|
877
|
-
Object.defineProperty(this, "updateVPNSTagsV2", {
|
|
878
|
-
enumerable: true,
|
|
879
|
-
configurable: true,
|
|
880
|
-
writable: true,
|
|
881
|
-
value: this.mutation(removeAuthorizationParam(vpnControllerPutTags))
|
|
882
|
-
});
|
|
883
|
-
/**
|
|
884
|
-
* List projects V2
|
|
885
|
-
*/
|
|
886
|
-
Object.defineProperty(this, "listProjectsV2", {
|
|
887
|
-
enumerable: true,
|
|
888
|
-
configurable: true,
|
|
889
|
-
writable: true,
|
|
890
|
-
value: this.query(removeAuthorizationParam(projectControllerListByFolderRef))
|
|
891
|
-
});
|
|
892
|
-
/**
|
|
893
|
-
* Create project V2
|
|
894
|
-
*/
|
|
895
|
-
Object.defineProperty(this, "createProjectV2", {
|
|
896
|
-
enumerable: true,
|
|
897
|
-
configurable: true,
|
|
898
|
-
writable: true,
|
|
899
|
-
value: this.mutation(removeAuthorizationParam(projectControllerCreate))
|
|
900
|
-
});
|
|
901
|
-
/**
|
|
902
|
-
* List managed policy attachments V2
|
|
903
|
-
*/
|
|
904
|
-
Object.defineProperty(this, "listManagedPolicyAttachmentsV2", {
|
|
905
|
-
enumerable: true,
|
|
906
|
-
configurable: true,
|
|
907
|
-
writable: true,
|
|
908
|
-
value: this.query(removeAuthorizationParam(managedPolicyAttachmentControllerList))
|
|
909
|
-
});
|
|
910
|
-
/**
|
|
911
|
-
* Create managed policy attachment V2
|
|
912
|
-
*/
|
|
913
|
-
Object.defineProperty(this, "createManagedPolicyAttachmentV2", {
|
|
914
|
-
enumerable: true,
|
|
915
|
-
configurable: true,
|
|
916
|
-
writable: true,
|
|
917
|
-
value: this.mutation(removeAuthorizationParam(managedPolicyAttachmentControllerCreate))
|
|
918
|
-
});
|
|
919
|
-
/**
|
|
920
|
-
* List identity store users V2
|
|
921
|
-
*/
|
|
922
|
-
Object.defineProperty(this, "listIdentityStoreUsersV2", {
|
|
923
|
-
enumerable: true,
|
|
924
|
-
configurable: true,
|
|
925
|
-
writable: true,
|
|
926
|
-
value: this.query(removeAuthorizationParam(identityStoreUserControllerList))
|
|
927
|
-
});
|
|
928
|
-
/**
|
|
929
|
-
* Create identity store users V2
|
|
930
|
-
*/
|
|
931
|
-
Object.defineProperty(this, "createIdentityStoreUsersV2", {
|
|
932
|
-
enumerable: true,
|
|
933
|
-
configurable: true,
|
|
934
|
-
writable: true,
|
|
935
|
-
value: this.mutation(removeAuthorizationParam(identityStoreUserControllerCreate))
|
|
936
|
-
});
|
|
937
|
-
/**
|
|
938
|
-
* List identity store memberships V2
|
|
939
|
-
*/
|
|
940
|
-
Object.defineProperty(this, "listIdentityStoreMembershipsV2", {
|
|
941
|
-
enumerable: true,
|
|
942
|
-
configurable: true,
|
|
943
|
-
writable: true,
|
|
944
|
-
value: this.query(removeAuthorizationParam(identityStoreMembershipControllerList))
|
|
945
|
-
});
|
|
946
|
-
/**
|
|
947
|
-
* Create identity store memberships V2
|
|
948
|
-
*/
|
|
949
|
-
Object.defineProperty(this, "createIdentityStoreMembershipsV2", {
|
|
950
|
-
enumerable: true,
|
|
951
|
-
configurable: true,
|
|
952
|
-
writable: true,
|
|
953
|
-
value: this.mutation(removeAuthorizationParam(identityStoreMembershipControllerCreate))
|
|
954
|
-
});
|
|
955
|
-
/**
|
|
956
|
-
* List identity centers V2
|
|
957
|
-
*/
|
|
958
|
-
Object.defineProperty(this, "listIdentityCentersV2", {
|
|
959
|
-
enumerable: true,
|
|
960
|
-
configurable: true,
|
|
961
|
-
writable: true,
|
|
962
|
-
value: this.query(removeAuthorizationParam(identityCenterControllerList))
|
|
963
|
-
});
|
|
964
|
-
/**
|
|
965
|
-
* Create identity center V2
|
|
966
|
-
*/
|
|
967
|
-
Object.defineProperty(this, "createIdentityCenterV2", {
|
|
968
|
-
enumerable: true,
|
|
969
|
-
configurable: true,
|
|
970
|
-
writable: true,
|
|
971
|
-
value: this.mutation(removeAuthorizationParam(identityCenterControllerCreate))
|
|
972
|
-
});
|
|
973
|
-
/**
|
|
974
|
-
* List folders V2
|
|
975
|
-
*/
|
|
976
|
-
Object.defineProperty(this, "listFoldersV2", {
|
|
977
|
-
enumerable: true,
|
|
978
|
-
configurable: true,
|
|
979
|
-
writable: true,
|
|
980
|
-
value: this.query(removeAuthorizationParam(folderControllerListByFolderRef))
|
|
981
|
-
});
|
|
982
|
-
/**
|
|
983
|
-
* Create folders V2
|
|
984
|
-
*/
|
|
985
|
-
Object.defineProperty(this, "createFoldersV2", {
|
|
986
|
-
enumerable: true,
|
|
987
|
-
configurable: true,
|
|
988
|
-
writable: true,
|
|
989
|
-
value: this.mutation(removeAuthorizationParam(folderControllerCreate))
|
|
990
|
-
});
|
|
991
|
-
/**
|
|
992
|
-
* List firewalls V2
|
|
993
|
-
*/
|
|
994
|
-
Object.defineProperty(this, "listFirewallsV2", {
|
|
995
|
-
enumerable: true,
|
|
996
|
-
configurable: true,
|
|
997
|
-
writable: true,
|
|
998
|
-
value: this.query(removeAuthorizationParam(firewallControllerList))
|
|
999
|
-
});
|
|
1000
|
-
/**
|
|
1001
|
-
* Create firewall V2
|
|
1002
|
-
*/
|
|
1003
|
-
Object.defineProperty(this, "createFirewallV2", {
|
|
1004
|
-
enumerable: true,
|
|
1005
|
-
configurable: true,
|
|
1006
|
-
writable: true,
|
|
1007
|
-
value: this.mutation(removeAuthorizationParam(firewallControllerCreate))
|
|
1008
|
-
});
|
|
1009
|
-
/**
|
|
1010
|
-
* List DNS zones V2
|
|
1011
|
-
*/
|
|
1012
|
-
Object.defineProperty(this, "listDNSZonesV2", {
|
|
1013
|
-
enumerable: true,
|
|
1014
|
-
configurable: true,
|
|
1015
|
-
writable: true,
|
|
1016
|
-
value: this.query(removeAuthorizationParam(dnsZoneControllerListBy))
|
|
1017
|
-
});
|
|
1018
|
-
/**
|
|
1019
|
-
* Create DNS zones V2
|
|
1020
|
-
*/
|
|
1021
|
-
Object.defineProperty(this, "createDNSZonesV2", {
|
|
1022
|
-
enumerable: true,
|
|
1023
|
-
configurable: true,
|
|
1024
|
-
writable: true,
|
|
1025
|
-
value: this.mutation(removeAuthorizationParam(dnsZoneControllerCreate))
|
|
1026
|
-
});
|
|
1027
|
-
/**
|
|
1028
|
-
* List DNS records V2
|
|
1029
|
-
*/
|
|
1030
|
-
Object.defineProperty(this, "listDNSRecordsV2", {
|
|
1031
|
-
enumerable: true,
|
|
1032
|
-
configurable: true,
|
|
1033
|
-
writable: true,
|
|
1034
|
-
value: this.query(removeAuthorizationParam(dnsRecordControllerListBy))
|
|
1035
|
-
});
|
|
1036
|
-
/**
|
|
1037
|
-
* Create DNS records V2
|
|
1038
|
-
*/
|
|
1039
|
-
Object.defineProperty(this, "createDNSRecordsV2", {
|
|
1040
|
-
enumerable: true,
|
|
1041
|
-
configurable: true,
|
|
1042
|
-
writable: true,
|
|
1043
|
-
value: this.mutation(removeAuthorizationParam(dnsRecordControllerCreate))
|
|
1044
|
-
});
|
|
1045
|
-
/**
|
|
1046
|
-
* List Customer Policy Attachments V2
|
|
1047
|
-
*/
|
|
1048
|
-
Object.defineProperty(this, "listCustomerPolicyAttachmentsV2", {
|
|
1049
|
-
enumerable: true,
|
|
1050
|
-
configurable: true,
|
|
1051
|
-
writable: true,
|
|
1052
|
-
value: this.query(removeAuthorizationParam(customerPolicyAttachmentControllerList))
|
|
1053
|
-
});
|
|
1054
|
-
/**
|
|
1055
|
-
* Create Customer Policy Attachments V2
|
|
1056
|
-
*/
|
|
1057
|
-
Object.defineProperty(this, "createCustomerPolicyAttachmentsV2", {
|
|
1058
|
-
enumerable: true,
|
|
1059
|
-
configurable: true,
|
|
1060
|
-
writable: true,
|
|
1061
|
-
value: this.mutation(removeAuthorizationParam(customerPolicyAttachmentControllerCreate))
|
|
1062
|
-
});
|
|
1063
|
-
/**
|
|
1064
|
-
* List CIDRS V2
|
|
1065
|
-
*/
|
|
1066
|
-
Object.defineProperty(this, "listCIDRSV2", {
|
|
1067
|
-
enumerable: true,
|
|
1068
|
-
configurable: true,
|
|
1069
|
-
writable: true,
|
|
1070
|
-
value: this.query(removeAuthorizationParam(cidrControllerList))
|
|
1071
|
-
});
|
|
1072
|
-
/**
|
|
1073
|
-
* Create CIDRS V2
|
|
1074
|
-
*/
|
|
1075
|
-
Object.defineProperty(this, "createCIDRSV2", {
|
|
1076
|
-
enumerable: true,
|
|
1077
|
-
configurable: true,
|
|
1078
|
-
writable: true,
|
|
1079
|
-
value: this.mutation(removeAuthorizationParam(cidrControllerCreate))
|
|
1080
|
-
});
|
|
1081
|
-
/**
|
|
1082
|
-
* Update CIDRS tags V2
|
|
1083
|
-
*/
|
|
1084
|
-
Object.defineProperty(this, "upsertCIDRTagsV2", {
|
|
1085
|
-
enumerable: true,
|
|
1086
|
-
configurable: true,
|
|
1087
|
-
writable: true,
|
|
1088
|
-
value: this.mutation(removeAuthorizationParam(cidrControllerPutTags))
|
|
1089
|
-
});
|
|
1090
|
-
/**
|
|
1091
|
-
* List certificates V2
|
|
1092
|
-
*/
|
|
1093
|
-
Object.defineProperty(this, "listCertificatesV2", {
|
|
1094
|
-
enumerable: true,
|
|
1095
|
-
configurable: true,
|
|
1096
|
-
writable: true,
|
|
1097
|
-
value: this.query(removeAuthorizationParam(certificateControllerList))
|
|
1098
|
-
});
|
|
1099
|
-
/**
|
|
1100
|
-
* Create certificates V2
|
|
1101
|
-
*/
|
|
1102
|
-
Object.defineProperty(this, "createCertificatesV2", {
|
|
1103
|
-
enumerable: true,
|
|
1104
|
-
configurable: true,
|
|
1105
|
-
writable: true,
|
|
1106
|
-
value: this.mutation(removeAuthorizationParam(certificateControllerCreate))
|
|
1107
|
-
});
|
|
1108
|
-
/**
|
|
1109
|
-
* List OIDC V2
|
|
1110
|
-
*/
|
|
1111
|
-
Object.defineProperty(this, "listOIDCV2", {
|
|
1112
|
-
enumerable: true,
|
|
1113
|
-
configurable: true,
|
|
1114
|
-
writable: true,
|
|
1115
|
-
value: this.query(removeAuthorizationParam(oidcControllerGet))
|
|
1116
|
-
});
|
|
1117
|
-
/**
|
|
1118
|
-
* Update DNS tags V2
|
|
1119
|
-
*/
|
|
1120
|
-
Object.defineProperty(this, "upsertDNSTagsV2", {
|
|
1121
|
-
enumerable: true,
|
|
1122
|
-
configurable: true,
|
|
1123
|
-
writable: true,
|
|
1124
|
-
value: this.mutation(removeAuthorizationParam(dnsZoneControllerPutTags))
|
|
1125
|
-
});
|
|
1126
|
-
/**
|
|
1127
|
-
* GET VPNS by name V2
|
|
1128
|
-
*/
|
|
1129
|
-
Object.defineProperty(this, "getVPNSByNameV2", {
|
|
1130
|
-
enumerable: true,
|
|
1131
|
-
configurable: true,
|
|
1132
|
-
writable: true,
|
|
1133
|
-
value: this.query(removeAuthorizationParam(vpnControllerGet))
|
|
1134
|
-
});
|
|
1135
|
-
/**
|
|
1136
|
-
* Delete VPNS V2
|
|
1137
|
-
*/
|
|
1138
|
-
Object.defineProperty(this, "deleteVPNSV2", {
|
|
1139
|
-
enumerable: true,
|
|
1140
|
-
configurable: true,
|
|
1141
|
-
writable: true,
|
|
1142
|
-
value: this.mutation(removeAuthorizationParam(vpnControllerDelete))
|
|
1143
|
-
});
|
|
1144
|
-
/**
|
|
1145
|
-
* GET Project by name V2
|
|
1146
|
-
*/
|
|
1147
|
-
Object.defineProperty(this, "getProjectByNameV2", {
|
|
1148
|
-
enumerable: true,
|
|
1149
|
-
configurable: true,
|
|
1150
|
-
writable: true,
|
|
1151
|
-
value: this.query(removeAuthorizationParam(projectControllerGet))
|
|
1152
|
-
});
|
|
1153
|
-
/**
|
|
1154
|
-
* Delete Project V2
|
|
1155
|
-
*/
|
|
1156
|
-
Object.defineProperty(this, "deleteProjectV2", {
|
|
1157
|
-
enumerable: true,
|
|
1158
|
-
configurable: true,
|
|
1159
|
-
writable: true,
|
|
1160
|
-
value: this.mutation(removeAuthorizationParam(projectControllerDelete))
|
|
1161
|
-
});
|
|
1162
|
-
/**
|
|
1163
|
-
* GET Permission set by name V2
|
|
1164
|
-
*/
|
|
1165
|
-
Object.defineProperty(this, "getPermissionSetByNameV2", {
|
|
1166
|
-
enumerable: true,
|
|
1167
|
-
configurable: true,
|
|
1168
|
-
writable: true,
|
|
1169
|
-
value: this.query(removeAuthorizationParam(permissionSetControllerGet))
|
|
1170
|
-
});
|
|
1171
|
-
/**
|
|
1172
|
-
* Get managed policy attachment by name V2
|
|
1173
|
-
*/
|
|
1174
|
-
Object.defineProperty(this, "getManagedPolicyAttachmentByNameV2", {
|
|
1175
|
-
enumerable: true,
|
|
1176
|
-
configurable: true,
|
|
1177
|
-
writable: true,
|
|
1178
|
-
value: this.query(removeAuthorizationParam(managedPolicyAttachmentControllerGet))
|
|
1179
|
-
});
|
|
1180
|
-
/**
|
|
1181
|
-
* Delete managed policy attachment V2
|
|
1182
|
-
*/
|
|
1183
|
-
Object.defineProperty(this, "deleteManagedPolicyAttachmentV2", {
|
|
1184
|
-
enumerable: true,
|
|
1185
|
-
configurable: true,
|
|
1186
|
-
writable: true,
|
|
1187
|
-
value: this.mutation(removeAuthorizationParam(managedPolicyAttachmentControllerDelete))
|
|
1188
|
-
});
|
|
1189
|
-
/**
|
|
1190
|
-
* Get identity store user by name V2
|
|
1191
|
-
*/
|
|
1192
|
-
Object.defineProperty(this, "getIdentityStoreUserByNameV2", {
|
|
1193
|
-
enumerable: true,
|
|
1194
|
-
configurable: true,
|
|
1195
|
-
writable: true,
|
|
1196
|
-
value: this.query(removeAuthorizationParam(identityStoreUserControllerGet))
|
|
1197
|
-
});
|
|
1198
|
-
/**
|
|
1199
|
-
* Delete identity store user V2
|
|
1200
|
-
*/
|
|
1201
|
-
Object.defineProperty(this, "deleteIdentityStoreUserV2", {
|
|
1202
|
-
enumerable: true,
|
|
1203
|
-
configurable: true,
|
|
1204
|
-
writable: true,
|
|
1205
|
-
value: this.mutation(removeAuthorizationParam(identityStoreUserControllerDelete))
|
|
1206
|
-
});
|
|
1207
|
-
/**
|
|
1208
|
-
* Get identity store membership by name V2
|
|
1209
|
-
*/
|
|
1210
|
-
Object.defineProperty(this, "getIdentityStoreMembershipByNameV2", {
|
|
705
|
+
* Create certificate V2
|
|
706
|
+
*/
|
|
707
|
+
Object.defineProperty(this, "createCertificatesV2", {
|
|
1211
708
|
enumerable: true,
|
|
1212
709
|
configurable: true,
|
|
1213
710
|
writable: true,
|
|
1214
|
-
value: this.
|
|
711
|
+
value: this.mutation(removeAuthorizationParam(certificateControllerCreate))
|
|
1215
712
|
});
|
|
1216
713
|
/**
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
Object.defineProperty(this, "
|
|
714
|
+
* Get certificate by name V2
|
|
715
|
+
*/
|
|
716
|
+
Object.defineProperty(this, "getCertificateByNameV2", {
|
|
1220
717
|
enumerable: true,
|
|
1221
718
|
configurable: true,
|
|
1222
719
|
writable: true,
|
|
1223
|
-
value: this.
|
|
720
|
+
value: this.query(removeAuthorizationParam(certificateControllerGet))
|
|
1224
721
|
});
|
|
1225
722
|
/**
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
Object.defineProperty(this, "
|
|
723
|
+
* Delete certificate V2
|
|
724
|
+
*/
|
|
725
|
+
Object.defineProperty(this, "deleteCertificateV2", {
|
|
1229
726
|
enumerable: true,
|
|
1230
727
|
configurable: true,
|
|
1231
728
|
writable: true,
|
|
1232
|
-
value: this.
|
|
729
|
+
value: this.mutation(removeAuthorizationParam(certificateControllerDelete))
|
|
1233
730
|
});
|
|
1234
731
|
/**
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
Object.defineProperty(this, "
|
|
732
|
+
* Get OIDC V2
|
|
733
|
+
*/
|
|
734
|
+
Object.defineProperty(this, "getOIDCV2", {
|
|
1238
735
|
enumerable: true,
|
|
1239
736
|
configurable: true,
|
|
1240
737
|
writable: true,
|
|
1241
|
-
value: this.query(removeAuthorizationParam(
|
|
738
|
+
value: this.query(removeAuthorizationParam(oidcControllerGet))
|
|
1242
739
|
});
|
|
1243
740
|
/**
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
Object.defineProperty(this, "
|
|
741
|
+
* List OIDC V2
|
|
742
|
+
*/
|
|
743
|
+
Object.defineProperty(this, "listOIDCV2", {
|
|
1247
744
|
enumerable: true,
|
|
1248
745
|
configurable: true,
|
|
1249
746
|
writable: true,
|
|
1250
|
-
value: this.
|
|
747
|
+
value: this.query(removeAuthorizationParam(oidcControllerGet))
|
|
1251
748
|
});
|
|
1252
749
|
/**
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
Object.defineProperty(this, "
|
|
750
|
+
* Get Finops V2
|
|
751
|
+
*/
|
|
752
|
+
Object.defineProperty(this, "getFinopsV2", {
|
|
1256
753
|
enumerable: true,
|
|
1257
754
|
configurable: true,
|
|
1258
755
|
writable: true,
|
|
1259
|
-
value: this.query(removeAuthorizationParam(
|
|
756
|
+
value: this.query(removeAuthorizationParam(finOpsControllerGet))
|
|
1260
757
|
});
|
|
1261
758
|
/**
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
Object.defineProperty(this, "
|
|
759
|
+
* Create foundation V2
|
|
760
|
+
*/
|
|
761
|
+
Object.defineProperty(this, "createFoundationV2", {
|
|
1265
762
|
enumerable: true,
|
|
1266
763
|
configurable: true,
|
|
1267
764
|
writable: true,
|
|
1268
|
-
value: this.mutation(removeAuthorizationParam(
|
|
765
|
+
value: this.mutation(removeAuthorizationParam(foundationControllerCreate))
|
|
1269
766
|
});
|
|
1270
767
|
/**
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
Object.defineProperty(this, "
|
|
768
|
+
* List foundations V2
|
|
769
|
+
*/
|
|
770
|
+
Object.defineProperty(this, "listFoundationsV2", {
|
|
1274
771
|
enumerable: true,
|
|
1275
772
|
configurable: true,
|
|
1276
773
|
writable: true,
|
|
1277
|
-
value: this.query(removeAuthorizationParam(
|
|
774
|
+
value: this.query(removeAuthorizationParam(foundationControllerList))
|
|
1278
775
|
});
|
|
1279
776
|
/**
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
Object.defineProperty(this, "
|
|
777
|
+
* Get foundation V2
|
|
778
|
+
*/
|
|
779
|
+
Object.defineProperty(this, "getFoundationV2", {
|
|
1283
780
|
enumerable: true,
|
|
1284
781
|
configurable: true,
|
|
1285
782
|
writable: true,
|
|
1286
|
-
value: this.
|
|
783
|
+
value: this.query(removeAuthorizationParam(foundationControllerGet))
|
|
1287
784
|
});
|
|
1288
785
|
/**
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
Object.defineProperty(this, "
|
|
786
|
+
* Update foundation security project tags V2
|
|
787
|
+
*/
|
|
788
|
+
Object.defineProperty(this, "updateFoundationSecurityTagsV2", {
|
|
1292
789
|
enumerable: true,
|
|
1293
790
|
configurable: true,
|
|
1294
791
|
writable: true,
|
|
1295
|
-
value: this.
|
|
792
|
+
value: this.mutation(removeAuthorizationParam(foundationControllerPutSecProjectTags))
|
|
1296
793
|
});
|
|
1297
794
|
/**
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
Object.defineProperty(this, "
|
|
795
|
+
* List boundaries V2
|
|
796
|
+
*/
|
|
797
|
+
Object.defineProperty(this, "listBoundariesV2", {
|
|
1301
798
|
enumerable: true,
|
|
1302
799
|
configurable: true,
|
|
1303
800
|
writable: true,
|
|
1304
|
-
value: this.
|
|
801
|
+
value: this.query(removeAuthorizationParam(boundaryControllerList))
|
|
1305
802
|
});
|
|
1306
803
|
/**
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
Object.defineProperty(this, "
|
|
804
|
+
* Create boundary V2
|
|
805
|
+
*/
|
|
806
|
+
Object.defineProperty(this, "createBoundaryV2", {
|
|
1310
807
|
enumerable: true,
|
|
1311
808
|
configurable: true,
|
|
1312
809
|
writable: true,
|
|
1313
|
-
value: this.
|
|
810
|
+
value: this.mutation(removeAuthorizationParam(boundaryControllerCreate))
|
|
1314
811
|
});
|
|
1315
812
|
/**
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
Object.defineProperty(this, "
|
|
813
|
+
* Get boundary by name V2
|
|
814
|
+
*/
|
|
815
|
+
Object.defineProperty(this, "getBoundaryByNameV2", {
|
|
1319
816
|
enumerable: true,
|
|
1320
817
|
configurable: true,
|
|
1321
818
|
writable: true,
|
|
1322
|
-
value: this.
|
|
819
|
+
value: this.query(removeAuthorizationParam(boundaryControllerGet))
|
|
1323
820
|
});
|
|
1324
821
|
/**
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
Object.defineProperty(this, "
|
|
822
|
+
* Delete boundary V2
|
|
823
|
+
*/
|
|
824
|
+
Object.defineProperty(this, "deleteBoundaryV2", {
|
|
1328
825
|
enumerable: true,
|
|
1329
826
|
configurable: true,
|
|
1330
827
|
writable: true,
|
|
1331
|
-
value: this.
|
|
828
|
+
value: this.mutation(removeAuthorizationParam(boundaryControllerDelete))
|
|
1332
829
|
});
|
|
1333
830
|
/**
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
Object.defineProperty(this, "
|
|
831
|
+
* Update boundary tags V2
|
|
832
|
+
*/
|
|
833
|
+
Object.defineProperty(this, "updateBoundaryTagsV2", {
|
|
1337
834
|
enumerable: true,
|
|
1338
835
|
configurable: true,
|
|
1339
836
|
writable: true,
|
|
1340
|
-
value: this.mutation(removeAuthorizationParam(
|
|
837
|
+
value: this.mutation(removeAuthorizationParam(boundaryControllerPutTags))
|
|
1341
838
|
});
|
|
1342
839
|
/**
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
Object.defineProperty(this, "
|
|
840
|
+
* Update boundary policy document V2
|
|
841
|
+
*/
|
|
842
|
+
Object.defineProperty(this, "updateBoundaryPolicyDocumentV2", {
|
|
1346
843
|
enumerable: true,
|
|
1347
844
|
configurable: true,
|
|
1348
845
|
writable: true,
|
|
1349
|
-
value: this.
|
|
846
|
+
value: this.mutation(removeAuthorizationParam(boundaryControllerPutPolicyDocument))
|
|
1350
847
|
});
|
|
1351
848
|
/**
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
Object.defineProperty(this, "
|
|
849
|
+
* List boundary SSOs V2
|
|
850
|
+
*/
|
|
851
|
+
Object.defineProperty(this, "listBoundarySsosV2", {
|
|
1355
852
|
enumerable: true,
|
|
1356
853
|
configurable: true,
|
|
1357
854
|
writable: true,
|
|
1358
|
-
value: this.
|
|
855
|
+
value: this.query(removeAuthorizationParam(boundarySsoControllerList))
|
|
1359
856
|
});
|
|
1360
857
|
/**
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
Object.defineProperty(this, "
|
|
858
|
+
* Create boundary SSO V2
|
|
859
|
+
*/
|
|
860
|
+
Object.defineProperty(this, "createBoundarySsoV2", {
|
|
1364
861
|
enumerable: true,
|
|
1365
862
|
configurable: true,
|
|
1366
863
|
writable: true,
|
|
1367
|
-
value: this.
|
|
864
|
+
value: this.mutation(removeAuthorizationParam(boundarySsoControllerCreate))
|
|
1368
865
|
});
|
|
1369
866
|
/**
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
Object.defineProperty(this, "
|
|
867
|
+
* Get boundary SSO by name V2
|
|
868
|
+
*/
|
|
869
|
+
Object.defineProperty(this, "getBoundarySsoByNameV2", {
|
|
1373
870
|
enumerable: true,
|
|
1374
871
|
configurable: true,
|
|
1375
872
|
writable: true,
|
|
1376
|
-
value: this.
|
|
873
|
+
value: this.query(removeAuthorizationParam(boundarySsoControllerGet))
|
|
1377
874
|
});
|
|
1378
875
|
/**
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
Object.defineProperty(this, "
|
|
876
|
+
* Delete boundary SSO V2
|
|
877
|
+
*/
|
|
878
|
+
Object.defineProperty(this, "deleteBoundarySsoV2", {
|
|
1382
879
|
enumerable: true,
|
|
1383
880
|
configurable: true,
|
|
1384
881
|
writable: true,
|
|
1385
|
-
value: this.
|
|
882
|
+
value: this.mutation(removeAuthorizationParam(boundarySsoControllerDelete))
|
|
1386
883
|
});
|
|
1387
884
|
/**
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
Object.defineProperty(this, "
|
|
885
|
+
* Update boundary SSO tags V2
|
|
886
|
+
*/
|
|
887
|
+
Object.defineProperty(this, "updateBoundarySsoTagsV2", {
|
|
1391
888
|
enumerable: true,
|
|
1392
889
|
configurable: true,
|
|
1393
890
|
writable: true,
|
|
1394
|
-
value: this.
|
|
891
|
+
value: this.mutation(removeAuthorizationParam(boundarySsoControllerPutTags))
|
|
1395
892
|
});
|
|
1396
893
|
/**
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
Object.defineProperty(this, "
|
|
894
|
+
* Update boundary SSO policy document V2
|
|
895
|
+
*/
|
|
896
|
+
Object.defineProperty(this, "updateBoundarySsoPolicyDocumentV2", {
|
|
1400
897
|
enumerable: true,
|
|
1401
898
|
configurable: true,
|
|
1402
899
|
writable: true,
|
|
1403
|
-
value: this.
|
|
900
|
+
value: this.mutation(removeAuthorizationParam(boundarySsoControllerPutPolicyDocument))
|
|
1404
901
|
});
|
|
1405
902
|
/**
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
Object.defineProperty(this, "
|
|
903
|
+
* List service control policies V2
|
|
904
|
+
*/
|
|
905
|
+
Object.defineProperty(this, "listServiceControlPoliciesV2", {
|
|
1409
906
|
enumerable: true,
|
|
1410
907
|
configurable: true,
|
|
1411
908
|
writable: true,
|
|
1412
|
-
value: this.
|
|
909
|
+
value: this.query(removeAuthorizationParam(serviceControlPolicyControllerList))
|
|
1413
910
|
});
|
|
1414
911
|
/**
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
Object.defineProperty(this, "
|
|
912
|
+
* Create service control policy V2
|
|
913
|
+
*/
|
|
914
|
+
Object.defineProperty(this, "createServiceControlPolicyV2", {
|
|
1418
915
|
enumerable: true,
|
|
1419
916
|
configurable: true,
|
|
1420
917
|
writable: true,
|
|
1421
|
-
value: this.
|
|
918
|
+
value: this.mutation(removeAuthorizationParam(serviceControlPolicyControllerCreate))
|
|
1422
919
|
});
|
|
1423
920
|
/**
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
Object.defineProperty(this, "
|
|
921
|
+
* Get service control policy by name V2
|
|
922
|
+
*/
|
|
923
|
+
Object.defineProperty(this, "getServiceControlPolicyByNameV2", {
|
|
1427
924
|
enumerable: true,
|
|
1428
925
|
configurable: true,
|
|
1429
926
|
writable: true,
|
|
1430
|
-
value: this.query(removeAuthorizationParam(
|
|
927
|
+
value: this.query(removeAuthorizationParam(serviceControlPolicyControllerGet))
|
|
1431
928
|
});
|
|
1432
929
|
/**
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
Object.defineProperty(this, "
|
|
930
|
+
* Delete service control policy V2
|
|
931
|
+
*/
|
|
932
|
+
Object.defineProperty(this, "deleteServiceControlPolicyV2", {
|
|
1436
933
|
enumerable: true,
|
|
1437
934
|
configurable: true,
|
|
1438
935
|
writable: true,
|
|
1439
|
-
value: this.
|
|
936
|
+
value: this.mutation(removeAuthorizationParam(serviceControlPolicyControllerDelete))
|
|
1440
937
|
});
|
|
1441
938
|
/**
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
Object.defineProperty(this, "
|
|
939
|
+
* Update service control policy target V2
|
|
940
|
+
*/
|
|
941
|
+
Object.defineProperty(this, "updateServiceControlPolicyTargetV2", {
|
|
1445
942
|
enumerable: true,
|
|
1446
943
|
configurable: true,
|
|
1447
944
|
writable: true,
|
|
1448
|
-
value: this.mutation(removeAuthorizationParam(
|
|
945
|
+
value: this.mutation(removeAuthorizationParam(serviceControlPolicyControllerPutTarget))
|
|
1449
946
|
});
|
|
1450
947
|
/**
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
Object.defineProperty(this, "
|
|
948
|
+
* Update service control policy tags V2
|
|
949
|
+
*/
|
|
950
|
+
Object.defineProperty(this, "updateServiceControlPolicyTagsV2", {
|
|
1454
951
|
enumerable: true,
|
|
1455
952
|
configurable: true,
|
|
1456
953
|
writable: true,
|
|
1457
|
-
value: this.
|
|
954
|
+
value: this.mutation(removeAuthorizationParam(serviceControlPolicyControllerPutTags))
|
|
1458
955
|
});
|
|
1459
956
|
/**
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
Object.defineProperty(this, "
|
|
957
|
+
* Update service control policy name V2
|
|
958
|
+
*/
|
|
959
|
+
Object.defineProperty(this, "updateServiceControlPolicyNameV2", {
|
|
1463
960
|
enumerable: true,
|
|
1464
961
|
configurable: true,
|
|
1465
962
|
writable: true,
|
|
1466
|
-
value: this.mutation(removeAuthorizationParam(
|
|
963
|
+
value: this.mutation(removeAuthorizationParam(serviceControlPolicyControllerPutName))
|
|
1467
964
|
});
|
|
1468
965
|
/**
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
Object.defineProperty(this, "
|
|
966
|
+
* Update service control policy description V2
|
|
967
|
+
*/
|
|
968
|
+
Object.defineProperty(this, "updateServiceControlPolicyDescriptionV2", {
|
|
1472
969
|
enumerable: true,
|
|
1473
970
|
configurable: true,
|
|
1474
971
|
writable: true,
|
|
1475
|
-
value: this.mutation(removeAuthorizationParam(
|
|
972
|
+
value: this.mutation(removeAuthorizationParam(serviceControlPolicyControllerPutDescription))
|
|
1476
973
|
});
|
|
1477
974
|
/**
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
Object.defineProperty(this, "
|
|
975
|
+
* Update service control policy content V2
|
|
976
|
+
*/
|
|
977
|
+
Object.defineProperty(this, "updateServiceControlPolicyContentV2", {
|
|
1481
978
|
enumerable: true,
|
|
1482
979
|
configurable: true,
|
|
1483
980
|
writable: true,
|
|
1484
|
-
value: this.
|
|
981
|
+
value: this.mutation(removeAuthorizationParam(serviceControlPolicyControllerPutContent))
|
|
1485
982
|
});
|
|
1486
983
|
/**
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
Object.defineProperty(this, "
|
|
984
|
+
* Get Firewall Manager Policy by name V2
|
|
985
|
+
*/
|
|
986
|
+
Object.defineProperty(this, "getFirewallManagerPolicyByNameV2", {
|
|
1490
987
|
enumerable: true,
|
|
1491
988
|
configurable: true,
|
|
1492
989
|
writable: true,
|
|
1493
|
-
value: this.
|
|
990
|
+
value: this.query(removeAuthorizationParam(fmsPolicyControllerGet))
|
|
1494
991
|
});
|
|
1495
992
|
/**
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
Object.defineProperty(this, "
|
|
993
|
+
* Delete Firewall Manager Policy V2
|
|
994
|
+
*/
|
|
995
|
+
Object.defineProperty(this, "deleteFirewallManagerPolicyV2", {
|
|
1499
996
|
enumerable: true,
|
|
1500
997
|
configurable: true,
|
|
1501
998
|
writable: true,
|
|
1502
|
-
value: this.
|
|
999
|
+
value: this.mutation(removeAuthorizationParam(fmsPolicyControllerDelete))
|
|
1503
1000
|
});
|
|
1504
1001
|
/**
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
Object.defineProperty(this, "
|
|
1002
|
+
* List Firewall Manager Policies V2
|
|
1003
|
+
*/
|
|
1004
|
+
Object.defineProperty(this, "listFirewallManagerPoliciesV2", {
|
|
1508
1005
|
enumerable: true,
|
|
1509
1006
|
configurable: true,
|
|
1510
1007
|
writable: true,
|
|
1511
|
-
value: this.
|
|
1008
|
+
value: this.query(removeAuthorizationParam(fmsPolicyControllerList))
|
|
1512
1009
|
});
|
|
1513
1010
|
/**
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
Object.defineProperty(this, "
|
|
1011
|
+
* Create Firewall Manager Policy V2
|
|
1012
|
+
*/
|
|
1013
|
+
Object.defineProperty(this, "createFirewallManagerPolicyV2", {
|
|
1517
1014
|
enumerable: true,
|
|
1518
1015
|
configurable: true,
|
|
1519
1016
|
writable: true,
|
|
1520
|
-
value: this.mutation(removeAuthorizationParam(
|
|
1017
|
+
value: this.mutation(removeAuthorizationParam(fmsPolicyControllerCreate))
|
|
1521
1018
|
});
|
|
1522
1019
|
/**
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
Object.defineProperty(this, "
|
|
1020
|
+
* Get Firewall Manager Associate Admin Account by name V2
|
|
1021
|
+
*/
|
|
1022
|
+
Object.defineProperty(this, "getFirewallManagerAssociateAdminAccountByNameV2", {
|
|
1526
1023
|
enumerable: true,
|
|
1527
1024
|
configurable: true,
|
|
1528
1025
|
writable: true,
|
|
1529
|
-
value: this.query(removeAuthorizationParam(
|
|
1026
|
+
value: this.query(removeAuthorizationParam(fmsAssociateAdminAccountControllerGet))
|
|
1530
1027
|
});
|
|
1531
1028
|
/**
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
Object.defineProperty(this, "
|
|
1029
|
+
* Delete Firewall Manager Associate Admin Account V2
|
|
1030
|
+
*/
|
|
1031
|
+
Object.defineProperty(this, "deleteFirewallManagerAssociateAdminAccountV2", {
|
|
1535
1032
|
enumerable: true,
|
|
1536
1033
|
configurable: true,
|
|
1537
1034
|
writable: true,
|
|
1538
|
-
value: this.mutation(removeAuthorizationParam(
|
|
1035
|
+
value: this.mutation(removeAuthorizationParam(fmsAssociateAdminAccountControllerDelete))
|
|
1539
1036
|
});
|
|
1540
1037
|
/**
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
Object.defineProperty(this, "
|
|
1038
|
+
* Create Firewall Manager Associate Admin Account V2
|
|
1039
|
+
*/
|
|
1040
|
+
Object.defineProperty(this, "createFirewallManagerAssociateAdminAccountV2", {
|
|
1544
1041
|
enumerable: true,
|
|
1545
1042
|
configurable: true,
|
|
1546
1043
|
writable: true,
|
|
1547
|
-
value: this.
|
|
1044
|
+
value: this.mutation(removeAuthorizationParam(fmsAssociateAdminAccountControllerCreate))
|
|
1548
1045
|
});
|
|
1549
1046
|
/**
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
Object.defineProperty(this, "
|
|
1047
|
+
* List Firewall Manager Associate Admin Accounts V2
|
|
1048
|
+
*/
|
|
1049
|
+
Object.defineProperty(this, "listFirewallManagerAssociateAdminAccountsV2", {
|
|
1553
1050
|
enumerable: true,
|
|
1554
1051
|
configurable: true,
|
|
1555
1052
|
writable: true,
|
|
1556
|
-
value: this.
|
|
1053
|
+
value: this.query(removeAuthorizationParam(fmsAssociateAdminAccountControllerList))
|
|
1557
1054
|
});
|
|
1558
1055
|
/**
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
Object.defineProperty(this, "
|
|
1056
|
+
* Get a list of dns records
|
|
1057
|
+
*/
|
|
1058
|
+
Object.defineProperty(this, "listRoles", {
|
|
1562
1059
|
enumerable: true,
|
|
1563
1060
|
configurable: true,
|
|
1564
1061
|
writable: true,
|
|
1565
|
-
value: this.
|
|
1062
|
+
value: this.query(removeAuthorizationParam(roleControllerList))
|
|
1566
1063
|
});
|
|
1567
1064
|
/**
|
|
1568
|
-
*
|
|
1065
|
+
* Create a role
|
|
1569
1066
|
*/
|
|
1570
|
-
Object.defineProperty(this, "
|
|
1067
|
+
Object.defineProperty(this, "createRole", {
|
|
1571
1068
|
enumerable: true,
|
|
1572
1069
|
configurable: true,
|
|
1573
1070
|
writable: true,
|
|
1574
|
-
value: this.mutation(removeAuthorizationParam(
|
|
1071
|
+
value: this.mutation(removeAuthorizationParam(roleControllerCreate))
|
|
1575
1072
|
});
|
|
1576
1073
|
/**
|
|
1577
|
-
*
|
|
1074
|
+
* Get a role by name
|
|
1578
1075
|
*/
|
|
1579
|
-
Object.defineProperty(this, "
|
|
1076
|
+
Object.defineProperty(this, "getRole", {
|
|
1580
1077
|
enumerable: true,
|
|
1581
1078
|
configurable: true,
|
|
1582
1079
|
writable: true,
|
|
1583
|
-
value: this.
|
|
1080
|
+
value: this.query(removeAuthorizationParam(roleControllerGet))
|
|
1584
1081
|
});
|
|
1585
1082
|
/**
|
|
1586
|
-
*
|
|
1083
|
+
* Edit a role
|
|
1587
1084
|
*/
|
|
1588
|
-
Object.defineProperty(this, "
|
|
1085
|
+
Object.defineProperty(this, "editRole", {
|
|
1589
1086
|
enumerable: true,
|
|
1590
1087
|
configurable: true,
|
|
1591
1088
|
writable: true,
|
|
1592
|
-
value: this.mutation(removeAuthorizationParam(
|
|
1089
|
+
value: this.mutation(removeAuthorizationParam(roleControllerUpdateAccountRole))
|
|
1593
1090
|
});
|
|
1594
1091
|
/**
|
|
1595
|
-
*
|
|
1092
|
+
* Delete a role
|
|
1596
1093
|
*/
|
|
1597
|
-
Object.defineProperty(this, "
|
|
1094
|
+
Object.defineProperty(this, "deleteRole", {
|
|
1598
1095
|
enumerable: true,
|
|
1599
1096
|
configurable: true,
|
|
1600
1097
|
writable: true,
|
|
1601
|
-
value: this.mutation(removeAuthorizationParam(
|
|
1098
|
+
value: this.mutation(removeAuthorizationParam(roleControllerDelete))
|
|
1602
1099
|
});
|
|
1603
1100
|
}
|
|
1604
1101
|
buildStackSpotError(error) {
|