CrowdStrike Falcon CrowdStrike Subreddit

Using the Cloud GCP Registration service collection

Uber class support Service class support Documentation Version Page Updated

Table of Contents

Operation IDDescription
cloud_registration_gcp_get_entities
PEP 8get_entities
Retrieve all GCP entities (organizations, folders, projects) grouped by type with support for FQL filtering, sorting, and pagination.
cloud_registration_gcp_trigger_health_check
PEP 8trigger_health_check
Trigger health check scan for GCP registrations
cloud_registration_gcp_get_registration
PEP 8get_registration
Retrieve a Google Cloud Registration.
cloud_registration_gcp_put_registration
PEP 8update_registration
Creates/Updates a Google Cloud Registration.
cloud_registration_gcp_create_registration
PEP 8create_registration
Create a Google Cloud Registration.
cloud_registration_gcp_update_registration
PEP 8cloud_registration_gcp_update_registration
Update a Google Cloud Registration.
cloud_registration_gcp_delete_registration
PEP 8delete_registration
Deletes a Google Cloud Registration and returns the deleted registration in the response body.

Passing credentials

WARNING

client_id and client_secret are keyword arguments that contain your CrowdStrike API credentials. Please note that all examples below do not hard code these values. (These values are ingested as strings.)

CrowdStrike does not recommend hard coding API credentials or customer identifiers within source code.

cloud_registration_gcp_get_entities

Retrieve all GCP entities (organizations, folders, projects) grouped by type with support for FQL filtering, sorting, and pagination.

PEP8 method name

get_entities

Endpoint

MethodRoute
GET/cloud-security-registration-google-cloud/entities/accounts/v1

Required Scope

cloud-google-cloud-registration:read

Content-Type

  • Produces: application/json

Keyword Arguments

NameServiceUberTypeData typeDescription
idsService Class SupportUber Class Supportqueryarray (string)Google Cloud Registration IDs to filter by.
filterService Class SupportUber Class SupportquerystringFQL (Falcon Query Language) string for filtering results. Allowed filters: entity_type, entity_id, entity_name, registration_id, registration_name, registration_scope, parent_id, ioa_status, iom_status, created, updated
sortService Class SupportUber Class SupportquerystringField and direction for sorting results (e.g., created|desc). Sorting applies across all entity types before grouping.
limitService Class SupportUber Class SupportqueryintegerMaximum number of records to return. Default: 100, Max: 500.
offsetService Class SupportUber Class SupportqueryintegerStarting index of result.
parametersService Class SupportUber Class SupportquerydictionaryFull query string parameters payload in JSON format. Not required when using other keywords.

Usage

Service class example (PEP8 syntax)
from falconpy import CloudGoogleCloudRegistration

# Do not hardcode API credentials!
falcon = CloudGoogleCloudRegistration(client_id=CLIENT_ID,
                              client_secret=CLIENT_SECRET
                              )

id_list = 'ID1,ID2,ID3'  # Can also pass a list here: ['ID1', 'ID2', 'ID3']

response = falcon.get_entities(ids=id_list,
                               filter="string",
                               sort="string",
                               limit=integer,
                               offset=integer
                               )

print(response)
Service class example (Operation ID syntax)
from falconpy import CloudGoogleCloudRegistration

# Do not hardcode API credentials!
falcon = CloudGoogleCloudRegistration(client_id=CLIENT_ID,
                              client_secret=CLIENT_SECRET
                              )

id_list = 'ID1,ID2,ID3'  # Can also pass a list here: ['ID1', 'ID2', 'ID3']

response = falcon.cloud_registration_gcp_get_entities(ids=id_list,
                                                      filter="string",
                                                      sort="string",
                                                      limit=integer,
                                                      offset=integer
                                                      )

print(response)
Uber class example
from falconpy import APIHarnessV2

# Do not hardcode API credentials!
falcon = APIHarnessV2(client_id=CLIENT_ID,
                      client_secret=CLIENT_SECRET
                      )

id_list = 'ID1,ID2,ID3'  # Can also pass a list here: ['ID1', 'ID2', 'ID3']

response = falcon.command("cloud_registration_gcp_get_entities",
                          ids=id_list,
                          filter="string",
                          sort="string",
                          limit=integer,
                          offset=integer
                          )

print(response)

Back to Table of Contents

cloud_registration_gcp_trigger_health_check

