@maxim_mazurok/gapi.client.dns-v1beta2 0.0.20220921 → 0.0.20221013
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/index.d.ts +7 -7
- package/package.json +1 -1
- package/readme.md +1 -1
- package/tests.ts +3 -3
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://dns.googleapis.com/$discovery/rest?version=v1beta2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20221013
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -482,7 +482,7 @@ declare namespace gapi.client {
|
|
|
482
482
|
* network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target.
|
|
483
483
|
*/
|
|
484
484
|
forwardingPath?: string;
|
|
485
|
-
/** IPv4 address to forward to. */
|
|
485
|
+
/** IPv4 address to forward queries to. */
|
|
486
486
|
ipv4Address?: string;
|
|
487
487
|
/** IPv6 address to forward to. Does not accept both fields (ipv4 & ipv6) being populated. */
|
|
488
488
|
ipv6Address?: string;
|
|
@@ -590,8 +590,8 @@ declare namespace gapi.client {
|
|
|
590
590
|
interface ResponsePoliciesListResponse {
|
|
591
591
|
header?: ResponseHeader;
|
|
592
592
|
/**
|
|
593
|
-
* The presence of this field indicates that
|
|
594
|
-
*
|
|
593
|
+
* The presence of this field indicates that more results exist following your last page of results in pagination order. To fetch them, make another list request by using this value as
|
|
594
|
+
* your page token. This lets you view the complete contents of even very large collections one page at a time. However, if the contents of the collection change between the first and
|
|
595
595
|
* last paginated list request, the set of all elements returned are an inconsistent view of the collection. You cannot retrieve a consistent snapshot of a collection larger than the
|
|
596
596
|
* maximum page size.
|
|
597
597
|
*/
|
|
@@ -1310,7 +1310,7 @@ declare namespace gapi.client {
|
|
|
1310
1310
|
},
|
|
1311
1311
|
body: GoogleIamV1SetIamPolicyRequest): Request<GoogleIamV1Policy>;
|
|
1312
1312
|
/**
|
|
1313
|
-
* Returns permissions that a caller has on the specified resource. If the resource does not exist, this
|
|
1313
|
+
* Returns permissions that a caller has on the specified resource. If the resource does not exist, this returns an empty set of permissions, not a `NOT_FOUND` error. Note: This
|
|
1314
1314
|
* operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning.
|
|
1315
1315
|
*/
|
|
1316
1316
|
testIamPermissions(request: {
|
|
@@ -2145,7 +2145,7 @@ declare namespace gapi.client {
|
|
|
2145
2145
|
project: string;
|
|
2146
2146
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2147
2147
|
quotaUser?: string;
|
|
2148
|
-
/** User assigned name of the
|
|
2148
|
+
/** User assigned name of the response policy addressed by this request. */
|
|
2149
2149
|
responsePolicy: string;
|
|
2150
2150
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2151
2151
|
upload_protocol?: string;
|
|
@@ -2177,7 +2177,7 @@ declare namespace gapi.client {
|
|
|
2177
2177
|
project: string;
|
|
2178
2178
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2179
2179
|
quotaUser?: string;
|
|
2180
|
-
/** User assigned name of the
|
|
2180
|
+
/** User assigned name of the response policy addressed by this request. */
|
|
2181
2181
|
responsePolicy: string;
|
|
2182
2182
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2183
2183
|
upload_protocol?: string;
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -146,7 +146,7 @@ Sets the access control policy on the specified resource. Replaces any existing
|
|
|
146
146
|
await gapi.client.dns.managedZones.setIamPolicy({ resource: "resource", });
|
|
147
147
|
|
|
148
148
|
/*
|
|
149
|
-
Returns permissions that a caller has on the specified resource. If the resource does not exist, this
|
|
149
|
+
Returns permissions that a caller has on the specified resource. If the resource does not exist, this returns an empty set of permissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning.
|
|
150
150
|
*/
|
|
151
151
|
await gapi.client.dns.managedZones.testIamPermissions({ resource: "resource", });
|
|
152
152
|
|
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20221013
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -690,8 +690,8 @@ gapi.load('client', async () => {
|
|
|
690
690
|
updateMask: "Test string",
|
|
691
691
|
});
|
|
692
692
|
/**
|
|
693
|
-
* Returns permissions that a caller has on the specified resource. If the resource does not exist, this
|
|
694
|
-
*
|
|
693
|
+
* Returns permissions that a caller has on the specified resource. If the resource does not exist, this returns an empty set of permissions, not a `NOT_FOUND` error. Note: This operation
|
|
694
|
+
* is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning.
|
|
695
695
|
*/
|
|
696
696
|
await gapi.client.dns.managedZones.testIamPermissions({
|
|
697
697
|
resource: "Test string",
|