@googleapis/servicecontrol 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +24 -0
- package/README.md +13 -23
- package/build/index.js +5 -4
- package/build/index.js.map +1 -1
- package/build/v1.d.ts +278 -192
- package/build/v1.js +7 -7
- package/build/v1.js.map +1 -1
- package/build/v2.d.ts +284 -122
- package/build/v2.js +5 -5
- package/build/v2.js.map +1 -1
- package/index.ts +1 -1
- package/package.json +7 -7
- package/v1.ts +264 -191
- package/v2.ts +270 -123
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/servicecontrol-v1.0.0...servicecontrol-v1.1.0) (2023-08-17)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **servicecontrol:** update the API ([d246968](https://github.com/googleapis/google-api-nodejs-client/commit/d24696820ffadef7cf07c9446e9316ae2f099a66))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **servicecontrol:** update the API ([ceadea7](https://github.com/googleapis/google-api-nodejs-client/commit/ceadea74b346965c7a0eccd611186e36a556af11))
|
|
14
|
+
|
|
15
|
+
## 1.0.0 (2023-08-17)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* **servicecontrol:** update the API ([d246968](https://github.com/googleapis/google-api-nodejs-client/commit/d24696820ffadef7cf07c9446e9316ae2f099a66))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
* **servicecontrol:** update the API ([ceadea7](https://github.com/googleapis/google-api-nodejs-client/commit/ceadea74b346965c7a0eccd611186e36a556af11))
|
|
26
|
+
|
|
3
27
|
## [1.0.0](https://www.github.com/googleapis/google-api-nodejs-client/compare/servicecontrol-v0.1.0...servicecontrol-v1.0.0) (2021-03-18)
|
|
4
28
|
|
|
5
29
|
|
package/README.md
CHANGED
|
@@ -4,40 +4,30 @@
|
|
|
4
4
|
|
|
5
5
|
> Provides admission control and telemetry reporting for services integrated with Service Infrastructure.
|
|
6
6
|
|
|
7
|
+
## Support status
|
|
8
|
+
**Note**: Google provides multiple libraries for this service. This library is in
|
|
9
|
+
maintenance mode, and will continue to be made available for users who have
|
|
10
|
+
existing applications. If you're building a new application, or modernizing a
|
|
11
|
+
legacy application, please use [@google-cloud/service-control](https://www.npmjs.com/package/@google-cloud/service-control) instead.
|
|
12
|
+
The [@google-cloud/service-control](https://www.npmjs.com/package/@google-cloud/service-control) library is faster, easier to use, and better maintained.
|
|
13
|
+
|
|
14
|
+
To learn more, see [Client Libraries Explained](https://cloud.google.com/apis/docs/client-libraries-explained).
|
|
15
|
+
|
|
7
16
|
## Installation
|
|
8
17
|
|
|
9
18
|
```sh
|
|
10
|
-
$ npm install googleapis
|
|
19
|
+
$ npm install @googleapis/servicecontrol
|
|
11
20
|
```
|
|
12
21
|
|
|
13
22
|
## Usage
|
|
14
23
|
All documentation and usage information can be found on [GitHub](https://github.com/googleapis/google-api-nodejs-client).
|
|
15
|
-
|
|
16
|
-
## Building a browser bundle
|
|
17
|
-
|
|
18
|
-
This library can be used in a browser. To prepare a single file bundle, clone the
|
|
19
|
-
[repository](https://github.com/googleapis/google-api-nodejs-client) and run
|
|
20
|
-
|
|
21
|
-
```sh
|
|
22
|
-
$ cd src/apis/servicecontrol
|
|
23
|
-
$ npm install
|
|
24
|
-
$ npm run webpack
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
The generated bundle will be written to `dist/servicecontrol.min.js`. Use it from your HTML file:
|
|
28
|
-
|
|
29
|
-
```html
|
|
30
|
-
<script src="/path/to/servicecontrol.min.js"></script>
|
|
31
|
-
<script>
|
|
32
|
-
const { servicecontrol, auth } = Servicecontrol;
|
|
33
|
-
</script>
|
|
34
|
-
```
|
|
24
|
+
Information on classes can be found in [Googleapis Documentation](https://googleapis.dev/nodejs/googleapis/latest/servicecontrol/classes/Servicecontrol.html).
|
|
35
25
|
|
|
36
26
|
## License
|
|
37
|
-
This library is licensed under Apache 2.0. Full license text is available in [LICENSE](https://github.com/googleapis/google-api-nodejs-client/blob/
|
|
27
|
+
This library is licensed under Apache 2.0. Full license text is available in [LICENSE](https://github.com/googleapis/google-api-nodejs-client/blob/main/LICENSE).
|
|
38
28
|
|
|
39
29
|
## Contributing
|
|
40
|
-
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/
|
|
30
|
+
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/main/.github/CONTRIBUTING.md).
|
|
41
31
|
|
|
42
32
|
## Questions/problems?
|
|
43
33
|
* Ask your development related questions on [StackOverflow](http://stackoverflow.com/questions/tagged/google-api-nodejs-client).
|
package/build/index.js
CHANGED
|
@@ -12,22 +12,23 @@
|
|
|
12
12
|
// See the License for the specific language governing permissions and
|
|
13
13
|
// limitations under the License.
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.AuthPlus = exports.servicecontrol_v2 = exports.servicecontrol_v1 = exports.auth = exports.servicecontrol = exports.VERSIONS = void 0;
|
|
15
16
|
/*! THIS FILE IS AUTO-GENERATED */
|
|
16
17
|
const googleapis_common_1 = require("googleapis-common");
|
|
17
18
|
const v1_1 = require("./v1");
|
|
18
|
-
exports
|
|
19
|
+
Object.defineProperty(exports, "servicecontrol_v1", { enumerable: true, get: function () { return v1_1.servicecontrol_v1; } });
|
|
19
20
|
const v2_1 = require("./v2");
|
|
20
|
-
exports
|
|
21
|
+
Object.defineProperty(exports, "servicecontrol_v2", { enumerable: true, get: function () { return v2_1.servicecontrol_v2; } });
|
|
21
22
|
exports.VERSIONS = {
|
|
22
23
|
v1: v1_1.servicecontrol_v1.Servicecontrol,
|
|
23
24
|
v2: v2_1.servicecontrol_v2.Servicecontrol,
|
|
24
25
|
};
|
|
25
26
|
function servicecontrol(versionOrOptions) {
|
|
26
|
-
return googleapis_common_1.getAPI('servicecontrol', versionOrOptions, exports.VERSIONS, this);
|
|
27
|
+
return (0, googleapis_common_1.getAPI)('servicecontrol', versionOrOptions, exports.VERSIONS, this);
|
|
27
28
|
}
|
|
28
29
|
exports.servicecontrol = servicecontrol;
|
|
29
30
|
const auth = new googleapis_common_1.AuthPlus();
|
|
30
31
|
exports.auth = auth;
|
|
31
32
|
var googleapis_common_2 = require("googleapis-common");
|
|
32
|
-
exports
|
|
33
|
+
Object.defineProperty(exports, "AuthPlus", { enumerable: true, get: function () { return googleapis_common_2.AuthPlus; } });
|
|
33
34
|
//# sourceMappingURL=index.js.map
|
package/build/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,4BAA4B;AAC5B,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,gDAAgD;AAChD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,4BAA4B;AAC5B,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,gDAAgD;AAChD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;;;AAEjC,kCAAkC;AAElC,yDAAuE;AACvE,6BAAuC;AA+B/B,kGA/BA,sBAAiB,OA+BA;AA9BzB,6BAAuC;AA+B/B,kGA/BA,sBAAiB,OA+BA;AA7BZ,QAAA,QAAQ,GAAG;IACtB,EAAE,EAAE,sBAAiB,CAAC,cAAc;IACpC,EAAE,EAAE,sBAAiB,CAAC,cAAc;CACrC,CAAC;AAUF,SAAgB,cAAc,CAI5B,gBAI6B;IAE7B,OAAO,IAAA,0BAAM,EAAI,gBAAgB,EAAE,gBAAgB,EAAE,gBAAQ,EAAE,IAAI,CAAC,CAAC;AACvE,CAAC;AAXD,wCAWC;AAED,MAAM,IAAI,GAAG,IAAI,4BAAQ,EAAE,CAAC;AACpB,oBAAI;AAGZ,uDAS2B;AARzB,6GAAA,QAAQ,OAAA"}
|