Trigger health check scan for GCP registrations

PEP8 method name

trigger_health_check

Endpoint

MethodRoute
POST/cloud-security-registration-google-cloud/entities/registration-scans/v1

Required Scope

cloud-google-cloud-registration:write

Content-Type

  • Consumes: application/json
  • Produces: application/json

Keyword Arguments

NameServiceUberTypeData typeDescription
idsService Class SupportUber Class Supportqueryarray (string)GCP Registration IDs
parametersService Class SupportUber Class SupportquerydictionaryFull query string parameters payload in JSON format. Not required when using other keywords.

Usage

Service class example (PEP8 syntax)
from falconpy import CloudGoogleCloudRegistration

# Do not hardcode API credentials!
falcon = CloudGoogleCloudRegistration(client_id=CLIENT_ID,
                              client_secret=CLIENT_SECRET
                              )

id_list = 'ID1,ID2,ID3'  # Can also pass a list here: ['ID1', 'ID2', 'ID3']

response = falcon.trigger_health_check(ids=id_list)

print(response)
Service class example (Operation ID syntax)
from falconpy import CloudGoogleCloudRegistration

# Do not hardcode API credentials!
falcon = CloudGoogleCloudRegistration(client_id=CLIENT_ID,
                              client_secret=CLIENT_SECRET
                              )

id_list = 'ID1,ID2,ID3'  # Can also pass a list here: ['ID1', 'ID2', 'ID3']

response = falcon.cloud_registration_gcp_trigger_health_check(ids=id_list)

print(response)
Uber class example
from falconpy import APIHarnessV2

# Do not hardcode API credentials!
falcon = APIHarnessV2(client_id=CLIENT_ID,
                      client_secret=CLIENT_SECRET
                      )

id_list = 'ID1,ID2,ID3'  # Can also pass a list here: ['ID1', 'ID2', 'ID3']

response = falcon.command("cloud_registration_gcp_trigger_health_check", ids=id_list)

print(response)

Back to Table of Contents

cloud_registration_gcp_get_registration

Retrieve a Google Cloud Registration.

PEP8 method name

get_registration

Endpoint

MethodRoute
GET/cloud-security-registration-google-cloud/entities/registrations/v1

Required Scope

cloud-google-cloud-registration:read

Content-Type

  • Produces: application/json

Keyword Arguments

NameServiceUberTypeData typeDescription
idsService Class SupportUber Class SupportquerystringGoogle Cloud Registration ID
parametersService Class SupportUber Class SupportquerydictionaryFull query string parameters payload in JSON format. Not required when using other keywords.

Usage

Service class example (PEP8 syntax)
from falconpy import CloudGoogleCloudRegistration

# Do not hardcode API credentials!
falcon = CloudGoogleCloudRegistration(client_id=CLIENT_ID,
                              client_secret=CLIENT_SECRET
                              )

response = falcon.get_registration(ids="string")

print(response)
Service class example (Operation ID syntax)
from falconpy import CloudGoogleCloudRegistration

# Do not hardcode API credentials!
falcon = CloudGoogleCloudRegistration(client_id=CLIENT_ID,
                              client_secret=CLIENT_SECRET
                              )

response = falcon.cloud_registration_gcp_get_registration(ids="string")

print(response)
Uber class example
from falconpy import APIHarnessV2

# Do not hardcode API credentials!
falcon = APIHarnessV2(client_id=CLIENT_ID,
                      client_secret=CLIENT_SECRET
                      )

response = falcon.command("cloud_registration_gcp_get_registration", ids="string")

print(response)

Back to Table of Contents

cloud_registration_gcp_put_registration

Creates/Updates a Google Cloud Registration.

PEP8 method name

update_registration

Endpoint

MethodRoute
PUT/cloud-security-registration-google-cloud/entities/registrations/v1

Required Scope

cloud-google-cloud-registration:write

Content-Type

  • Consumes: application/json
  • Produces: application/json

Keyword Arguments

