ActorEnvVarCollectionClient
Hierarchy
- ResourceClient
- ActorEnvVarCollectionClient
Index
Methods
Properties
Methods
__init__
Initialize the resource client.
Parameters
keyword-onlybase_url: str
API base URL.
keyword-onlypublic_base_url: str
Public CDN base URL.
keyword-onlyhttp_client: HttpClient
HTTP client for making requests.
keyword-onlyresource_path: str
Resource endpoint path (e.g., 'actors', 'datasets').
keyword-onlyclient_registry: ClientRegistry
Bundle of client classes for dependency injection.
optionalkeyword-onlyresource_id: str | None = None
Optional resource ID for single-resource clients.
optionalkeyword-onlyparams: dict | None = None
Optional default parameters for all requests.
Returns None
create
Create a new Actor environment variable.
Parameters
optionalkeyword-onlyis_secret: bool | None = None
Whether the environment variable is secret or not.
keyword-onlyname: str
The name of the environment variable.
keyword-onlyvalue: str
The value of the environment variable.
Returns EnvVar
The created Actor environment variable.
list
List the available Actor environment variables.
Returns ListOfEnvVars
The list of available Actor environment variables.
Properties
resource_id
Get the resource ID.
Sub-client for the Actor environment variable collection.
Provides methods to manage Actor environment variables, e.g. list or create them. Obtain an instance via an appropriate method on the
ActorVersionClientclass.