Skip to content

Falcon Container

Joshua Hiller edited this page Nov 2, 2021 · 17 revisions

CrowdStrike Falcon Twitter URL

Using the Falcon Container service collection

Uber class support Service class support Documentation Version

Table of Contents

Operation ID Description
GetCredentials
PEP 8 get_credentials
Gets the registry credentials

GetCredentials

Gets the registry credentials

PEP8 method name

get_credentials

Content-Type

  • Produces: application/json

Keyword Arguments

No keywords or arguments accepted.

Usage

Service class example (PEP8 syntax)
from falconpy import FalconContainer

falcon = FalconContainer(client_id="API_CLIENT_ID_HERE",
                         client_secret="API_CLIENT_SECRET_HERE"
                         )

response = falcon.get_credentials()
print(response)
Service class example (Operation ID syntax)
from falconpy import FalconContainer

falcon = FalconContainer(client_id="API_CLIENT_ID_HERE",
                         client_secret="API_CLIENT_SECRET_HERE"
                         )

response = falcon.GetCredentials()
print(response)
Uber class example
from falconpy import APIHarness

falcon = APIHarness(client_id="API_CLIENT_ID_HERE",
                    client_secret="API_CLIENT_SECRET_HERE"
                    )

response = falcon.command("GetCredentials")
print(response)

CrowdStrike Falcon

Clone this wiki locally