Skip to content

Commit

Permalink
Merge branch 'main' into nodejs-orchestration-airflow-migration
Browse files Browse the repository at this point in the history
  • Loading branch information
sofisl committed Nov 16, 2022
2 parents 11abcf5 + 02f8746 commit c67956f
Show file tree
Hide file tree
Showing 149 changed files with 119,026 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@
"packages/google-cloud-functions": "2.2.3",
"packages/google-cloud-gaming": "3.1.3",
"packages/google-cloud-gkebackup": "0.2.2",
"packages/google-cloud-gkeconnect-gateway": "2.0.5",
"packages/google-cloud-gkehub": "3.2.2",
"packages/google-cloud-gkemulticloud": "0.1.4",
"packages/google-cloud-documentai": "6.1.0",
"packages/google-cloud-filestore": "2.2.0",
"packages/google-cloud-gkeconnect-gateway": "2.0.5",
Expand All @@ -61,10 +64,12 @@
"packages/google-cloud-iot": "3.1.2",
"packages/google-cloud-language": "5.1.2",
"packages/google-cloud-lifesciences": "2.1.2",
"packages/google-cloud-managedidentities": "2.1.3",
"packages/google-cloud-mediatranslation": "3.0.5",
"packages/google-cloud-memcache": "2.1.4",
"packages/google-cloud-metastore": "3.1.2",
"packages/google-cloud-monitoring": "3.0.3",
"packages/google-cloud-networkconnectivity": "2.2.0",
"packages/google-cloud-networkmanagement": "2.3.1",
"packages/google-cloud-networksecurity": "1.0.2",
"packages/google-cloud-notebooks": "2.1.2",
Expand Down
21 changes: 21 additions & 0 deletions packages/google-cloud-managedidentities/.OwlBot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copyright 2021 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.

deep-remove-regex:
- /owl-bot-staging

deep-copy-regex:
- source: /google/cloud/managedidentities/(.*)/.*-nodejs
dest: /owl-bot-staging/google-cloud-managedidentities/$1

7 changes: 7 additions & 0 deletions packages/google-cloud-managedidentities/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
**/node_modules
**/coverage
test/fixtures
build/
docs/
protos/
samples/generated/
3 changes: 3 additions & 0 deletions packages/google-cloud-managedidentities/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "./node_modules/gts"
}
4 changes: 4 additions & 0 deletions packages/google-cloud-managedidentities/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*.ts text eol=lf
*.js text eol=lf
protos/* linguist-generated
**/api-extractor.json linguist-language=JSON-with-Comments
14 changes: 14 additions & 0 deletions packages/google-cloud-managedidentities/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
**/*.log
**/node_modules
.coverage
coverage
.nyc_output
docs/
out/
build/
system-test/secrets.js
system-test/*key.json
*.lock
.DS_Store
package-lock.json
__pycache__
55 changes: 55 additions & 0 deletions packages/google-cloud-managedidentities/.jsdoc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
// Copyright 2022 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
//
// https://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 automatically generated by gapic-generator-typescript. **
// ** https://github.com/googleapis/gapic-generator-typescript **
// ** All changes to this file may be overwritten. **

'use strict';

module.exports = {
opts: {
readme: './README.md',
package: './package.json',
template: './node_modules/jsdoc-fresh',
recurse: true,
verbose: true,
destination: './docs/'
},
plugins: [
'plugins/markdown',
'jsdoc-region-tag'
],
source: {
excludePattern: '(^|\\/|\\\\)[._]',
include: [
'build/src',
'protos'
],
includePattern: '\\.js$'
},
templates: {
copyright: 'Copyright 2022 Google LLC',
includeDate: false,
sourceFiles: false,
systemName: '@google-cloud/managed-identities',
theme: 'lumen',
default: {
outputSourceFiles: false
}
},
markdown: {
idInHeadings: true
}
};
29 changes: 29 additions & 0 deletions packages/google-cloud-managedidentities/.mocharc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
// Copyright 2022 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.
const config = {
"enable-source-maps": true,
"throw-deprecation": true,
"timeout": 10000,
"recursive": true
}
if (process.env.MOCHA_THROW_DEPRECATION === 'false') {
delete config['throw-deprecation'];
}
if (process.env.MOCHA_REPORTER) {
config.reporter = process.env.MOCHA_REPORTER;
}
if (process.env.MOCHA_REPORTER_OUTPUT) {
config['reporter-option'] = `output=${process.env.MOCHA_REPORTER_OUTPUT}`;
}
module.exports = config
24 changes: 24 additions & 0 deletions packages/google-cloud-managedidentities/.nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"report-dir": "./.coverage",
"reporter": ["text", "lcov"],
"exclude": [
"**/*-test",
"**/.coverage",
"**/apis",
"**/benchmark",
"**/conformance",
"**/docs",
"**/samples",
"**/scripts",
"**/protos",
"**/test",
"**/*.d.ts",
".jsdoc.js",
"**/.jsdoc.js",
"karma.conf.js",
"webpack-tests.config.js",
"webpack.config.js"
],
"exclude-after-remap": false,
"all": true
}
6 changes: 6 additions & 0 deletions packages/google-cloud-managedidentities/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
**/node_modules
**/coverage
test/fixtures
build/
docs/
protos/
17 changes: 17 additions & 0 deletions packages/google-cloud-managedidentities/.prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// Copyright 2022 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
//
// https://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.

