Skip to content

Commit

Permalink
feat: run the generator (#1384)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkwlui authored and JustinBeckwith committed Oct 11, 2018
1 parent 93d6dca commit fbb1152
Show file tree
Hide file tree
Showing 85 changed files with 16,291 additions and 1,399 deletions.
27 changes: 27 additions & 0 deletions src/apis/accesscontextmanager/README.md
@@ -0,0 +1,27 @@
<img src="https://avatars0.githubusercontent.com/u/1342004?v=3&s=96" alt="Google Inc. logo" title="Google" align="right" height="96" width="96"/>

# @google/accesscontextmanager

> An API for setting attribute based access control to requests to GCP services.
## Installation

```sh
$ npm install @google/accesscontextmanager
```

## Usage
All documentation and usage information can be found on [GitHub](https://github.com/google/google-api-nodejs-client).

## License
This library is licensed under Apache 2.0. Full license text is available in [COPYING](https://github.com/google/google-api-nodejs-client/blob/master/COPYING).

## Contributing
We love contributions! Before submitting a Pull Request, it's always good to start with a new issue first. To learn more, see [CONTRIBUTING](https://github.com/google/google-api-nodejs-client/blob/master/.github/CONTRIBUTING.md).

## Questions/problems?
* Ask your development related questions on [StackOverflow](http://stackoverflow.com/questions/tagged/google-api-nodejs-client).
* If you've found an bug/issue, please [file it on GitHub](https://github.com/google/google-api-nodejs-client/issues).


*Crafted with ❤️ by the Google Node.js team*
33 changes: 33 additions & 0 deletions src/apis/accesscontextmanager/index.ts
@@ -0,0 +1,33 @@
// Copyright 2018, Google, LLC.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

/*! THIS FILE IS AUTO-GENERATED */

import {getAPI, GoogleConfigurable} from 'googleapis-common';
import {accesscontextmanager_v1beta} from './v1beta';

export const VERSIONS = {
'v1beta': accesscontextmanager_v1beta.Accesscontextmanager,
};

export function accesscontextmanager(version: 'v1beta'):
accesscontextmanager_v1beta.Accesscontextmanager;
export function accesscontextmanager(
options: accesscontextmanager_v1beta.Options):
accesscontextmanager_v1beta.Accesscontextmanager;
export function
accesscontextmanager<T = accesscontextmanager_v1beta.Accesscontextmanager>(
this: GoogleConfigurable,
versionOrOptions: 'v1beta'|accesscontextmanager_v1beta.Options) {
return getAPI<T>('accesscontextmanager', versionOrOptions, VERSIONS, this);
}
24 changes: 24 additions & 0 deletions src/apis/accesscontextmanager/package.json
@@ -0,0 +1,24 @@
{
"name": "@google/accesscontextmanager",
"version": "0.1.0",
"description": "accesscontextmanager",
"main": "index.js",
"types": "index.d.ts",
"keywords": ["google"],
"author": "Google LLC",
"license": "Apache-2.0",
"homepage": "https://github.com/google/google-api-nodejs-client",
"bugs": {
"url" : "https://github.com/google/google-api-nodejs-client/issues"
},
"repository": {
"type": "git",
"url" : "https://github.com/google/google-api-nodejs-client.git"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"googleapis-common": "^0.2.0"
}
}

0 comments on commit fbb1152

Please sign in to comment.