NameServiceUberTypeData typeDescription
bodyService Class SupportUber Class SupportbodydictionaryFull body payload in JSON format. Not required if using other keywords.
deployment_methodService Class SupportNo Uber Class SupportbodystringThe method of deployment.
entity_idService Class SupportNo Uber Class Supportbodyarray (string)The ID of the entity.
excluded_project_patternsService Class SupportNo Uber Class Supportbodyarray (string)Project patterns that should be excluded.
falcon_client_key_idService Class SupportNo Uber Class SupportbodystringAPI client key ID.
falcon_client_key_typeService Class SupportNo Uber Class SupportbodystringAPI client key type.
infra_manager_regionService Class SupportNo Uber Class SupportbodystringInfrastructure manager region.
infra_project_idService Class SupportNo Uber Class SupportbodystringInfrastructure project ID.
labelsService Class SupportNo Uber Class SupportbodydictionaryProp labels.
productsService Class SupportNo Uber Class Supportbodyarray (dictionary)Products.
registration_nameService Class SupportNo Uber Class SupportbodystringRegistration name.
registration_scopeService Class SupportNo Uber Class SupportbodystringRegistration scope.
resource_name_prefixService Class SupportNo Uber Class SupportbodystringResource name prefix.
resource_name_suffixService Class SupportNo Uber Class SupportbodystringResource name suffix.
tagsService Class SupportNo Uber Class SupportbodydictionaryTags.
wif_project_idService Class SupportNo Uber Class SupportbodystringWIF project ID.

Usage

Service class example (PEP8 syntax)
from falconpy import CloudGoogleCloudRegistration

# Do not hardcode API credentials!
falcon = CloudGoogleCloudRegistration(client_id=CLIENT_ID,
                              client_secret=CLIENT_SECRET
                              )

response = falcon.update_registration(deployment_method="string",
                                      entity_id=["string"],
                                      excluded_project_patterns=["string"],
                                      falcon_client_key_id="string",
                                      falcon_client_key_type="string",
                                      infra_manager_region="string",
                                      infra_project_id="string",
                                      labels={
                                          "additionalProp1": "string",
                                          "additionalProp2": "string",
                                          "additionalProp3": "string"
                                      },
                                      products=[{
                                          "features": ["string"],
                                          "product": "string"
                                      }],
                                      registration_name="string",
                                      registration_scope="string",
                                      resource_name_prefix="string",
                                      resource_name_suffix="string",
                                      tags={
                                          "additionalProp1": "string",
                                          "additionalProp2": "string",
                                          "additionalProp3": "string"
                                      },
                                      wif_project_id="string"
                                      )

print(response)
Service class example (Operation ID syntax)
from falconpy import CloudGoogleCloudRegistration

# Do not hardcode API credentials!
falcon = CloudGoogleCloudRegistration(client_id=CLIENT_ID,
                              client_secret=CLIENT_SECRET
                              )

response = falcon.cloud_registration_gcp_put_registration(deployment_method="string",
                                                          entity_id=["string"],
                                                          excluded_project_patterns=["string"],
                                                          falcon_client_key_id="string",
                                                          falcon_client_key_type="string",
                                                          infra_manager_region="string",
                                                          infra_project_id="string",
                                                          labels={
                                                              "additionalProp1": "string",
                                                              "additionalProp2": "string",
                                                              "additionalProp3": "string"
                                                          },
                                                          products=[{
                                                              "features": ["string"],
                                                              "product": "string"
                                                          }],
                                                          registration_name="string",
                                                          registration_scope="string",
                                                          resource_name_prefix="string",
                                                          resource_name_suffix="string",
                                                          tags={
                                                              "additionalProp1": "string",
                                                              "additionalProp2": "string",
                                                              "additionalProp3": "string"
                                                          },
                                                          wif_project_id="string"
                                                          )

print(response)
Uber class example
from falconpy import APIHarnessV2

# Do not hardcode API credentials!
falcon = APIHarnessV2(client_id=CLIENT_ID,
                      client_secret=CLIENT_SECRET
                      )

body_payload = {
    "resources": [
        {
            "deployment_method": "string",
            "entity_id": [
                "string"
            ],
            "excluded_project_patterns": [
                "string"
            ],
            "falcon_client_key_id": "string",
            "falcon_client_key_type": "string",
            "infra_manager_region": "string",
            "infra_project_id": "string",
            "labels": {
                "additionalProp1": "string",
                "additionalProp2": "string",
                "additionalProp3": "string"
            },
            "products": [
                {
                "features": [
                    "string"
                ],
                "product": "string"
                }
            ],
            "registration_name": "string",
            "registration_scope": "string",
            "resource_name_prefix": "string",
            "resource_name_suffix": "string",
            "tags": {
                "additionalProp1": "string",
                "additionalProp2": "string",
                "additionalProp3": "string"
            },
            "wif_project_id": "string"
        }
    ]
}

