@stack-spot/portal-network 0.233.0 → 0.234.1

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/src/apis.json CHANGED
@@ -172,7 +172,7 @@
172
172
  "stg": "https://cloud-cloud-foundation-api.stg.stackspot.com",
173
173
  "prd": "https://cloud-cloud-foundation-api.prd.stackspot.com"
174
174
  },
175
- "docs": "/v3/api-docs/portal"
175
+ "docs": "/v3/api-docs"
176
176
  },
177
177
  "cloudRuntimes": {
178
178
  "url": {
@@ -25,6 +25,14 @@ import {
25
25
  deleteProject,
26
26
  deleteRole,
27
27
  deleteVpn,
28
+ fmsAssociateAdminAccountControllerCreate,
29
+ fmsAssociateAdminAccountControllerDelete,
30
+ fmsAssociateAdminAccountControllerGet,
31
+ fmsAssociateAdminAccountControllerList,
32
+ fmsPolicyControllerCreate,
33
+ fmsPolicyControllerDelete,
34
+ fmsPolicyControllerGet,
35
+ fmsPolicyControllerList,
28
36
  getBoundary,
29
37
  getBoundarySso,
30
38
  getCertificate,
@@ -332,6 +340,46 @@ class CloudPlatformClient extends ReactQueryNetworkClient {
332
340
  * Delete a role
333
341
  */
334
342
  deleteRole = this.mutation(removeAuthorizationParam(deleteRole))
343
+ /**
344
+ * Get Firewall Manager Policies by Foundation
345
+ */
346
+ getFirewallManagerPolicyByName =
347
+ this.query(removeAuthorizationParam(fmsPolicyControllerGet))
348
+ /**
349
+ * Delete Firewall Manager Policy
350
+ */
351
+ deleteFirewallManagerPolicy =
352
+ this.mutation(removeAuthorizationParam(fmsPolicyControllerDelete))
353
+ /**
354
+ * Get Firewall Manager Policies by Foundation
355
+ */
356
+ listFirewallManagerPolicies =
357
+ this.query(removeAuthorizationParam(fmsPolicyControllerList))
358
+ /**
359
+ * Create Firewall Manager Policy
360
+ */
361
+ createFirewallManagerPolicy =
362
+ this.mutation(removeAuthorizationParam(fmsPolicyControllerCreate))
363
+ /**
364
+ * Get Firewall Manager Associate Admin Account by name
365
+ */
366
+ getFirewallManagerAssociateAdminAccountByName =
367
+ this.query(removeAuthorizationParam(fmsAssociateAdminAccountControllerGet))
368
+ /**
369
+ * Delete Firewall Manager Associate Admin Account
370
+ */
371
+ deleteFirewallManagerAssociateAdminAccount =
372
+ this.mutation(removeAuthorizationParam(fmsAssociateAdminAccountControllerDelete))
373
+ /**
374
+ * Create Firewall Manager Associate Admin Account
375
+ */
376
+ createFirewallManagerAssociateAdminAccount =
377
+ this.mutation(removeAuthorizationParam(fmsAssociateAdminAccountControllerCreate))
378
+ /**
379
+ * Get Firewall Manager Associate Admin Account by name
380
+ */
381
+ listFirewallManagerAssociateAdminAccount =
382
+ this.query(removeAuthorizationParam(fmsAssociateAdminAccountControllerList))
335
383
  }
336
384
 
337
385
  export const cloudPlatformClient = new CloudPlatformClient()