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-rev20260709-2.0.0</version>
<version>v1-rev20260715-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-rev20260709-2.0.0'
implementation 'com.google.apis:google-api-services-chromemanagement:v1-rev20260715-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4065,7 +4065,9 @@ public QueryContentTransfersBreakdowns set(String parameterName, Object value) {
}
}
/**
* Returns a high-level summary of URL visits for a given customer.
* Returns a high-level summary of URL visits for a given customer. Requires a Chrome Enterprise
* Premium subscription. If the customer does not have this subscription, query results will be
* empty.
*
* Create a request for the method "securityInsights.queryUrlVisits".
*
Expand All @@ -4090,7 +4092,9 @@ public class QueryUrlVisits extends ChromeManagementRequest<com.google.api.servi
java.util.regex.Pattern.compile("^customers/[^/]+$");

/**
* Returns a high-level summary of URL visits for a given customer.
* Returns a high-level summary of URL visits for a given customer. Requires a Chrome Enterprise
* Premium subscription. If the customer does not have this subscription, query results will be
* empty.
*
* Create a request for the method "securityInsights.queryUrlVisits".
*
Expand Down Expand Up @@ -4240,7 +4244,9 @@ public QueryUrlVisits set(String parameterName, Object value) {
}
}
/**
* Returns summaries of URL visits for a given metric and breakdown dimension.
* Returns summaries of URL visits for a given metric and breakdown dimension. Requires a Chrome
* Enterprise Premium subscription. If the customer does not have this subscription, query results
* will be empty.
*
* Create a request for the method "securityInsights.queryUrlVisitsBreakdowns".
*
Expand All @@ -4265,7 +4271,9 @@ public class QueryUrlVisitsBreakdowns extends ChromeManagementRequest<com.google
java.util.regex.Pattern.compile("^customers/[^/]+$");

/**
* Returns summaries of URL visits for a given metric and breakdown dimension.
* Returns summaries of URL visits for a given metric and breakdown dimension. Requires a Chrome
* Enterprise Premium subscription. If the customer does not have this subscription, query results
* will be empty.
*
* Create a request for the method "securityInsights.queryUrlVisitsBreakdowns".
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-chromemanagement</artifactId>
<version>v1-rev20260709-2.0.0</version>
<name>Chrome Management API v1-rev20260709-2.0.0</name>
<version>v1-rev20260715-2.0.0</version>
<name>Chrome Management API v1-rev20260715-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-chromemanagement/v1/README.md
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-rev20260709-2.0.0</version>
<version>v1-rev20260715-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-rev20260709-2.0.0'
implementation 'com.google.apis:google-api-services-chromemanagement:v1-rev20260715-2.0.0'
}
```

Expand Down
Loading