Skip to content

Cloud Integration Delete

Delete Cloud Integration entities. All entities associated with any deleted integration will be deleted as well.

Usage

s10k cloud-integrations integrations delete
    [-i=integrationId[,integrationId...]]...
    [-mode=<displayMode>]
Option Long Version Description
-i= --integration-id= the integration ID(s) to match
-mode= --display-mode= the format to display the data as, one of CSV, JSON, or PRETTY; defaults to PRETTY

Tip

Use the --dry-run global option to simulate what entities would be deleted, without actually deleting anything. For example:

s10k --dry-run cloud-integrations integrations delete --integration-id 100

Output

A listing of the deleted datum streams.

Examples

s10k cloud-integrations integrations delete --integration-id 99

You can use c2c instead of cloud-integrations and i9n instead of integrations:

s10k c2c i9n delete --integration-id 99
+----+--------------------------+-----------+---------+
| ID | Name                     | Type      | Enabled |
+----+--------------------------+-----------+---------+
| 99 | John Smither High School | SolarEdge | true    |
+----+--------------------------+-----------+---------+
ID,Name,Type,Enabled
99,John Smither High School,SolarEdge,true
[
  {
    "configId": 99,
    "name": "John Smither High School",
    "serviceIdentifier": "s10k.c2c.i9n.solaredge.v1",
    "created": "2024-11-07 13:23:18.783834Z",
    "modified": "2024-11-07 13:23:18.783834Z",
    "enabled": true,
    "serviceProperties": {
      "apiKey": "{SSHA-256}REtLiAO1cMh541Dr...=="
    }
  }
]