Interface EnvVarService
-
- All Implemented Interfaces:
public interface EnvVarService
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceEnvVarService.WithRawResponseA view of EnvVarService that provides access to raw HTTP responses for each method.
-
Method Summary
Modifier and Type Method Description abstract EnvVarService.WithRawResponsewithRawResponse()Returns a view of this service that provides access to raw HTTP responses for each method. EnvVarcreate(EnvVarCreateParams params)Create a new env_var. abstract EnvVarcreate(EnvVarCreateParams params, RequestOptions requestOptions)EnvVarretrieve(EnvVarRetrieveParams params)Get an env_var object by its id abstract EnvVarretrieve(EnvVarRetrieveParams params, RequestOptions requestOptions)EnvVarupdate(EnvVarUpdateParams params)Partially update an env_var object. abstract EnvVarupdate(EnvVarUpdateParams params, RequestOptions requestOptions)EnvVarListResponselist()List out all env_vars. abstract EnvVarListResponselist(EnvVarListParams params, RequestOptions requestOptions)EnvVarListResponselist(EnvVarListParams params)EnvVarListResponselist(RequestOptions requestOptions)EnvVardelete(EnvVarDeleteParams params)Delete an env_var object by its id abstract EnvVardelete(EnvVarDeleteParams params, RequestOptions requestOptions)EnvVarreplace(EnvVarReplaceParams params)Create or replace env_var. abstract EnvVarreplace(EnvVarReplaceParams params, RequestOptions requestOptions)-
-
Method Detail
-
withRawResponse
abstract EnvVarService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
create
EnvVar create(EnvVarCreateParams params)
Create a new env_var. If there is an existing env_var with the same name as the one specified in the request, will return the existing env_var unmodified
-
create
abstract EnvVar create(EnvVarCreateParams params, RequestOptions requestOptions)
-
retrieve
EnvVar retrieve(EnvVarRetrieveParams params)
Get an env_var object by its id
-
retrieve
abstract EnvVar retrieve(EnvVarRetrieveParams params, RequestOptions requestOptions)
-
update
EnvVar update(EnvVarUpdateParams params)
Partially update an env_var object. Specify the fields to update in the payload. Any object-type fields will be deep-merged with existing content. Currently we do not support removing fields or setting them to null.
-
update
abstract EnvVar update(EnvVarUpdateParams params, RequestOptions requestOptions)
-
list
EnvVarListResponse list()
List out all env_vars. The env_vars are sorted by creation date, with the most recently-created env_vars coming first
-
list
abstract EnvVarListResponse list(EnvVarListParams params, RequestOptions requestOptions)
-
list
EnvVarListResponse list(EnvVarListParams params)
-
list
EnvVarListResponse list(RequestOptions requestOptions)
-
delete
EnvVar delete(EnvVarDeleteParams params)
Delete an env_var object by its id
-
delete
abstract EnvVar delete(EnvVarDeleteParams params, RequestOptions requestOptions)
-
replace
EnvVar replace(EnvVarReplaceParams params)
Create or replace env_var. If there is an existing env_var with the same name as the one specified in the request, will replace the existing env_var with the provided fields
-
replace
abstract EnvVar replace(EnvVarReplaceParams params, RequestOptions requestOptions)
-
-
-
-