Interface EnvVarServiceAsync
-
- All Implemented Interfaces:
public interface EnvVarServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceEnvVarServiceAsync.WithRawResponseA view of EnvVarServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract EnvVarServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
create
CompletableFuture<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 CompletableFuture<EnvVar> create(EnvVarCreateParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<EnvVar> retrieve(EnvVarRetrieveParams params)
Get an env_var object by its id
-
retrieve
abstract CompletableFuture<EnvVar> retrieve(EnvVarRetrieveParams params, RequestOptions requestOptions)
-
update
CompletableFuture<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 CompletableFuture<EnvVar> update(EnvVarUpdateParams params, RequestOptions requestOptions)
-
list
CompletableFuture<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 CompletableFuture<EnvVarListResponse> list(EnvVarListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<EnvVarListResponse> list(EnvVarListParams params)
-
list
CompletableFuture<EnvVarListResponse> list(RequestOptions requestOptions)
-
delete
CompletableFuture<EnvVar> delete(EnvVarDeleteParams params)
Delete an env_var object by its id
-
delete
abstract CompletableFuture<EnvVar> delete(EnvVarDeleteParams params, RequestOptions requestOptions)
-
replace
CompletableFuture<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 CompletableFuture<EnvVar> replace(EnvVarReplaceParams params, RequestOptions requestOptions)
-
-
-
-