@maxim_mazurok/gapi.client.cloudresourcemanager-v3 0.0.20231008 → 0.0.20231022

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 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://cloudresourcemanager.googleapis.com/$discovery/rest?version=v3
12
- // Revision: 20231008
12
+ // Revision: 20231022
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -1850,7 +1850,7 @@ declare namespace gapi.client {
1850
1850
  /**
1851
1851
  * Searches organization resources that are visible to the user and satisfy the specified filter. This method returns organizations in an unspecified order. New organizations do not
1852
1852
  * necessarily appear at the end of the results, and may take a small amount of time to appear. Search will only return organizations on which the user has the permission
1853
- * `resourcemanager.organizations.get`
1853
+ * `resourcemanager.organizations.get` or has super admin privileges.
1854
1854
  */
1855
1855
  search(request?: {
1856
1856
  /** V1 error format. */
@@ -2440,9 +2440,9 @@ declare namespace gapi.client {
2440
2440
  },
2441
2441
  body: Project): Request<Operation>;
2442
2442
  /**
2443
- * Search for projects that the caller has both `resourcemanager.projects.get` permission on, and also satisfy the specified query. This method returns projects in an unspecified
2444
- * order. This method is eventually consistent with project mutations; this means that a newly created project may not appear in the results or recent updates to an existing project
2445
- * may not be reflected in the results. To retrieve the latest state of a project, use the GetProject method.
2443
+ * Search for projects that the caller has the `resourcemanager.projects.get` permission on, and also satisfy the specified query. This method returns projects in an unspecified order.
2444
+ * This method is eventually consistent with project mutations; this means that a newly created project may not appear in the results or recent updates to an existing project may not
2445
+ * be reflected in the results. To retrieve the latest state of a project, use the GetProject method.
2446
2446
  */
2447
2447
  search(request?: {
2448
2448
  /** V1 error format. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.cloudresourcemanager-v3",
3
- "version": "0.0.20231008",
3
+ "version": "0.0.20231022",
4
4
  "description": "TypeScript typings for Cloud Resource Manager API v3",
5
5
  "license": "MIT",
6
6
  "author": {
package/readme.md CHANGED
@@ -165,7 +165,7 @@ Gets the access control policy for an organization resource. The policy may be e
165
165
  await gapi.client.cloudresourcemanager.organizations.getIamPolicy({ resource: "resource", });
166
166
 
167
167
  /*
168
- Searches organization resources that are visible to the user and satisfy the specified filter. This method returns organizations in an unspecified order. New organizations do not necessarily appear at the end of the results, and may take a small amount of time to appear. Search will only return organizations on which the user has the permission `resourcemanager.organizations.get`
168
+ Searches organization resources that are visible to the user and satisfy the specified filter. This method returns organizations in an unspecified order. New organizations do not necessarily appear at the end of the results, and may take a small amount of time to appear. Search will only return organizations on which the user has the permission `resourcemanager.organizations.get` or has super admin privileges.
169
169
  */
170
170
  await gapi.client.cloudresourcemanager.organizations.search({ });
171
171
 
@@ -215,7 +215,7 @@ Updates the `display_name` and labels of the project identified by the specified
215
215
  await gapi.client.cloudresourcemanager.projects.patch({ name: "name", });
216
216
 
217
217
  /*
218
- Search for projects that the caller has both `resourcemanager.projects.get` permission on, and also satisfy the specified query. This method returns projects in an unspecified order. This method is eventually consistent with project mutations; this means that a newly created project may not appear in the results or recent updates to an existing project may not be reflected in the results. To retrieve the latest state of a project, use the GetProject method.
218
+ Search for projects that the caller has the `resourcemanager.projects.get` permission on, and also satisfy the specified query. This method returns projects in an unspecified order. This method is eventually consistent with project mutations; this means that a newly created project may not appear in the results or recent updates to an existing project may not be reflected in the results. To retrieve the latest state of a project, use the GetProject method.
219
219
  */
220
220
  await gapi.client.cloudresourcemanager.projects.search({ });
221
221
 
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: 20231008
6
+ // Revision: 20231022
7
7
 
8
8
  gapi.load('client', async () => {
9
9
  /** now we can use gapi.client */
@@ -254,7 +254,7 @@ gapi.load('client', async () => {
254
254
  /**
255
255
  * Searches organization resources that are visible to the user and satisfy the specified filter. This method returns organizations in an unspecified order. New organizations do not
256
256
  * necessarily appear at the end of the results, and may take a small amount of time to appear. Search will only return organizations on which the user has the permission
257
- * `resourcemanager.organizations.get`
257
+ * `resourcemanager.organizations.get` or has super admin privileges.
258
258
  */
259
259
  await gapi.client.cloudresourcemanager.organizations.search({
260
260
  pageSize: 42,
@@ -400,7 +400,7 @@ gapi.load('client', async () => {
400
400
  updateTime: "Test string",
401
401
  });
402
402
  /**
403
- * Search for projects that the caller has both `resourcemanager.projects.get` permission on, and also satisfy the specified query. This method returns projects in an unspecified order.
403
+ * Search for projects that the caller has the `resourcemanager.projects.get` permission on, and also satisfy the specified query. This method returns projects in an unspecified order.
404
404
  * This method is eventually consistent with project mutations; this means that a newly created project may not appear in the results or recent updates to an existing project may not be
405
405
  * reflected in the results. To retrieve the latest state of a project, use the GetProject method.
406
406
  */