@maxim_mazurok/gapi.client.dns-v1beta2 0.3.20260616 → 0.3.20260707
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 +3 -3
- package/package.json +1 -1
- package/readme.md +2 -2
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: 20260707
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -624,7 +624,7 @@ declare namespace gapi.client {
|
|
|
624
624
|
message?: string;
|
|
625
625
|
}
|
|
626
626
|
interface ChangesResource {
|
|
627
|
-
/** Atomically updates the ResourceRecordSet collection. */
|
|
627
|
+
/** Atomically updates the ResourceRecordSet collection. Note: While `dns.changes.create` is the baseline permission required to invoke this method, additional permissions are checked depending on the specific additions or deletions contained in the payload. */
|
|
628
628
|
create(request: {
|
|
629
629
|
/** V1 error format. */
|
|
630
630
|
'$.xgafv'?: '1' | '2';
|
|
@@ -904,7 +904,7 @@ declare namespace gapi.client {
|
|
|
904
904
|
}): Request<ManagedZoneOperationsListResponse>;
|
|
905
905
|
}
|
|
906
906
|
interface ManagedZonesResource {
|
|
907
|
-
/** Creates a new ManagedZone. */
|
|
907
|
+
/** Creates a new ManagedZone. Note: While `dns.managedZones.create` is the baseline permission required to invoke this method, additional permissions are required if the managed zone configuration references other resources. */
|
|
908
908
|
create(request: {
|
|
909
909
|
/** V1 error format. */
|
|
910
910
|
'$.xgafv'?: '1' | '2';
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -90,7 +90,7 @@ After that you can use Cloud DNS API resources: <!-- TODO: make this work for mu
|
|
|
90
90
|
|
|
91
91
|
```typescript
|
|
92
92
|
/*
|
|
93
|
-
Atomically updates the ResourceRecordSet collection.
|
|
93
|
+
Atomically updates the ResourceRecordSet collection. Note: While `dns.changes.create` is the baseline permission required to invoke this method, additional permissions are checked depending on the specific additions or deletions contained in the payload.
|
|
94
94
|
*/
|
|
95
95
|
await gapi.client.dns.changes.create({
|
|
96
96
|
managedZone: 'managedZone',
|
|
@@ -149,7 +149,7 @@ await gapi.client.dns.managedZoneOperations.list({
|
|
|
149
149
|
});
|
|
150
150
|
|
|
151
151
|
/*
|
|
152
|
-
Creates a new ManagedZone.
|
|
152
|
+
Creates a new ManagedZone. Note: While `dns.managedZones.create` is the baseline permission required to invoke this method, additional permissions are required if the managed zone configuration references other resources.
|
|
153
153
|
*/
|
|
154
154
|
await gapi.client.dns.managedZones.create({project: 'project'});
|
|
155
155
|
|