@maxim_mazurok/gapi.client.vmwareengine-v1 0.0.20250218 → 0.0.20250420
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 +15 -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://vmwareengine.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250420
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -113,6 +113,8 @@ declare namespace gapi.client {
|
|
|
113
113
|
updateTime?: string;
|
|
114
114
|
}
|
|
115
115
|
interface Constraints {
|
|
116
|
+
/** Output only. Output Only. A list of intervals in which maintenance windows are not allowed. Any time window that overlaps with any of these intervals will be considered invalid. */
|
|
117
|
+
disallowedIntervals?: WeeklyTimeInterval[];
|
|
116
118
|
/** Output only. Minimum number of hours must be allotted for the upgrade activities for each selected day. This is a minimum; the upgrade schedule can allot more hours for the given day. */
|
|
117
119
|
minHoursDay?: number;
|
|
118
120
|
/** Output only. The minimum number of weekly hours must be allotted for the upgrade activities. This is just a minimum; the schedule can assign more weekly hours. */
|
|
@@ -885,6 +887,16 @@ declare namespace gapi.client {
|
|
|
885
887
|
/** Output only. Type of VPC network (INTRANET, INTERNET, or GOOGLE_CLOUD) */
|
|
886
888
|
type?: string;
|
|
887
889
|
}
|
|
890
|
+
interface WeeklyTimeInterval {
|
|
891
|
+
/** Output only. The day on which the interval ends. Can be same as start day. */
|
|
892
|
+
endDay?: string;
|
|
893
|
+
/** Output only. The time on the end day at which the interval ends. */
|
|
894
|
+
endTime?: TimeOfDay;
|
|
895
|
+
/** Output only. The day on which the interval starts. */
|
|
896
|
+
startDay?: string;
|
|
897
|
+
/** Output only. The time on the start day at which the interval starts. */
|
|
898
|
+
startTime?: TimeOfDay;
|
|
899
|
+
}
|
|
888
900
|
interface AnnouncementsResource {
|
|
889
901
|
/** Retrieves a `Announcement` by its resource name. */
|
|
890
902
|
get(request?: {
|
|
@@ -4747,6 +4759,8 @@ declare namespace gapi.client {
|
|
|
4747
4759
|
alt?: string;
|
|
4748
4760
|
/** JSONP */
|
|
4749
4761
|
callback?: string;
|
|
4762
|
+
/** Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations. */
|
|
4763
|
+
extraLocationTypes?: string | string[];
|
|
4750
4764
|
/** Selector specifying which fields to include in a partial response. */
|
|
4751
4765
|
fields?: string;
|
|
4752
4766
|
/** A filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160). */
|