Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-chromemanagement</artifactId>
<version>v1-rev20260715-2.0.0</version>
<version>v1-rev20260907-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-chromemanagement:v1-rev20260715-2.0.0'
implementation 'com.google.apis:google-api-services-chromemanagement:v1-rev20260907-2.0.0'
}
```

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.chromemanagement.v1.model;

/**
* Response to `FindSaasUsageBrowsers` method.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Chrome Management API. For a detailed explanation
* see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class GoogleChromeManagementV1FindSaasUsageBrowsersResponse extends com.google.api.client.json.GenericJson {

/**
* A token, which can be sent as `page_token` to retrieve the next page.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String nextPageToken;

/**
* The list of SaaS usage browser reports.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<GoogleChromeManagementV1SaasUsageBrowser> saasUsageBrowsers;

/**
* Total number of SaaS usage browser reports that match the request.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long totalSize;

/**
* A token, which can be sent as `page_token` to retrieve the next page.
* @return value or {@code null} for none
*/
public java.lang.String getNextPageToken() {
return nextPageToken;
}

/**
* A token, which can be sent as `page_token` to retrieve the next page.
* @param nextPageToken nextPageToken or {@code null} for none
*/
public GoogleChromeManagementV1FindSaasUsageBrowsersResponse setNextPageToken(java.lang.String nextPageToken) {
this.nextPageToken = nextPageToken;
return this;
}

/**
* The list of SaaS usage browser reports.
* @return value or {@code null} for none
*/
public java.util.List<GoogleChromeManagementV1SaasUsageBrowser> getSaasUsageBrowsers() {
return saasUsageBrowsers;
}

/**
* The list of SaaS usage browser reports.
* @param saasUsageBrowsers saasUsageBrowsers or {@code null} for none
*/
public GoogleChromeManagementV1FindSaasUsageBrowsersResponse setSaasUsageBrowsers(java.util.List<GoogleChromeManagementV1SaasUsageBrowser> saasUsageBrowsers) {
this.saasUsageBrowsers = saasUsageBrowsers;
return this;
}

/**
* Total number of SaaS usage browser reports that match the request.
* @return value or {@code null} for none
*/
public java.lang.Long getTotalSize() {
return totalSize;
}

/**
* Total number of SaaS usage browser reports that match the request.
* @param totalSize totalSize or {@code null} for none
*/
public GoogleChromeManagementV1FindSaasUsageBrowsersResponse setTotalSize(java.lang.Long totalSize) {
this.totalSize = totalSize;
return this;
}

@Override
public GoogleChromeManagementV1FindSaasUsageBrowsersResponse set(String fieldName, Object value) {
return (GoogleChromeManagementV1FindSaasUsageBrowsersResponse) super.set(fieldName, value);
}

@Override
public GoogleChromeManagementV1FindSaasUsageBrowsersResponse clone() {
return (GoogleChromeManagementV1FindSaasUsageBrowsersResponse) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.chromemanagement.v1.model;

/**
* Response to `FindSaasUsageProfiles` method.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Chrome Management API. For a detailed explanation
* see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class GoogleChromeManagementV1FindSaasUsageProfilesResponse extends com.google.api.client.json.GenericJson {

/**
* A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted,
* there are no subsequent pages.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String nextPageToken;

/**
* The list of SaaS usage profile reports.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<GoogleChromeManagementV1SaasUsageProfileReport> profileReports;

/**
* Total number of SaaS usage profile reports that match the request.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long totalSize;

/**
* A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted,
* there are no subsequent pages.
* @return value or {@code null} for none
*/
public java.lang.String getNextPageToken() {
return nextPageToken;
}

/**
* A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted,
* there are no subsequent pages.
* @param nextPageToken nextPageToken or {@code null} for none
*/
public GoogleChromeManagementV1FindSaasUsageProfilesResponse setNextPageToken(java.lang.String nextPageToken) {
this.nextPageToken = nextPageToken;
return this;
}

/**
* The list of SaaS usage profile reports.
* @return value or {@code null} for none
*/
public java.util.List<GoogleChromeManagementV1SaasUsageProfileReport> getProfileReports() {
return profileReports;
}

/**
* The list of SaaS usage profile reports.
* @param profileReports profileReports or {@code null} for none
*/
public GoogleChromeManagementV1FindSaasUsageProfilesResponse setProfileReports(java.util.List<GoogleChromeManagementV1SaasUsageProfileReport> profileReports) {
this.profileReports = profileReports;
return this;
}

/**
* Total number of SaaS usage profile reports that match the request.
* @return value or {@code null} for none
*/
public java.lang.Long getTotalSize() {
return totalSize;
}

/**
* Total number of SaaS usage profile reports that match the request.
* @param totalSize totalSize or {@code null} for none
*/
public GoogleChromeManagementV1FindSaasUsageProfilesResponse setTotalSize(java.lang.Long totalSize) {
this.totalSize = totalSize;
return this;
}

@Override
public GoogleChromeManagementV1FindSaasUsageProfilesResponse set(String fieldName, Object value) {
return (GoogleChromeManagementV1FindSaasUsageProfilesResponse) super.set(fieldName, value);
}

@Override
public GoogleChromeManagementV1FindSaasUsageProfilesResponse clone() {
return (GoogleChromeManagementV1FindSaasUsageProfilesResponse) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.chromemanagement.v1.model;

/**
* Response to `FindSaasUsage` method.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Chrome Management API. For a detailed explanation
* see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class GoogleChromeManagementV1FindSaasUsageReportsResponse extends com.google.api.client.json.GenericJson {

/**
* A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted,
* there are no subsequent pages.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String nextPageToken;

/**
* The list of SaaS usage reports.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<GoogleChromeManagementV1SaasUsageReport> saasReports;

/**
* Total number of SaaS usage reports that match the request.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long totalSize;

/**
* A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted,
* there are no subsequent pages.
* @return value or {@code null} for none
*/
public java.lang.String getNextPageToken() {
return nextPageToken;
}

/**
* A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted,
* there are no subsequent pages.
* @param nextPageToken nextPageToken or {@code null} for none
*/
public GoogleChromeManagementV1FindSaasUsageReportsResponse setNextPageToken(java.lang.String nextPageToken) {
this.nextPageToken = nextPageToken;
return this;
}

/**
* The list of SaaS usage reports.
* @return value or {@code null} for none
*/
public java.util.List<GoogleChromeManagementV1SaasUsageReport> getSaasReports() {
return saasReports;
}

/**
* The list of SaaS usage reports.
* @param saasReports saasReports or {@code null} for none
*/
public GoogleChromeManagementV1FindSaasUsageReportsResponse setSaasReports(java.util.List<GoogleChromeManagementV1SaasUsageReport> saasReports) {
this.saasReports = saasReports;
return this;
}

/**
* Total number of SaaS usage reports that match the request.
* @return value or {@code null} for none
*/
public java.lang.Long getTotalSize() {
return totalSize;
}

/**
* Total number of SaaS usage reports that match the request.
* @param totalSize totalSize or {@code null} for none
*/
public GoogleChromeManagementV1FindSaasUsageReportsResponse setTotalSize(java.lang.Long totalSize) {
this.totalSize = totalSize;
return this;
}

@Override
public GoogleChromeManagementV1FindSaasUsageReportsResponse set(String fieldName, Object value) {
return (GoogleChromeManagementV1FindSaasUsageReportsResponse) super.set(fieldName, value);
}

@Override
public GoogleChromeManagementV1FindSaasUsageReportsResponse clone() {
return (GoogleChromeManagementV1FindSaasUsageReportsResponse) super.clone();
}

}
Loading
Loading