response = falcon.command("cloud_registration_gcp_put_registration", body=body_payload)

print(response)

Back to Table of Contents

cloud_registration_gcp_create_registration

Create a Google Cloud Registration.

PEP8 method name

create_registration

Endpoint

MethodRoute
POST/cloud-security-registration-google-cloud/entities/registrations/v1

Required Scope

cloud-google-cloud-registration:write

Content-Type

  • Consumes: application/json
  • Produces: application/json

Keyword Arguments

NameServiceUberTypeData typeDescription
bodyService Class SupportUber Class SupportbodydictionaryFull body payload in JSON format.
deployment_methodService Class SupportNo Uber Class SupportbodystringThe method of deployment.
entity_idService Class SupportNo Uber Class Supportbodyarray (string)The ID of the entity.
excluded_project_patternsService Class SupportNo Uber Class Supportbodyarray (string)Project patterns that should be excluded.
falcon_client_key_idService Class SupportNo Uber Class SupportbodystringAPI client key ID.
falcon_client_key_typeService Class SupportNo Uber Class SupportbodystringAPI client key type.
infra_manager_regionService Class SupportNo Uber Class SupportbodystringInfrastructure manager region.
infra_project_idService Class SupportNo Uber Class SupportbodystringInfrastructure project ID.
labelsService Class SupportNo Uber Class SupportbodydictionaryProp labels.
productsService Class SupportNo Uber Class Supportbodyarray (dictionary)Products.
registration_nameService Class SupportNo Uber Class SupportbodystringRegistration name.
registration_scopeService Class SupportNo Uber Class SupportbodystringRegistration scope.
resource_name_prefixService Class SupportNo Uber Class SupportbodystringResource name prefix.
resource_name_suffixService Class SupportNo Uber Class SupportbodystringResource name suffix.
tagsService Class SupportNo Uber Class SupportbodydictionaryTags.
wif_project_idService Class SupportNo Uber Class SupportbodystringWIF project ID.

Usage

Service class example (PEP8 syntax)
from falconpy import CloudGoogleCloudRegistration

# Do not hardcode API credentials!
falcon = CloudGoogleCloudRegistration(client_id=CLIENT_ID,
                              client_secret=CLIENT_SECRET
                              )

response = falcon.create_registration(deployment_method="string",
                                      entity_id=["string"],
                                      excluded_project_patterns=["string"],
                                      falcon_client_key_id="string",
                                      falcon_client_key_type="string",
                                      infra_manager_region="string",
                                      infra_project_id="string",
                                      labels={
                                          "additionalProp1": "string",
                                          "additionalProp2": "string",
                                          "additionalProp3": "string"
                                      },
                                      products=[{
                                          "features": ["string"],
                                          "product": "string"
                                      }],
                                      registration_name="string",
                                      registration_scope="string",
                                      resource_name_prefix="string",
                                      resource_name_suffix="string",
                                      tags={
                                          "additionalProp1": "string",
                                          "additionalProp2": "string",
                                          "additionalProp3": "string"
                                      },
                                      wif_project_id="string"
                                      )

print(response)
Service class example (Operation ID syntax)
from falconpy import CloudGoogleCloudRegistration

# Do not hardcode API credentials!
falcon = CloudGoogleCloudRegistration(client_id=CLIENT_ID,
                              client_secret=CLIENT_SECRET
                              )

response = falcon.cloud_registration_gcp_create_registration(deployment_method="string",
                                                             entity_id=["string"],
                                                             excluded_project_patterns=["string"],
                                                             falcon_client_key_id="string",
                                                             falcon_client_key_type="string",
                                                             infra_manager_region="string",
                                                             infra_project_id="string",
                                                             labels={
                                                                 "additionalProp1": "string",
                                                                 "additionalProp2": "string",
                                                                 "additionalProp3": "string"
                                                             },
                                                             products=[{
                                                                 "features": ["string"],
                                                                 "product": "string"
                                                             }],
                                                             registration_name="string",
                                                             registration_scope="string",
                                                             resource_name_prefix="string",
                                                             resource_name_suffix="string",
                                                             tags={
                                                                 "additionalProp1": "string",
                                                                 "additionalProp2": "string",
                                                                 "additionalProp3": "string"
                                                             },
                                                             wif_project_id="string"
                                                             )

