Interface VersionServiceAsync
-
- All Implemented Interfaces:
public interface VersionServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceVersionServiceAsync.WithRawResponseA view of VersionServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
Modifier and Type Method Description abstract VersionServiceAsync.WithRawResponsewithRawResponse()Returns a view of this service that provides access to raw HTTP responses for each method. abstract VersionServiceAsyncwithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. CompletableFuture<BaseTemplateTenantAssociation>retrieve(String version, VersionRetrieveParams params)Fetches a specific version of a tenant template. CompletableFuture<BaseTemplateTenantAssociation>retrieve(String version, VersionRetrieveParams params, RequestOptions requestOptions)CompletableFuture<BaseTemplateTenantAssociation>retrieve(VersionRetrieveParams params)abstract CompletableFuture<BaseTemplateTenantAssociation>retrieve(VersionRetrieveParams params, RequestOptions requestOptions)-
-
Method Detail
-
withRawResponse
abstract VersionServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract VersionServiceAsync withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
retrieve
CompletableFuture<BaseTemplateTenantAssociation> retrieve(String version, VersionRetrieveParams params)
Fetches a specific version of a tenant template.
Supports the following version formats:
latest- The most recent version of the templatepublished- The currently published versionv{version}- A specific version (e.g., "v1", "v2", "v1.0.0")
-
retrieve
CompletableFuture<BaseTemplateTenantAssociation> retrieve(String version, VersionRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<BaseTemplateTenantAssociation> retrieve(VersionRetrieveParams params)
-
retrieve
abstract CompletableFuture<BaseTemplateTenantAssociation> retrieve(VersionRetrieveParams params, RequestOptions requestOptions)
-
-
-
-