@maxim_mazurok/gapi.client.prod_tt_sasportal
TypeScript icon, indicating that this package has built-in type declarations

1.0.20220811 • Public • Published

TypeScript typings for SAS Portal API (Testing) v1alpha1

For detailed description please check documentation.

Installing

Install typings for SAS Portal API (Testing):

npm install @types/gapi.client.prod_tt_sasportal@v1alpha1 --save-dev

Usage

You need to initialize Google API client in your code:

gapi.load('client', () => {
  // now we can use gapi.client
  // ...
});

Then load api client wrapper:

gapi.client.load('prod_tt_sasportal', 'v1alpha1', () => {
  // now we can use gapi.client.prod_tt_sasportal
  // ...
});

Don't forget to authenticate your client before sending any request to resources:

// declare client_id registered in Google Developers Console
var client_id = '',
  scope = [ 
      // Read, create, update, and delete your SAS Portal data.
      'https://www.googleapis.com/auth/sasportal',

      // See your primary Google Account email address
      'https://www.googleapis.com/auth/userinfo.email',
    ],
    immediate = true;
// ...

gapi.auth.authorize(
  { client_id: client_id, scope: scope, immediate: immediate },
  authResult => {
    if (authResult && !authResult.error) {
        /* handle successful authorization */
    } else {
        /* handle authorization error */
    }
});

After that you can use SAS Portal API (Testing) resources:

/*
Returns a requested customer.
*/
await gapi.client.prod_tt_sasportal.customers.get({ name: "name",  });

/*
Returns a list of requested customers.
*/
await gapi.client.prod_tt_sasportal.customers.list({  });

/*
Updates an existing customer.
*/
await gapi.client.prod_tt_sasportal.customers.patch({ name: "name",  });

/*
Returns a requested deployment.
*/
await gapi.client.prod_tt_sasportal.deployments.get({ name: "name",  });

/*
Generates a secret to be used with the ValidateInstaller.
*/
await gapi.client.prod_tt_sasportal.installer.generateSecret({  });

/*
Validates the identity of a Certified Professional Installer (CPI).
*/
await gapi.client.prod_tt_sasportal.installer.validate({  });

/*
Returns a requested node.
*/
await gapi.client.prod_tt_sasportal.nodes.get({ name: "name",  });

/*
Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set.
*/
await gapi.client.prod_tt_sasportal.policies.get({  });

/*
Sets the access control policy on the specified resource. Replaces any existing policy.
*/
await gapi.client.prod_tt_sasportal.policies.set({  });

/*
Returns permissions that a caller has on the specified resource.
*/
await gapi.client.prod_tt_sasportal.policies.test({  });

Readme

Keywords

none

Package Sidebar

Install

npm i @maxim_mazurok/gapi.client.prod_tt_sasportal

Weekly Downloads

4

Version

1.0.20220811

License

MIT

Unpacked Size

618 kB

Total Files

6

Last publish

Collaborators

  • maxim_mazurok