Skip to content
Closed
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-realtimebidding</artifactId>
<version>v1-rev20250508-2.0.0</version>
<version>v1-rev20260114-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-realtimebidding:v1-rev20250508-2.0.0'
implementation 'com.google.apis:google-api-services-realtimebidding:v1-rev20260114-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public class RealTimeBidding extends com.google.api.client.googleapis.services.j
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </li>
* </ul>
* @param jsonFactory JSON factory, which may be:
Expand Down Expand Up @@ -2315,7 +2315,7 @@ public Delete set(String parameterName, Object value) {
* optional parameters, call the {@link Get#execute()} method to invoke the remote operation.
*
* @param name Required. Name of the pretargeting configuration to get. Format:
* bidders/{bidderAccountId}/pretargetingConfig/{configId}
* bidders/{bidderAccountId}/pretargetingConfigs/{configId}
* @return the request
*/
public Get get(java.lang.String name) throws java.io.IOException {
Expand All @@ -2342,7 +2342,7 @@ public class Get extends RealTimeBiddingRequest<com.google.api.services.realtime
* must be called to initialize this instance immediately after invoking the constructor. </p>
*
* @param name Required. Name of the pretargeting configuration to get. Format:
* bidders/{bidderAccountId}/pretargetingConfig/{configId}
* bidders/{bidderAccountId}/pretargetingConfigs/{configId}
* @since 1.13
*/
protected Get(java.lang.String name) {
Expand Down Expand Up @@ -2422,21 +2422,21 @@ public Get setUploadProtocol(java.lang.String uploadProtocol) {

/**
* Required. Name of the pretargeting configuration to get. Format:
* bidders/{bidderAccountId}/pretargetingConfig/{configId}
* bidders/{bidderAccountId}/pretargetingConfigs/{configId}
*/
@com.google.api.client.util.Key
private java.lang.String name;

/** Required. Name of the pretargeting configuration to get. Format:
bidders/{bidderAccountId}/pretargetingConfig/{configId}
bidders/{bidderAccountId}/pretargetingConfigs/{configId}
*/
public java.lang.String getName() {
return name;
}

/**
* Required. Name of the pretargeting configuration to get. Format:
* bidders/{bidderAccountId}/pretargetingConfig/{configId}
* bidders/{bidderAccountId}/pretargetingConfigs/{configId}
*/
public Get setName(java.lang.String name) {
if (!getSuppressPatternChecks()) {
Expand Down Expand Up @@ -6512,8 +6512,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* </li>
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </ul>
* @param jsonFactory JSON factory, which may be:
* <ul>
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-realtimebidding</artifactId>
<version>v1-rev20250508-2.0.0</version>
<name>Real-time Bidding API v1-rev20250508-2.0.0</name>
<version>v1-rev20260114-2.0.0</version>
<name>Real-time Bidding API v1-rev20260114-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-realtimebidding/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-realtimebidding</artifactId>
<version>v1-rev20250508-2.0.0</version>
<version>v1-rev20260114-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-realtimebidding:v1-rev20250508-2.0.0'
implementation 'com.google.apis:google-api-services-realtimebidding:v1-rev20260114-2.0.0'
}
```

Expand Down
Loading