Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SsmSap

import { SsmSap } from "https://aws-api.deno.dev/v0.4/services/ssmsap.ts?docs=full";
class SsmSap {
constructor(apiFactory: client.ApiFactory);
async deleteResourcePermission(params: DeleteResourcePermissionInput, opts?: client.RequestOptions): Promise<DeleteResourcePermissionOutput>;
async deregisterApplication(params: DeregisterApplicationInput, opts?: client.RequestOptions): Promise<void>;
async getApplication(params?: GetApplicationInput, opts?: client.RequestOptions): Promise<GetApplicationOutput>;
async getComponent(params: GetComponentInput, opts?: client.RequestOptions): Promise<GetComponentOutput>;
async getDatabase(params?: GetDatabaseInput, opts?: client.RequestOptions): Promise<GetDatabaseOutput>;
async getOperation(params: GetOperationInput, opts?: client.RequestOptions): Promise<GetOperationOutput>;
async getResourcePermission(params: GetResourcePermissionInput, opts?: client.RequestOptions): Promise<GetResourcePermissionOutput>;
async listApplications(params?: ListApplicationsInput, opts?: client.RequestOptions): Promise<ListApplicationsOutput>;
async listComponents(params?: ListComponentsInput, opts?: client.RequestOptions): Promise<ListComponentsOutput>;
async listDatabases(params?: ListDatabasesInput, opts?: client.RequestOptions): Promise<ListDatabasesOutput>;
async listOperations(params: ListOperationsInput, opts?: client.RequestOptions): Promise<ListOperationsOutput>;
async listTagsForResource(params: ListTagsForResourceRequest, opts?: client.RequestOptions): Promise<ListTagsForResourceResponse>;
async putResourcePermission(params: PutResourcePermissionInput, opts?: client.RequestOptions): Promise<PutResourcePermissionOutput>;
async registerApplication(params: RegisterApplicationInput, opts?: client.RequestOptions): Promise<RegisterApplicationOutput>;
async tagResource(params: TagResourceRequest, opts?: client.RequestOptions): Promise<void>;
async untagResource(params: UntagResourceRequest, opts?: client.RequestOptions): Promise<void>;
async updateApplicationSettings(params: UpdateApplicationSettingsInput, opts?: client.RequestOptions): Promise<UpdateApplicationSettingsOutput>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new SsmSap(apiFactory: client.ApiFactory)
[src]

§Methods

§

Removes permissions associated with the target database.

§
deregisterApplication(params: DeregisterApplicationInput, opts?: client.RequestOptions): Promise<void>
[src]

Deregister an SAP application with AWS Systems Manager for SAP. This action does not affect the existing setup of your SAP workloads on Amazon EC2.

§
getApplication(params?: GetApplicationInput, opts?: client.RequestOptions): Promise<GetApplicationOutput>
[src]

Gets an application registered with AWS Systems Manager for SAP. It also returns the components of the application.

§
getComponent(params: GetComponentInput, opts?: client.RequestOptions): Promise<GetComponentOutput>
[src]

Gets the component of an application registered with AWS Systems Manager for SAP.

§
getDatabase(params?: GetDatabaseInput, opts?: client.RequestOptions): Promise<GetDatabaseOutput>
[src]

Gets the SAP HANA database of an application registered with AWS Systems Manager for SAP.

§
getOperation(params: GetOperationInput, opts?: client.RequestOptions): Promise<GetOperationOutput>
[src]

Gets the details of an operation by specifying the operation ID.

§

Gets permissions associated with the target database.

§
listApplications(params?: ListApplicationsInput, opts?: client.RequestOptions): Promise<ListApplicationsOutput>
[src]

Lists all the applications registered with AWS Systems Manager for SAP.

§
listComponents(params?: ListComponentsInput, opts?: client.RequestOptions): Promise<ListComponentsOutput>
[src]

Lists all the components registered with AWS Systems Manager for SAP.

§
listDatabases(params?: ListDatabasesInput, opts?: client.RequestOptions): Promise<ListDatabasesOutput>
[src]

Lists the SAP HANA databases of an application registered with AWS Systems Manager for SAP.

§
listOperations(params: ListOperationsInput, opts?: client.RequestOptions): Promise<ListOperationsOutput>
[src]

Lists the operations performed by AWS Systems Manager for SAP.

§

Lists all tags on an SAP HANA application and/or database registered with AWS Systems Manager for SAP.

§

Adds permissions to the target database.

§

Register an SAP application with AWS Systems Manager for SAP. You must meet the following requirements before registering.

The SAP application you want to register with AWS Systems Manager for SAP is running on Amazon EC2.

AWS Systems Manager Agent must be setup on an Amazon EC2 instance along with the required IAM permissions.

Amazon EC2 instance(s) must have access to the secrets created in AWS Secrets Manager to manage SAP applications and components.

§
tagResource(params: TagResourceRequest, opts?: client.RequestOptions): Promise<void>
[src]

Creates tag for a resource by specifying the ARN.

§
untagResource(params: UntagResourceRequest, opts?: client.RequestOptions): Promise<void>
[src]

Delete the tags for a resource.

§

Updates the settings of an application registered with AWS Systems Manager for SAP.

§Static Properties