print(response)
Uber class example
from falconpy import APIHarnessV2

# Do not hardcode API credentials!
falcon = APIHarnessV2(client_id=CLIENT_ID,
                      client_secret=CLIENT_SECRET
                      )

body_payload = {
    "resources": [
        {
            "deployment_method": "string",
            "entity_id": [
                "string"
            ],
            "excluded_project_patterns": [
                "string"
            ],
            "falcon_client_key_id": "string",
            "falcon_client_key_type": "string",
            "infra_manager_region": "string",
            "infra_project_id": "string",
            "labels": {
                "additionalProp1": "string",
                "additionalProp2": "string",
                "additionalProp3": "string"
            },
            "products": [
                {
                "features": [
                    "string"
                ],
                "product": "string"
                }
            ],
            "registration_name": "string",
            "registration_scope": "string",
            "resource_name_prefix": "string",
            "resource_name_suffix": "string",
            "tags": {
                "additionalProp1": "string",
                "additionalProp2": "string",
                "additionalProp3": "string"
            },
            "wif_project_id": "string"
        }
    ]
}

response = falcon.command("cloud_registration_gcp_create_registration", body=body_payload)

print(response)

Back to Table of Contents

cloud_registration_gcp_update_registration

Update a Google Cloud Registration.

PEP8 method name

cloud_registration_gcp_update_registration

Endpoint

MethodRoute
PATCH/cloud-security-registration-google-cloud/entities/registrations/v1

Required Scope

cloud-google-cloud-registration:write

Content-Type

  • Consumes: application/json
  • Produces: application/json

Keyword Arguments

NameServiceUberTypeData typeDescription
bodyService Class SupportUber Class SupportbodydictionaryFull body payload in JSON format.
idsService Class SupportUber Class SupportquerystringGoogle Cloud Registration ID.
deployment_methodService Class SupportNo Uber Class SupportbodystringThe method of deployment.
entity_idService Class SupportNo Uber Class Supportbodyarray (string)The ID of the entity.
excluded_project_patternsService Class SupportNo Uber Class Supportbodyarray (string)Project patterns that should be excluded.
falcon_client_key_idService Class SupportNo Uber Class SupportbodystringAPI client key ID.
falcon_client_key_typeService Class SupportNo Uber Class SupportbodystringAPI client key type.
infra_manager_regionService Class SupportNo Uber Class SupportbodystringInfrastructure manager region.
infra_project_idService Class SupportNo Uber Class SupportbodystringInfrastructure project ID.
labelsService Class SupportNo Uber Class SupportbodydictionaryProp labels.
productsService Class SupportNo Uber Class Supportbodyarray (dictionary)Products.
registration_nameService Class SupportNo Uber Class SupportbodystringRegistration name.
registration_scopeService Class SupportNo Uber Class SupportbodystringRegistration scope.
resource_name_prefixService Class SupportNo Uber Class SupportbodystringResource name prefix.
resource_name_suffixService Class SupportNo Uber Class SupportbodystringResource name suffix.
tagsService Class SupportNo Uber Class SupportbodydictionaryTags.
wif_project_idService Class SupportNo Uber Class SupportbodystringWIF project ID.
parametersService Class SupportUber Class SupportquerydictionaryFull query string parameters payload in JSON format. Not required when using other keywords.

Usage

Service class example (PEP8 syntax)
from falconpy import CloudGoogleCloudRegistration

# Do not hardcode API credentials!
falcon = CloudGoogleCloudRegistration(client_id=CLIENT_ID,
                              client_secret=CLIENT_SECRET
                              )

response = falcon.cloud_registration_gcp_update_registration(ids="string",
                                                             deployment_method="string",
                                                             entity_id=["string"],
                                                             excluded_project_patterns=["string"],
                                                             falcon_client_key_id="string",
                                                             falcon_client_key_type="string",
                                                             infra_manager_region="string",
                                                             infra_project_id="string",
                                                             labels={
                                                                 "additionalProp1": "string",
                                                                 "additionalProp2": "string",
                                                                 "additionalProp3": "string"
                                                             },
                                                             products=[{
                                                                 "features": ["string"],
                                                                 "product": "string"
                                                             }],
                                                             registration_name="string",
                                                             registration_scope="string",
                                                             resource_name_prefix="string",
                                                             resource_name_suffix="string",
                                                             tags={
                                                                 "additionalProp1": "string",
                                                                 "additionalProp2": "string",
                                                                 "additionalProp3": "string"
                                                             },
                                                             wif_project_id="string"
                                                             )

