You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/google-api-services-beyondcorp/v1alpha/2.0.0/com/google/api/services/beyondcorp/v1alpha/BeyondCorp.java
+124Lines changed: 124 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5304,6 +5304,45 @@ public List setParent(java.lang.String parent) {
5304
5304
return this;
5305
5305
}
5306
5306
5307
+
/** Optional. Aggregation type. The default is 'DAILY'. */
5308
+
@com.google.api.client.util.Key
5309
+
private java.lang.String aggregation;
5310
+
5311
+
/** Optional. Aggregation type. The default is 'DAILY'.
5312
+
*/
5313
+
public java.lang.String getAggregation() {
5314
+
return aggregation;
5315
+
}
5316
+
5317
+
/** Optional. Aggregation type. The default is 'DAILY'. */
5318
+
public List setAggregation(java.lang.String aggregation) {
5319
+
this.aggregation = aggregation;
5320
+
return this;
5321
+
}
5322
+
5323
+
/**
5324
+
* Optional. Ending time for the duration for which insights are to be pulled. The default
5325
+
* is the current time.
5326
+
*/
5327
+
@com.google.api.client.util.Key
5328
+
private String endTime;
5329
+
5330
+
/** Optional. Ending time for the duration for which insights are to be pulled. The default is the
5331
+
current time.
5332
+
*/
5333
+
public String getEndTime() {
5334
+
return endTime;
5335
+
}
5336
+
5337
+
/**
5338
+
* Optional. Ending time for the duration for which insights are to be pulled. The default
5339
+
* is the current time.
5340
+
*/
5341
+
public List setEndTime(String endTime) {
5342
+
this.endTime = endTime;
5343
+
return this;
5344
+
}
5345
+
5307
5346
/**
5308
5347
* Optional. Filter expression to restrict the insights returned. Supported filter fields:
5309
5348
* * `type` * `category` * `subCategory` Examples: * "category = application AND type =
@@ -5402,6 +5441,29 @@ public List setPageToken(java.lang.String pageToken) {
5402
5441
return this;
5403
5442
}
5404
5443
5444
+
/**
5445
+
* Optional. Starting time for the duration for which insights are to be pulled. The
5446
+
* default is 7 days before the current time.
5447
+
*/
5448
+
@com.google.api.client.util.Key
5449
+
private String startTime;
5450
+
5451
+
/** Optional. Starting time for the duration for which insights are to be pulled. The default is 7 days
5452
+
before the current time.
5453
+
*/
5454
+
public String getStartTime() {
5455
+
return startTime;
5456
+
}
5457
+
5458
+
/**
5459
+
* Optional. Starting time for the duration for which insights are to be pulled. The
5460
+
* default is 7 days before the current time.
5461
+
*/
5462
+
public List setStartTime(String startTime) {
5463
+
this.startTime = startTime;
5464
+
return this;
5465
+
}
5466
+
5405
5467
/** Required. List only metadata or full data. */
5406
5468
@com.google.api.client.util.Key
5407
5469
private java.lang.String view;
@@ -19008,6 +19070,45 @@ public List setParent(java.lang.String parent) {
19008
19070
return this;
19009
19071
}
19010
19072
19073
+
/** Optional. Aggregation type. The default is 'DAILY'. */
19074
+
@com.google.api.client.util.Key
19075
+
private java.lang.String aggregation;
19076
+
19077
+
/** Optional. Aggregation type. The default is 'DAILY'.
19078
+
*/
19079
+
public java.lang.String getAggregation() {
19080
+
return aggregation;
19081
+
}
19082
+
19083
+
/** Optional. Aggregation type. The default is 'DAILY'. */
19084
+
public List setAggregation(java.lang.String aggregation) {
19085
+
this.aggregation = aggregation;
19086
+
return this;
19087
+
}
19088
+
19089
+
/**
19090
+
* Optional. Ending time for the duration for which insights are to be pulled. The default
19091
+
* is the current time.
19092
+
*/
19093
+
@com.google.api.client.util.Key
19094
+
private String endTime;
19095
+
19096
+
/** Optional. Ending time for the duration for which insights are to be pulled. The default is the
19097
+
current time.
19098
+
*/
19099
+
public String getEndTime() {
19100
+
return endTime;
19101
+
}
19102
+
19103
+
/**
19104
+
* Optional. Ending time for the duration for which insights are to be pulled. The default
19105
+
* is the current time.
19106
+
*/
19107
+
public List setEndTime(String endTime) {
19108
+
this.endTime = endTime;
19109
+
return this;
19110
+
}
19111
+
19011
19112
/**
19012
19113
* Optional. Filter expression to restrict the insights returned. Supported filter fields:
19013
19114
* * `type` * `category` * `subCategory` Examples: * "category = application AND type =
@@ -19106,6 +19207,29 @@ public List setPageToken(java.lang.String pageToken) {
19106
19207
return this;
19107
19208
}
19108
19209
19210
+
/**
19211
+
* Optional. Starting time for the duration for which insights are to be pulled. The
19212
+
* default is 7 days before the current time.
19213
+
*/
19214
+
@com.google.api.client.util.Key
19215
+
private String startTime;
19216
+
19217
+
/** Optional. Starting time for the duration for which insights are to be pulled. The default is 7 days
19218
+
before the current time.
19219
+
*/
19220
+
public String getStartTime() {
19221
+
return startTime;
19222
+
}
19223
+
19224
+
/**
19225
+
* Optional. Starting time for the duration for which insights are to be pulled. The
0 commit comments