Skip to content

Commit 2da8d4b

Browse files
1 parent fc2f926 commit 2da8d4b

File tree

4 files changed

+130
-6
lines changed

4 files changed

+130
-6
lines changed

clients/google-api-services-beyondcorp/v1alpha/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-beyondcorp</artifactId>
25-
<version>v1alpha-rev20240626-2.0.0</version>
25+
<version>v1alpha-rev20240724-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-beyondcorp:v1alpha-rev20240626-2.0.0'
38+
implementation 'com.google.apis:google-api-services-beyondcorp:v1alpha-rev20240724-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-beyondcorp/v1alpha/2.0.0/com/google/api/services/beyondcorp/v1alpha/BeyondCorp.java

Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5304,6 +5304,45 @@ public List setParent(java.lang.String parent) {
53045304
return this;
53055305
}
53065306

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+
53075346
/**
53085347
* Optional. Filter expression to restrict the insights returned. Supported filter fields:
53095348
* * `type` * `category` * `subCategory` Examples: * "category = application AND type =
@@ -5402,6 +5441,29 @@ public List setPageToken(java.lang.String pageToken) {
54025441
return this;
54035442
}
54045443

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+
54055467
/** Required. List only metadata or full data. */
54065468
@com.google.api.client.util.Key
54075469
private java.lang.String view;
@@ -19008,6 +19070,45 @@ public List setParent(java.lang.String parent) {
1900819070
return this;
1900919071
}
1901019072

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+
1901119112
/**
1901219113
* Optional. Filter expression to restrict the insights returned. Supported filter fields:
1901319114
* * `type` * `category` * `subCategory` Examples: * "category = application AND type =
@@ -19106,6 +19207,29 @@ public List setPageToken(java.lang.String pageToken) {
1910619207
return this;
1910719208
}
1910819209

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
19226+
* default is 7 days before the current time.
19227+
*/
19228+
public List setStartTime(String startTime) {
19229+
this.startTime = startTime;
19230+
return this;
19231+
}
19232+
1910919233
/** Required. List only metadata or full data. */
1911019234
@com.google.api.client.util.Key
1911119235
private java.lang.String view;

clients/google-api-services-beyondcorp/v1alpha/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-beyondcorp</artifactId>
11-
<version>v1alpha-rev20240626-2.0.0</version>
12-
<name>BeyondCorp API v1alpha-rev20240626-2.0.0</name>
11+
<version>v1alpha-rev20240724-2.0.0</version>
12+
<name>BeyondCorp API v1alpha-rev20240724-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-beyondcorp/v1alpha/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-beyondcorp</artifactId>
25-
<version>v1alpha-rev20240626-2.0.0</version>
25+
<version>v1alpha-rev20240724-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-beyondcorp:v1alpha-rev20240626-2.0.0'
38+
implementation 'com.google.apis:google-api-services-beyondcorp:v1alpha-rev20240724-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)