module.exports = {
...require('gts/.prettierrc.json')
}
16 changes: 16 additions & 0 deletions packages/google-cloud-managedidentities/.repo-metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"client_documentation": "https://cloud.google.com/nodejs/docs/reference/managed-identities/latest",
"api_id": "managedidentities.googleapis.com",
"distribution_name": "@google-cloud/managed-identities",
"release_level": "stable",
"default_version": "v1beta1",
"language": "nodejs",
"name_pretty": "Managed Service for Microsoft Active Directory",
"repo": "googleapis/google-cloud-node",
"product_documentation": "https://cloud.google.com/managed-microsoft-ad/",
"requires_billing": true,
"name": "managedidentities",
"issue_tracker": "https://github.com/googleapis/google-cloud-node/issues",
"api_shortname": "managedidentities",
"library_type": "GAPIC_AUTO"
}
135 changes: 135 additions & 0 deletions packages/google-cloud-managedidentities/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
# Changelog

## [2.1.3](https://github.com/googleapis/nodejs-managed-identities/compare/v2.1.2...v2.1.3) (2022-11-10)


### Bug Fixes

* **deps:** Use google-gax v3.5.2 ([#159](https://github.com/googleapis/nodejs-managed-identities/issues/159)) ([ab386b4](https://github.com/googleapis/nodejs-managed-identities/commit/ab386b4589b7af19af35eca216cb631d897d9165))
* Preserve default values in x-goog-request-params header ([#152](https://github.com/googleapis/nodejs-managed-identities/issues/152)) ([4edac89](https://github.com/googleapis/nodejs-managed-identities/commit/4edac89ee75fe538793b63ab0c5bff2afe0df944))
* Regenerated protos JS and TS definitions ([#162](https://github.com/googleapis/nodejs-managed-identities/issues/162)) ([6c5072d](https://github.com/googleapis/nodejs-managed-identities/commit/6c5072d141a6a37ca1cc89ae2ad53e173eac5188))

## [2.1.2](https://github.com/googleapis/nodejs-managed-identities/compare/v2.1.1...v2.1.2) (2022-09-01)


### Bug Fixes

* Allow passing gax instance to client constructor ([#150](https://github.com/googleapis/nodejs-managed-identities/issues/150)) ([2011b4c](https://github.com/googleapis/nodejs-managed-identities/commit/2011b4c63dbad2d96809819476de20f6403ab352))
* Do not import the whole google-gax from proto JS ([#1553](https://github.com/googleapis/nodejs-managed-identities/issues/1553)) ([#149](https://github.com/googleapis/nodejs-managed-identities/issues/149)) ([88b535a](https://github.com/googleapis/nodejs-managed-identities/commit/88b535a915fd811c1081f639cd04b4c20afcf6ea))

## [2.1.1](https://github.com/googleapis/nodejs-managed-identities/compare/v2.1.0...v2.1.1) (2022-08-23)


### Bug Fixes

* better support for fallback mode ([#145](https://github.com/googleapis/nodejs-managed-identities/issues/145)) ([17ffe79](https://github.com/googleapis/nodejs-managed-identities/commit/17ffe79fc93a6f4e5aab2d252263759cafb19ebb))
* change import long to require ([#146](https://github.com/googleapis/nodejs-managed-identities/issues/146)) ([150ea5f](https://github.com/googleapis/nodejs-managed-identities/commit/150ea5ffc908f80b63c25019d1b00abf56e7c7dc))
* remove pip install statements ([#1546](https://github.com/googleapis/nodejs-managed-identities/issues/1546)) ([#148](https://github.com/googleapis/nodejs-managed-identities/issues/148)) ([5e9ee30](https://github.com/googleapis/nodejs-managed-identities/commit/5e9ee30b914febafe32c3b97b7bd6f6f0e370b4b))

## [2.1.0](https://github.com/googleapis/nodejs-managed-identities/compare/v2.0.0...v2.1.0) (2022-06-30)


### Features

* support regapic LRO ([#137](https://github.com/googleapis/nodejs-managed-identities/issues/137)) ([ee4fadb](https://github.com/googleapis/nodejs-managed-identities/commit/ee4fadbda9b4ecc7495be743e0644daeafc5e5f9))

## [2.0.0](https://github.com/googleapis/nodejs-managed-identities/compare/v1.1.3...v2.0.0) (2022-05-19)


### ⚠ BREAKING CHANGES

* update library to use Node 12 (#132)

### Build System

* update library to use Node 12 ([#132](https://github.com/googleapis/nodejs-managed-identities/issues/132)) ([ef3cb3b](https://github.com/googleapis/nodejs-managed-identities/commit/ef3cb3b081b61db98a33a85d64ad2659d311477b))

### [1.1.3](https://github.com/googleapis/nodejs-managed-identities/compare/v1.1.2...v1.1.3) (2022-01-12)


### Bug Fixes

* **managedidentities:** add ancillary service bindings to service_yaml ([#105](https://github.com/googleapis/nodejs-managed-identities/issues/105)) ([77c1911](https://github.com/googleapis/nodejs-managed-identities/commit/77c1911b9c52443cc4cd1647451130d7314aaf49))

### [1.1.2](https://www.github.com/googleapis/nodejs-managed-identities/compare/v1.1.1...v1.1.2) (2021-12-06)


### Bug Fixes

* **v1beta1:** proper field annotations ([#95](https://www.github.com/googleapis/nodejs-managed-identities/issues/95)) ([a4e06d7](https://www.github.com/googleapis/nodejs-managed-identities/commit/a4e06d791fd4e990a71d059ed44a3e30c9b1f1d6))

### [1.1.1](https://www.github.com/googleapis/nodejs-managed-identities/compare/v1.1.0...v1.1.1) (2021-09-08)


### Bug Fixes

* **build:** update branch to main ([#81](https://www.github.com/googleapis/nodejs-managed-identities/issues/81)) ([5dcd46f](https://www.github.com/googleapis/nodejs-managed-identities/commit/5dcd46f708efa4ca9bbb5e1c2eef6ad59f942918))

## [1.1.0](https://www.github.com/googleapis/nodejs-managed-identities/compare/v1.0.7...v1.1.0) (2021-08-23)


### Features

* turns on self-signed JWT feature flag ([#78](https://www.github.com/googleapis/nodejs-managed-identities/issues/78)) ([0c98ad5](https://www.github.com/googleapis/nodejs-managed-identities/commit/0c98ad5ef15b1afc2de4b9e74a14d7366589cfb3))

### [1.0.7](https://www.github.com/googleapis/nodejs-managed-identities/compare/v1.0.6...v1.0.7) (2021-08-17)


### Bug Fixes

* **deps:** google-gax v2.24.1 ([#76](https://www.github.com/googleapis/nodejs-managed-identities/issues/76)) ([f506d16](https://www.github.com/googleapis/nodejs-managed-identities/commit/f506d16f5fb9a79511ee629841bf2d8bca75699c))

### [1.0.6](https://www.github.com/googleapis/nodejs-managed-identities/compare/v1.0.5...v1.0.6) (2021-07-16)


### Bug Fixes

* Updating WORKSPACE files to use the newest version of the Typescript generator. ([#68](https://www.github.com/googleapis/nodejs-managed-identities/issues/68)) ([c20fd86](https://www.github.com/googleapis/nodejs-managed-identities/commit/c20fd865b86823464b8539c4150307df465636fe))

### [1.0.5](https://www.github.com/googleapis/nodejs-managed-identities/compare/v1.0.4...v1.0.5) (2021-07-12)


### Bug Fixes

* **deps:** google-gax v2.17.1 ([#66](https://www.github.com/googleapis/nodejs-managed-identities/issues/66)) ([6d78b78](https://www.github.com/googleapis/nodejs-managed-identities/commit/6d78b78f9c441006d8f61e711f3304c84b3aa5b6))

### [1.0.4](https://www.github.com/googleapis/nodejs-managed-identities/compare/v1.0.3...v1.0.4) (2021-06-29)


### Bug Fixes

* **deps:** google-gax v2.17.0 with mTLS ([#63](https://www.github.com/googleapis/nodejs-managed-identities/issues/63)) ([14f7983](https://www.github.com/googleapis/nodejs-managed-identities/commit/14f79832681230295b64ebe9fc036a8d38dd50a7))

### [1.0.3](https://www.github.com/googleapis/nodejs-managed-identities/compare/v1.0.2...v1.0.3) (2021-06-23)


### Bug Fixes

* make request optional in all cases ([#59](https://www.github.com/googleapis/nodejs-managed-identities/issues/59)) ([e9bf7c3](https://www.github.com/googleapis/nodejs-managed-identities/commit/e9bf7c3d97394c7d491f0cab064d53e30b23d2dd))

### [1.0.2](https://www.github.com/googleapis/nodejs-managed-identities/compare/v1.0.1...v1.0.2) (2021-05-25)


### Bug Fixes

* GoogleAdsError missing using generator version after 1.3.0 ([#52](https://www.github.com/googleapis/nodejs-managed-identities/issues/52)) ([747a6f2](https://www.github.com/googleapis/nodejs-managed-identities/commit/747a6f2ee3a7a6d341ad5f3825a22f31886474ac))

### [1.0.1](https://www.github.com/googleapis/nodejs-managed-identities/compare/v1.0.0...v1.0.1) (2021-05-12)


### Bug Fixes

* **deps:** require google-gax v2.12.0 ([#44](https://www.github.com/googleapis/nodejs-managed-identities/issues/44)) ([bc171dc](https://www.github.com/googleapis/nodejs-managed-identities/commit/bc171dc8b143a2964bdb737a2c665a9386d1f47f))
* use require() to load JSON protos ([#47](https://www.github.com/googleapis/nodejs-managed-identities/issues/47)) ([15c5a32](https://www.github.com/googleapis/nodejs-managed-identities/commit/15c5a325dbceaa505d54165da687e9c317f7ded2))

## 1.0.0 (2021-01-12)


### ⚠ BREAKING CHANGES

* generate stub of library

### Features

* generate stub of library ([4bebad5](https://www.github.com/googleapis/nodejs-managed-identities/commit/4bebad598be8cf7280bfcd9a2e8a6142a6778e1a))
* initial stub of library ([#3](https://www.github.com/googleapis/nodejs-managed-identities/issues/3)) ([d2a37f6](https://www.github.com/googleapis/nodejs-managed-identities/commit/d2a37f6431257415122312a77fff24c7f8963b61))
Loading

0 comments on commit c67956f

Please sign in to comment.