@stack-spot/portal-network 0.235.3 → 0.237.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 +364 -800
- package/dist/api/cloudPlatform.d.ts.map +1 -1
- package/dist/api/cloudPlatform.js +181 -543
- package/dist/api/cloudPlatform.js.map +1 -1
- package/dist/apis.json +9 -5
- package/dist/client/cloud-platform.d.ts +748 -548
- package/dist/client/cloud-platform.d.ts.map +1 -1
- package/dist/client/cloud-platform.js +667 -297
- package/dist/client/cloud-platform.js.map +1 -1
- package/package.json +2 -2
- package/scripts/generate-apis.ts +4 -3
- package/src/api/cloudPlatform.ts +582 -1487
- package/src/api-docs/cloud-platform-docs-prd.json +6489 -0
- package/src/api-docs/cloud-platform-docs-stg.json +6898 -0
- package/src/apis.json +9 -5
- package/src/client/cloud-platform.ts +597 -292
|
@@ -1,731 +1,1101 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { getApiAddresses } from '../api-addresses.js';
|
|
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';
|
|
2
4
|
import { DefaultAPIError } from '../error/DefaultAPIError.js';
|
|
5
|
+
import { scfDictionary } from '../error/dictionary/cloud-platform.js';
|
|
3
6
|
import { ReactQueryNetworkClient } from '../network/ReactQueryNetworkClient.js';
|
|
4
7
|
import { removeAuthorizationParam } from '../utils/remove-authorization-param.js';
|
|
5
|
-
import { scfDictionary } from '../error/dictionary/cloud-platform.js';
|
|
6
|
-
import { getApiAddresses } from '../api-addresses.js';
|
|
7
8
|
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.
|
|
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.mutation(removeAuthorizationParam(
|
|
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.query(removeAuthorizationParam(
|
|
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.mutation(removeAuthorizationParam(
|
|
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.query(removeAuthorizationParam(
|
|
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.mutation(removeAuthorizationParam(
|
|
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.query(removeAuthorizationParam(
|
|
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.mutation(removeAuthorizationParam(
|
|
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.query(removeAuthorizationParam(
|
|
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.mutation(removeAuthorizationParam(
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.mutation(removeAuthorizationParam(
|
|
693
|
+
value: this.mutation(removeAuthorizationParam(cidrControllerPutTags))
|
|
694
|
+
});
|
|
695
|
+
/**
|
|
696
|
+
* List certificates V2
|
|
697
|
+
*/
|
|
698
|
+
Object.defineProperty(this, "listCertificatesV2", {
|
|
699
|
+
enumerable: true,
|
|
700
|
+
configurable: true,
|
|
701
|
+
writable: true,
|
|
702
|
+
value: this.query(removeAuthorizationParam(certificateControllerList))
|
|
703
|
+
});
|
|
704
|
+
/**
|
|
705
|
+
* Create certificate V2
|
|
706
|
+
*/
|
|
707
|
+
Object.defineProperty(this, "createCertificatesV2", {
|
|
708
|
+
enumerable: true,
|
|
709
|
+
configurable: true,
|
|
710
|
+
writable: true,
|
|
711
|
+
value: this.mutation(removeAuthorizationParam(certificateControllerCreate))
|
|
712
|
+
});
|
|
713
|
+
/**
|
|
714
|
+
* Get certificate by name V2
|
|
715
|
+
*/
|
|
716
|
+
Object.defineProperty(this, "getCertificateByNameV2", {
|
|
717
|
+
enumerable: true,
|
|
718
|
+
configurable: true,
|
|
719
|
+
writable: true,
|
|
720
|
+
value: this.query(removeAuthorizationParam(certificateControllerGet))
|
|
721
|
+
});
|
|
722
|
+
/**
|
|
723
|
+
* Delete certificate V2
|
|
724
|
+
*/
|
|
725
|
+
Object.defineProperty(this, "deleteCertificateV2", {
|
|
726
|
+
enumerable: true,
|
|
727
|
+
configurable: true,
|
|
728
|
+
writable: true,
|
|
729
|
+
value: this.mutation(removeAuthorizationParam(certificateControllerDelete))
|
|
730
|
+
});
|
|
731
|
+
/**
|
|
732
|
+
* Get OIDC V2
|
|
733
|
+
*/
|
|
734
|
+
Object.defineProperty(this, "getOIDCV2", {
|
|
735
|
+
enumerable: true,
|
|
736
|
+
configurable: true,
|
|
737
|
+
writable: true,
|
|
738
|
+
value: this.query(removeAuthorizationParam(oidcControllerGet))
|
|
739
|
+
});
|
|
740
|
+
/**
|
|
741
|
+
* List OIDC V2
|
|
742
|
+
*/
|
|
743
|
+
Object.defineProperty(this, "listOIDCV2", {
|
|
744
|
+
enumerable: true,
|
|
745
|
+
configurable: true,
|
|
746
|
+
writable: true,
|
|
747
|
+
value: this.query(removeAuthorizationParam(oidcControllerGet))
|
|
748
|
+
});
|
|
749
|
+
/**
|
|
750
|
+
* Get Finops V2
|
|
751
|
+
*/
|
|
752
|
+
Object.defineProperty(this, "getFinopsV2", {
|
|
753
|
+
enumerable: true,
|
|
754
|
+
configurable: true,
|
|
755
|
+
writable: true,
|
|
756
|
+
value: this.query(removeAuthorizationParam(finOpsControllerGet))
|
|
757
|
+
});
|
|
758
|
+
/**
|
|
759
|
+
* Create foundation V2
|
|
760
|
+
*/
|
|
761
|
+
Object.defineProperty(this, "createFoundationV2", {
|
|
762
|
+
enumerable: true,
|
|
763
|
+
configurable: true,
|
|
764
|
+
writable: true,
|
|
765
|
+
value: this.mutation(removeAuthorizationParam(foundationControllerCreate))
|
|
766
|
+
});
|
|
767
|
+
/**
|
|
768
|
+
* List foundations V2
|
|
769
|
+
*/
|
|
770
|
+
Object.defineProperty(this, "listFoundationsV2", {
|
|
771
|
+
enumerable: true,
|
|
772
|
+
configurable: true,
|
|
773
|
+
writable: true,
|
|
774
|
+
value: this.query(removeAuthorizationParam(foundationControllerList))
|
|
775
|
+
});
|
|
776
|
+
/**
|
|
777
|
+
* Get foundation V2
|
|
778
|
+
*/
|
|
779
|
+
Object.defineProperty(this, "getFoundationV2", {
|
|
780
|
+
enumerable: true,
|
|
781
|
+
configurable: true,
|
|
782
|
+
writable: true,
|
|
783
|
+
value: this.query(removeAuthorizationParam(foundationControllerGet))
|
|
784
|
+
});
|
|
785
|
+
/**
|
|
786
|
+
* Update foundation security project tags V2
|
|
787
|
+
*/
|
|
788
|
+
Object.defineProperty(this, "updateFoundationSecurityTagsV2", {
|
|
789
|
+
enumerable: true,
|
|
790
|
+
configurable: true,
|
|
791
|
+
writable: true,
|
|
792
|
+
value: this.mutation(removeAuthorizationParam(foundationControllerPutSecProjectTags))
|
|
793
|
+
});
|
|
794
|
+
/**
|
|
795
|
+
* List boundaries V2
|
|
796
|
+
*/
|
|
797
|
+
Object.defineProperty(this, "listBoundariesV2", {
|
|
798
|
+
enumerable: true,
|
|
799
|
+
configurable: true,
|
|
800
|
+
writable: true,
|
|
801
|
+
value: this.query(removeAuthorizationParam(boundaryControllerList))
|
|
802
|
+
});
|
|
803
|
+
/**
|
|
804
|
+
* Create boundary V2
|
|
805
|
+
*/
|
|
806
|
+
Object.defineProperty(this, "createBoundaryV2", {
|
|
807
|
+
enumerable: true,
|
|
808
|
+
configurable: true,
|
|
809
|
+
writable: true,
|
|
810
|
+
value: this.mutation(removeAuthorizationParam(boundaryControllerCreate))
|
|
811
|
+
});
|
|
812
|
+
/**
|
|
813
|
+
* Get boundary by name V2
|
|
814
|
+
*/
|
|
815
|
+
Object.defineProperty(this, "getBoundaryByNameV2", {
|
|
816
|
+
enumerable: true,
|
|
817
|
+
configurable: true,
|
|
818
|
+
writable: true,
|
|
819
|
+
value: this.query(removeAuthorizationParam(boundaryControllerGet))
|
|
820
|
+
});
|
|
821
|
+
/**
|
|
822
|
+
* Delete boundary V2
|
|
823
|
+
*/
|
|
824
|
+
Object.defineProperty(this, "deleteBoundaryV2", {
|
|
825
|
+
enumerable: true,
|
|
826
|
+
configurable: true,
|
|
827
|
+
writable: true,
|
|
828
|
+
value: this.mutation(removeAuthorizationParam(boundaryControllerDelete))
|
|
829
|
+
});
|
|
830
|
+
/**
|
|
831
|
+
* Update boundary tags V2
|
|
832
|
+
*/
|
|
833
|
+
Object.defineProperty(this, "updateBoundaryTagsV2", {
|
|
834
|
+
enumerable: true,
|
|
835
|
+
configurable: true,
|
|
836
|
+
writable: true,
|
|
837
|
+
value: this.mutation(removeAuthorizationParam(boundaryControllerPutTags))
|
|
838
|
+
});
|
|
839
|
+
/**
|
|
840
|
+
* Update boundary policy document V2
|
|
841
|
+
*/
|
|
842
|
+
Object.defineProperty(this, "updateBoundaryPolicyDocumentV2", {
|
|
843
|
+
enumerable: true,
|
|
844
|
+
configurable: true,
|
|
845
|
+
writable: true,
|
|
846
|
+
value: this.mutation(removeAuthorizationParam(boundaryControllerPutPolicyDocument))
|
|
847
|
+
});
|
|
848
|
+
/**
|
|
849
|
+
* List boundary SSOs V2
|
|
850
|
+
*/
|
|
851
|
+
Object.defineProperty(this, "listBoundarySsosV2", {
|
|
852
|
+
enumerable: true,
|
|
853
|
+
configurable: true,
|
|
854
|
+
writable: true,
|
|
855
|
+
value: this.query(removeAuthorizationParam(boundarySsoControllerList))
|
|
856
|
+
});
|
|
857
|
+
/**
|
|
858
|
+
* Create boundary SSO V2
|
|
859
|
+
*/
|
|
860
|
+
Object.defineProperty(this, "createBoundarySsoV2", {
|
|
861
|
+
enumerable: true,
|
|
862
|
+
configurable: true,
|
|
863
|
+
writable: true,
|
|
864
|
+
value: this.mutation(removeAuthorizationParam(boundarySsoControllerCreate))
|
|
865
|
+
});
|
|
866
|
+
/**
|
|
867
|
+
* Get boundary SSO by name V2
|
|
868
|
+
*/
|
|
869
|
+
Object.defineProperty(this, "getBoundarySsoByNameV2", {
|
|
870
|
+
enumerable: true,
|
|
871
|
+
configurable: true,
|
|
872
|
+
writable: true,
|
|
873
|
+
value: this.query(removeAuthorizationParam(boundarySsoControllerGet))
|
|
874
|
+
});
|
|
875
|
+
/**
|
|
876
|
+
* Delete boundary SSO V2
|
|
877
|
+
*/
|
|
878
|
+
Object.defineProperty(this, "deleteBoundarySsoV2", {
|
|
879
|
+
enumerable: true,
|
|
880
|
+
configurable: true,
|
|
881
|
+
writable: true,
|
|
882
|
+
value: this.mutation(removeAuthorizationParam(boundarySsoControllerDelete))
|
|
883
|
+
});
|
|
884
|
+
/**
|
|
885
|
+
* Update boundary SSO tags V2
|
|
886
|
+
*/
|
|
887
|
+
Object.defineProperty(this, "updateBoundarySsoTagsV2", {
|
|
888
|
+
enumerable: true,
|
|
889
|
+
configurable: true,
|
|
890
|
+
writable: true,
|
|
891
|
+
value: this.mutation(removeAuthorizationParam(boundarySsoControllerPutTags))
|
|
892
|
+
});
|
|
893
|
+
/**
|
|
894
|
+
* Update boundary SSO policy document V2
|
|
895
|
+
*/
|
|
896
|
+
Object.defineProperty(this, "updateBoundarySsoPolicyDocumentV2", {
|
|
897
|
+
enumerable: true,
|
|
898
|
+
configurable: true,
|
|
899
|
+
writable: true,
|
|
900
|
+
value: this.mutation(removeAuthorizationParam(boundarySsoControllerPutPolicyDocument))
|
|
901
|
+
});
|
|
902
|
+
/**
|
|
903
|
+
* List service control policies V2
|
|
904
|
+
*/
|
|
905
|
+
Object.defineProperty(this, "listServiceControlPoliciesV2", {
|
|
906
|
+
enumerable: true,
|
|
907
|
+
configurable: true,
|
|
908
|
+
writable: true,
|
|
909
|
+
value: this.query(removeAuthorizationParam(serviceControlPolicyControllerList))
|
|
910
|
+
});
|
|
911
|
+
/**
|
|
912
|
+
* Create service control policy V2
|
|
913
|
+
*/
|
|
914
|
+
Object.defineProperty(this, "createServiceControlPolicyV2", {
|
|
915
|
+
enumerable: true,
|
|
916
|
+
configurable: true,
|
|
917
|
+
writable: true,
|
|
918
|
+
value: this.mutation(removeAuthorizationParam(serviceControlPolicyControllerCreate))
|
|
919
|
+
});
|
|
920
|
+
/**
|
|
921
|
+
* Get service control policy by name V2
|
|
922
|
+
*/
|
|
923
|
+
Object.defineProperty(this, "getServiceControlPolicyByNameV2", {
|
|
924
|
+
enumerable: true,
|
|
925
|
+
configurable: true,
|
|
926
|
+
writable: true,
|
|
927
|
+
value: this.query(removeAuthorizationParam(serviceControlPolicyControllerGet))
|
|
928
|
+
});
|
|
929
|
+
/**
|
|
930
|
+
* Delete service control policy V2
|
|
931
|
+
*/
|
|
932
|
+
Object.defineProperty(this, "deleteServiceControlPolicyV2", {
|
|
933
|
+
enumerable: true,
|
|
934
|
+
configurable: true,
|
|
935
|
+
writable: true,
|
|
936
|
+
value: this.mutation(removeAuthorizationParam(serviceControlPolicyControllerDelete))
|
|
937
|
+
});
|
|
938
|
+
/**
|
|
939
|
+
* Update service control policy target V2
|
|
940
|
+
*/
|
|
941
|
+
Object.defineProperty(this, "updateServiceControlPolicyTargetV2", {
|
|
942
|
+
enumerable: true,
|
|
943
|
+
configurable: true,
|
|
944
|
+
writable: true,
|
|
945
|
+
value: this.mutation(removeAuthorizationParam(serviceControlPolicyControllerPutTarget))
|
|
946
|
+
});
|
|
947
|
+
/**
|
|
948
|
+
* Update service control policy tags V2
|
|
949
|
+
*/
|
|
950
|
+
Object.defineProperty(this, "updateServiceControlPolicyTagsV2", {
|
|
951
|
+
enumerable: true,
|
|
952
|
+
configurable: true,
|
|
953
|
+
writable: true,
|
|
954
|
+
value: this.mutation(removeAuthorizationParam(serviceControlPolicyControllerPutTags))
|
|
955
|
+
});
|
|
956
|
+
/**
|
|
957
|
+
* Update service control policy name V2
|
|
958
|
+
*/
|
|
959
|
+
Object.defineProperty(this, "updateServiceControlPolicyNameV2", {
|
|
960
|
+
enumerable: true,
|
|
961
|
+
configurable: true,
|
|
962
|
+
writable: true,
|
|
963
|
+
value: this.mutation(removeAuthorizationParam(serviceControlPolicyControllerPutName))
|
|
964
|
+
});
|
|
965
|
+
/**
|
|
966
|
+
* Update service control policy description V2
|
|
967
|
+
*/
|
|
968
|
+
Object.defineProperty(this, "updateServiceControlPolicyDescriptionV2", {
|
|
969
|
+
enumerable: true,
|
|
970
|
+
configurable: true,
|
|
971
|
+
writable: true,
|
|
972
|
+
value: this.mutation(removeAuthorizationParam(serviceControlPolicyControllerPutDescription))
|
|
973
|
+
});
|
|
974
|
+
/**
|
|
975
|
+
* Update service control policy content V2
|
|
976
|
+
*/
|
|
977
|
+
Object.defineProperty(this, "updateServiceControlPolicyContentV2", {
|
|
978
|
+
enumerable: true,
|
|
979
|
+
configurable: true,
|
|
980
|
+
writable: true,
|
|
981
|
+
value: this.mutation(removeAuthorizationParam(serviceControlPolicyControllerPutContent))
|
|
982
|
+
});
|
|
983
|
+
/**
|
|
984
|
+
* Get Firewall Manager Policy by name V2
|
|
985
|
+
*/
|
|
986
|
+
Object.defineProperty(this, "getFirewallManagerPolicyByNameV2", {
|
|
987
|
+
enumerable: true,
|
|
988
|
+
configurable: true,
|
|
989
|
+
writable: true,
|
|
990
|
+
value: this.query(removeAuthorizationParam(fmsPolicyControllerGet))
|
|
693
991
|
});
|
|
694
992
|
/**
|
|
695
|
-
|
|
993
|
+
* Delete Firewall Manager Policy V2
|
|
994
|
+
*/
|
|
995
|
+
Object.defineProperty(this, "deleteFirewallManagerPolicyV2", {
|
|
996
|
+
enumerable: true,
|
|
997
|
+
configurable: true,
|
|
998
|
+
writable: true,
|
|
999
|
+
value: this.mutation(removeAuthorizationParam(fmsPolicyControllerDelete))
|
|
1000
|
+
});
|
|
1001
|
+
/**
|
|
1002
|
+
* List Firewall Manager Policies V2
|
|
1003
|
+
*/
|
|
1004
|
+
Object.defineProperty(this, "listFirewallManagerPoliciesV2", {
|
|
1005
|
+
enumerable: true,
|
|
1006
|
+
configurable: true,
|
|
1007
|
+
writable: true,
|
|
1008
|
+
value: this.query(removeAuthorizationParam(fmsPolicyControllerList))
|
|
1009
|
+
});
|
|
1010
|
+
/**
|
|
1011
|
+
* Create Firewall Manager Policy V2
|
|
1012
|
+
*/
|
|
1013
|
+
Object.defineProperty(this, "createFirewallManagerPolicyV2", {
|
|
1014
|
+
enumerable: true,
|
|
1015
|
+
configurable: true,
|
|
1016
|
+
writable: true,
|
|
1017
|
+
value: this.mutation(removeAuthorizationParam(fmsPolicyControllerCreate))
|
|
1018
|
+
});
|
|
1019
|
+
/**
|
|
1020
|
+
* Get Firewall Manager Associate Admin Account by name V2
|
|
1021
|
+
*/
|
|
1022
|
+
Object.defineProperty(this, "getFirewallManagerAssociateAdminAccountByNameV2", {
|
|
1023
|
+
enumerable: true,
|
|
1024
|
+
configurable: true,
|
|
1025
|
+
writable: true,
|
|
1026
|
+
value: this.query(removeAuthorizationParam(fmsAssociateAdminAccountControllerGet))
|
|
1027
|
+
});
|
|
1028
|
+
/**
|
|
1029
|
+
* Delete Firewall Manager Associate Admin Account V2
|
|
1030
|
+
*/
|
|
1031
|
+
Object.defineProperty(this, "deleteFirewallManagerAssociateAdminAccountV2", {
|
|
1032
|
+
enumerable: true,
|
|
1033
|
+
configurable: true,
|
|
1034
|
+
writable: true,
|
|
1035
|
+
value: this.mutation(removeAuthorizationParam(fmsAssociateAdminAccountControllerDelete))
|
|
1036
|
+
});
|
|
1037
|
+
/**
|
|
1038
|
+
* Create Firewall Manager Associate Admin Account V2
|
|
1039
|
+
*/
|
|
1040
|
+
Object.defineProperty(this, "createFirewallManagerAssociateAdminAccountV2", {
|
|
1041
|
+
enumerable: true,
|
|
1042
|
+
configurable: true,
|
|
1043
|
+
writable: true,
|
|
1044
|
+
value: this.mutation(removeAuthorizationParam(fmsAssociateAdminAccountControllerCreate))
|
|
1045
|
+
});
|
|
1046
|
+
/**
|
|
1047
|
+
* List Firewall Manager Associate Admin Accounts V2
|
|
1048
|
+
*/
|
|
1049
|
+
Object.defineProperty(this, "listFirewallManagerAssociateAdminAccountsV2", {
|
|
1050
|
+
enumerable: true,
|
|
1051
|
+
configurable: true,
|
|
1052
|
+
writable: true,
|
|
1053
|
+
value: this.query(removeAuthorizationParam(fmsAssociateAdminAccountControllerList))
|
|
1054
|
+
});
|
|
1055
|
+
/**
|
|
1056
|
+
* Get a list of dns records
|
|
1057
|
+
*/
|
|
1058
|
+
Object.defineProperty(this, "listRoles", {
|
|
1059
|
+
enumerable: true,
|
|
1060
|
+
configurable: true,
|
|
1061
|
+
writable: true,
|
|
1062
|
+
value: this.query(removeAuthorizationParam(roleControllerList))
|
|
1063
|
+
});
|
|
1064
|
+
/**
|
|
1065
|
+
* Create a role
|
|
696
1066
|
*/
|
|
697
|
-
Object.defineProperty(this, "
|
|
1067
|
+
Object.defineProperty(this, "createRole", {
|
|
698
1068
|
enumerable: true,
|
|
699
1069
|
configurable: true,
|
|
700
1070
|
writable: true,
|
|
701
|
-
value: this.mutation(removeAuthorizationParam(
|
|
1071
|
+
value: this.mutation(removeAuthorizationParam(roleControllerCreate))
|
|
702
1072
|
});
|
|
703
1073
|
/**
|
|
704
|
-
*
|
|
1074
|
+
* Get a role by name
|
|
705
1075
|
*/
|
|
706
|
-
Object.defineProperty(this, "
|
|
1076
|
+
Object.defineProperty(this, "getRole", {
|
|
707
1077
|
enumerable: true,
|
|
708
1078
|
configurable: true,
|
|
709
1079
|
writable: true,
|
|
710
|
-
value: this.query(removeAuthorizationParam(
|
|
1080
|
+
value: this.query(removeAuthorizationParam(roleControllerGet))
|
|
711
1081
|
});
|
|
712
1082
|
/**
|
|
713
|
-
*
|
|
1083
|
+
* Edit a role
|
|
714
1084
|
*/
|
|
715
|
-
Object.defineProperty(this, "
|
|
1085
|
+
Object.defineProperty(this, "editRole", {
|
|
716
1086
|
enumerable: true,
|
|
717
1087
|
configurable: true,
|
|
718
1088
|
writable: true,
|
|
719
|
-
value: this.mutation(removeAuthorizationParam(
|
|
1089
|
+
value: this.mutation(removeAuthorizationParam(roleControllerUpdateAccountRole))
|
|
720
1090
|
});
|
|
721
1091
|
/**
|
|
722
|
-
* Delete a
|
|
1092
|
+
* Delete a role
|
|
723
1093
|
*/
|
|
724
|
-
Object.defineProperty(this, "
|
|
1094
|
+
Object.defineProperty(this, "deleteRole", {
|
|
725
1095
|
enumerable: true,
|
|
726
1096
|
configurable: true,
|
|
727
1097
|
writable: true,
|
|
728
|
-
value: this.mutation(removeAuthorizationParam(
|
|
1098
|
+
value: this.mutation(removeAuthorizationParam(roleControllerDelete))
|
|
729
1099
|
});
|
|
730
1100
|
}
|
|
731
1101
|
buildStackSpotError(error) {
|