DefinitelyTyped/types/gapi.client.deploymentmanager/gapi.client.deploymentmanager-tests.ts
Alexey Bolisov 4f8a3d571b Add Google APIs typings (#19083)
* Add Google APIs typings

* [gapi.cliebt.* ] Add version as part of typings name and fix gapi.client tslint errors

* versions should not get their own folders
fixing a few typos
using /** syntax so comments show up in editors
export only actual (last) version for now

* export only actual (last) version for now

* merge namespaces and remove unnecessary namespace qualifiers

* remove namespace qualifier for gapi.client.Request from nested namespaces and change Request base interface to Promise

* disable await-promise rule

* fix collision between gapi.client.Request and Request from nested namespace
disable no-irregular-whitespace rule

* sort properties and namespace resources

* remove empty comments
sort resources amd methods in tests and readme.md

* update 'this is autogenerated file' banner to remove this text from gapi.client namespace hint
use multiline comments when comment has several lines

* implement no-trailing-whitespace, no-padding, max-line-length, await-promise, no-irregular-whitespace rules

* add strictFunctionTypes to tsconfig

* fix "Whitespace within parentheses is not allowed" rule

* fix ts-lint rules

* fixes

* remove deprecated replicapool and replicapoolupdater api

* fix no-irregular-whitespace

* fix no-irregular-whitespace
2017-10-09 14:55:04 -07:00

155 lines
6.3 KiB
TypeScript

/* This is stub file for gapi.client.{{=it.name}} definition tests */
/* IMPORTANT.
* This file was automatically generated by https://github.com/Bolisov/google-api-typings-generator. Please do not edit it manually.
* In case of any problems please post issue to https://github.com/Bolisov/google-api-typings-generator
**/
gapi.load('client', () => {
/** now we can use gapi.client */
gapi.client.load('deploymentmanager', 'v2', () => {
/** now we can use gapi.client.deploymentmanager */
/** don't forget to authenticate your client before sending any request to resources: */
/** declare client_id registered in Google Developers Console */
const client_id = '<<PUT YOUR CLIENT ID HERE>>';
const scope = [
/** View and manage your data across Google Cloud Platform services */
'https://www.googleapis.com/auth/cloud-platform',
/** View your data across Google Cloud Platform services */
'https://www.googleapis.com/auth/cloud-platform.read-only',
/** View and manage your Google Cloud Platform management resources and deployment status information */
'https://www.googleapis.com/auth/ndev.cloudman',
/** View your Google Cloud Platform management resources and deployment status information */
'https://www.googleapis.com/auth/ndev.cloudman.readonly',
];
const immediate = true;
gapi.auth.authorize({ client_id, scope, immediate }, authResult => {
if (authResult && !authResult.error) {
/** handle succesfull authorization */
run();
} else {
/** handle authorization error */
}
});
run();
});
async function run() {
/** Cancels and removes the preview currently associated with the deployment. */
await gapi.client.deployments.cancelPreview({
deployment: "deployment",
project: "project",
});
/** Deletes a deployment and all of the resources in the deployment. */
await gapi.client.deployments.delete({
deletePolicy: "deletePolicy",
deployment: "deployment",
project: "project",
});
/** Gets information about a specific deployment. */
await gapi.client.deployments.get({
deployment: "deployment",
project: "project",
});
/** Gets the access control policy for a resource. May be empty if no such policy or resource exists. */
await gapi.client.deployments.getIamPolicy({
project: "project",
resource: "resource",
});
/** Creates a deployment and all of the resources described by the deployment manifest. */
await gapi.client.deployments.insert({
preview: true,
project: "project",
});
/** Lists all deployments for a given project. */
await gapi.client.deployments.list({
filter: "filter",
maxResults: 2,
orderBy: "orderBy",
pageToken: "pageToken",
project: "project",
});
/** Updates a deployment and all of the resources described by the deployment manifest. This method supports patch semantics. */
await gapi.client.deployments.patch({
createPolicy: "createPolicy",
deletePolicy: "deletePolicy",
deployment: "deployment",
preview: true,
project: "project",
});
/** Sets the access control policy on the specified resource. Replaces any existing policy. */
await gapi.client.deployments.setIamPolicy({
project: "project",
resource: "resource",
});
/** Stops an ongoing operation. This does not roll back any work that has already been completed, but prevents any new work from being started. */
await gapi.client.deployments.stop({
deployment: "deployment",
project: "project",
});
/** Returns permissions that a caller has on the specified resource. */
await gapi.client.deployments.testIamPermissions({
project: "project",
resource: "resource",
});
/** Updates a deployment and all of the resources described by the deployment manifest. */
await gapi.client.deployments.update({
createPolicy: "createPolicy",
deletePolicy: "deletePolicy",
deployment: "deployment",
preview: true,
project: "project",
});
/** Gets information about a specific manifest. */
await gapi.client.manifests.get({
deployment: "deployment",
manifest: "manifest",
project: "project",
});
/** Lists all manifests for a given deployment. */
await gapi.client.manifests.list({
deployment: "deployment",
filter: "filter",
maxResults: 3,
orderBy: "orderBy",
pageToken: "pageToken",
project: "project",
});
/** Gets information about a specific operation. */
await gapi.client.operations.get({
operation: "operation",
project: "project",
});
/** Lists all operations for a project. */
await gapi.client.operations.list({
filter: "filter",
maxResults: 2,
orderBy: "orderBy",
pageToken: "pageToken",
project: "project",
});
/** Gets information about a single resource. */
await gapi.client.resources.get({
deployment: "deployment",
project: "project",
resource: "resource",
});
/** Lists all resources in a given deployment. */
await gapi.client.resources.list({
deployment: "deployment",
filter: "filter",
maxResults: 3,
orderBy: "orderBy",
pageToken: "pageToken",
project: "project",
});
/** Lists all resource types for Deployment Manager. */
await gapi.client.types.list({
filter: "filter",
maxResults: 2,
orderBy: "orderBy",
pageToken: "pageToken",
project: "project",
});
}
});