Add Cloud Account (GCP)
POSThttps://api.prismacloud.io/cas/v1/gcp_account
Onboard a new gcp cloud account onto the Prisma Cloud platform.
Prerequisite: Generate the GCP credentials by calling Generate and Download the GCP Terraform template API
Request
Query Parameters
true = Skip account status checks to improve response time
- application/json
Bodyrequired
Cloud Account
-
If
accountType
is organization andaccountGroupCreationMode
is MANUAL. -
If
accountType
is masterServiceAccount.
cloudAccount objectrequired
credentials objectrequired
Enable or disable compressed network flow log generation.
Default value: false
Project ID where the Dataflow API is enabled .
Required if compressionEnabled
is set to true and if the accountType
is organization.
Optional if the accountType
is account or masterServiceAccount
Cloud Storage Bucket name that is used store the flow logs.
Default value: MANUAL
MANUAL: Account will be mapped to the account group mentioned in defaultAccountGroupId
.
AUTO: Automatically creates account groups for each top-level folder in the hierarchy.
RECURSIVE: Automatically creates account groups for the folders that are nested within the GCP organization hierarchy.
Applicable only if the accountType
is organization.
Possible values: [MANUAL
, AUTO
, RECURSIVE
]
Applicable only
hierarchySelection object[]
GCP Organization name
features object[]
Responses
- 200
- 400
- 404
successful operation
duplicate_cloud_account_name / duplicate_cloud_account / invalid_account_id_format / duplicate_cloud_account_needs_upgrade / cannot_select_zero_account_groups / invalid_account_group_ids
invalid_account_type
Authorization: x-redlock-auth
name: x-redlock-authtype: apiKeydescription: The x-redlock-auth value is a JSON Web Token (JWT).in: header
- curl
- python
- go
- nodejs
- csharp
- php
- CURL
curl -L 'https://api.prismacloud.io/cas/v1/gcp_account' \
-H 'Content-Type: application/json' \
-H 'x-redlock-auth: <x-redlock-auth>' \
-d '{
"cloudAccount": {
"accountId": "string",
"accountType": "account",
"enabled": true,
"name": "string",
"projectId": "string",
"groupIds": [
"string"
]
},
"credentials": {
"token_uri": "string",
"private_key_id": "string",
"client_x509_cert_url": "string",
"project_id": "string",
"auth_uri": "string",
"auth_provider_x509_cert_url": "string",
"client_email": "string",
"private_key": "string",
"type": "string",
"client_id": "string"
},
"compressionEnabled": true,
"dataflowEnabledProject": "string",
"flowLogStorageBucket": "string",
"accountGroupCreationMode": "MANUAL",
"defaultAccountGroupId": "string",
"hierarchySelection": [
{
"resourceId": "root",
"displayName": "Root",
"nodeType": "string",
"selectionType": "ALL"
}
],
"organizationName": "string",
"features": [
{
"name": "Remediation",
"state": "enabled",
"defaultMemberState": "enabled"
}
]
}'