Package app.ductape.sdk.apps
Class AppAuthOperations
java.lang.Object
app.ductape.sdk.apps.AppAuthOperations
TS parity:
Ductape.auths — auth/credential CRUD for an app, backed by the same
appApi.updateApp(appId, { component: 'auth', action, ...data }) dispatch used by
AppCatalogOperations/AppEnvironmentOperations. See app.service.ts
createAuth/updateAuth/fetchAuths/fetchAuth.
TS additionally runs tokens.{body,headers,params,query} through InputsService
to attach a parsed sample/data shape before sending. The Java SDK has no
InputsService equivalent anywhere (verified: no other app/env/action CRUD method in this
SDK performs that parsing either), so this mirrors the rest of the Java SDK's simplification and
forwards tokens as given.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidTSauths.create:getAppBuilder(appTag).createAuth(data).TSauths.fetch:getAppBuilder(appTag).fetchAuth(tag).TSauths.list:getAppBuilder(appTag).fetchAuths().voidTSauths.update:getAppBuilder(appTag).updateAuth(tag, data).
-
Constructor Details
-
AppAuthOperations
-
-
Method Details
-
create
TSauths.create:getAppBuilder(appTag).createAuth(data). -
list
TSauths.list:getAppBuilder(appTag).fetchAuths(). -
fetch
TSauths.fetch:getAppBuilder(appTag).fetchAuth(tag). -
update
TSauths.update:getAppBuilder(appTag).updateAuth(tag, data).
-