print(response)
Service class example (Operation ID syntax)
from falconpy import CloudGoogleCloudRegistration

# Do not hardcode API credentials!
falcon = CloudGoogleCloudRegistration(client_id=CLIENT_ID,
                              client_secret=CLIENT_SECRET
                              )

response = falcon.cloud_registration_gcp_update_registration(ids="string",
                                                             deployment_method="string",
                                                             entity_id=["string"],
                                                             excluded_project_patterns=["string"],
                                                             falcon_client_key_id="string",
                                                             falcon_client_key_type="string",
                                                             infra_manager_region="string",
                                                             infra_project_id="string",
                                                             labels={
                                                                 "additionalProp1": "string",
                                                                 "additionalProp2": "string",
                                                                 "additionalProp3": "string"
                                                             },
                                                             products=[{
                                                                 "features": ["string"],
                                                                 "product": "string"
                                                             }],
                                                             registration_name="string",
                                                             registration_scope="string",
                                                             resource_name_prefix="string",
                                                             resource_name_suffix="string",
                                                             tags={
                                                                 "additionalProp1": "string",
                                                                 "additionalProp2": "string",
                                                                 "additionalProp3": "string"
                                                             },
                                                             wif_project_id="string"
                                                             )

print(response)
Uber class example
from falconpy import APIHarnessV2

# Do not hardcode API credentials!
falcon = APIHarnessV2(client_id=CLIENT_ID,
                      client_secret=CLIENT_SECRET
                      )

body_payload = {
    "resources": [
        {
            "deployment_method": "string",
            "entity_id": [
                "string"
            ],
            "excluded_project_patterns": [
                "string"
            ],
            "falcon_client_key_id": "string",
            "falcon_client_key_type": "string",
            "infra_manager_region": "string",
            "infra_project_id": "string",
            "labels": {
                "additionalProp1": "string",
                "additionalProp2": "string",
                "additionalProp3": "string"
            },
            "products": [
                {
                "features": [
                    "string"
                ],
                "product": "string"
                }
            ],
            "registration_name": "string",
            "registration_scope": "string",
            "resource_name_prefix": "string",
            "resource_name_suffix": "string",
            "tags": {
                "additionalProp1": "string",
                "additionalProp2": "string",
                "additionalProp3": "string"
            },
            "wif_project_id": "string"
        }
    ]
}

response = falcon.command("cloud_registration_gcp_update_registration",
                          body=body_payload,
                          ids="string"
                          )

print(response)

Back to Table of Contents

cloud_registration_gcp_delete_registration

Deletes a Google Cloud Registration and returns the deleted registration in the response body.

PEP8 method name

delete_registration

Endpoint

MethodRoute
DELETE/cloud-security-registration-google-cloud/entities/registrations/v1

Required Scope

cloud-google-cloud-registration:write

Content-Type

  • Produces: application/json

Keyword Arguments

NameServiceUberTypeData typeDescription
idsService Class SupportUber Class SupportquerystringGoogle Cloud Registration ID
parametersService Class SupportUber Class SupportquerydictionaryFull query string parameters payload in JSON format. Not required when using other keywords.

Usage

Service class example (PEP8 syntax)
from falconpy import CloudGoogleCloudRegistration

# Do not hardcode API credentials!
falcon = CloudGoogleCloudRegistration(client_id=CLIENT_ID,
                              client_secret=CLIENT_SECRET
                              )

response = falcon.delete_registration(ids="string")

print(response)
Service class example (Operation ID syntax)
from falconpy import CloudGoogleCloudRegistration

# Do not hardcode API credentials!
falcon = CloudGoogleCloudRegistration(client_id=CLIENT_ID,
                              client_secret=CLIENT_SECRET
                              )

response = falcon.cloud_registration_gcp_delete_registration(ids="string")

print(response)
Uber class example
from falconpy import APIHarnessV2

# Do not hardcode API credentials!
falcon = APIHarnessV2(client_id=CLIENT_ID,
                      client_secret=CLIENT_SECRET
                      )

response = falcon.command("cloud_registration_gcp_delete_registration", ids="string")

print(response)

Back to Table of Contents