@maxim_mazurok/gapi.client.cloudresourcemanager-v2 0.0.20250306 → 0.0.20250417
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 +5 -1
- package/package.json +1 -1
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=v2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250417
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -102,12 +102,16 @@ declare namespace gapi.client {
|
|
|
102
102
|
title?: string;
|
|
103
103
|
}
|
|
104
104
|
interface Folder {
|
|
105
|
+
/** Output only. Optional capabilities configured for this folder (via UpdateCapability API). Example: `folders/123/capabilities/app-management`. */
|
|
106
|
+
configuredCapabilities?: string[];
|
|
105
107
|
/** Output only. Timestamp when the Folder was created. Assigned by the server. */
|
|
106
108
|
createTime?: string;
|
|
107
109
|
/** The folder's display name. A folder's display name must be unique amongst its siblings, e.g. no two folders with the same parent can share the same display name. The display name must start and end with a letter or digit, may contain letters, digits, spaces, hyphens and underscores and can be no longer than 30 characters. This is captured by the regular expression: `[\p{L}\p{N}]([\p{L}\p{N}_- ]{0,28}[\p{L}\p{N}])?`. */
|
|
108
110
|
displayName?: string;
|
|
109
111
|
/** Output only. The lifecycle state of the folder. Updates to the lifecycle_state must be performed via DeleteFolder and UndeleteFolder. */
|
|
110
112
|
lifecycleState?: string;
|
|
113
|
+
/** Output only. Management Project associated with this folder (if app-management capability is enabled). Example: `projects/google-mp-123` OUTPUT ONLY. */
|
|
114
|
+
managementProject?: string;
|
|
111
115
|
/** Output only. The resource name of the Folder. Its format is `folders/{folder_id}`, for example: "folders/1234". */
|
|
112
116
|
name?: string;
|
|
113
117
|
/** Required. The Folder's parent's resource name. Updates to the folder's parent must be performed via MoveFolder. */
|