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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4438,6 +4438,29 @@ public List setRequestOptionsClientDisplayLanguageCode(java.lang.String requestO
return this;
}

/**
* Optional. Specifies the country/region where the query originated, as a lowercase ISO
* 3166-1 alpha-2 region code (using 'uk' instead of 'gb' for the United Kingdom).
*/
@com.google.api.client.util.Key("requestOptions.countryCode")
private java.lang.String requestOptionsCountryCode;

/** Optional. Specifies the country/region where the query originated, as a lowercase ISO 3166-1
alpha-2 region code (using 'uk' instead of 'gb' for the United Kingdom).
*/
public java.lang.String getRequestOptionsCountryCode() {
return requestOptionsCountryCode;
}

/**
* Optional. Specifies the country/region where the query originated, as a lowercase ISO
* 3166-1 alpha-2 region code (using 'uk' instead of 'gb' for the United Kingdom).
*/
public List setRequestOptionsCountryCode(java.lang.String requestOptionsCountryCode) {
this.requestOptionsCountryCode = requestOptionsCountryCode;
return this;
}

/**
* If you are asked by Google to help with debugging, set this field. Otherwise, ignore this
* field.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@ public final class RequestOptions extends com.google.api.client.json.GenericJson
@com.google.api.client.util.Key
private java.lang.String clientDisplayLanguageCode;

/**
* Optional. Specifies the country/region where the query originated, as a lowercase ISO 3166-1
* alpha-2 region code (using 'uk' instead of 'gb' for the United Kingdom).
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String countryCode;

/**
* Debug options of the request
* The value may be {@code null}.
Expand Down Expand Up @@ -95,6 +103,25 @@ public RequestOptions setClientDisplayLanguageCode(java.lang.String clientDispla
return this;
}

/**
* Optional. Specifies the country/region where the query originated, as a lowercase ISO 3166-1
* alpha-2 region code (using 'uk' instead of 'gb' for the United Kingdom).
* @return value or {@code null} for none
*/
public java.lang.String getCountryCode() {
return countryCode;
}

/**
* Optional. Specifies the country/region where the query originated, as a lowercase ISO 3166-1
* alpha-2 region code (using 'uk' instead of 'gb' for the United Kingdom).
* @param countryCode countryCode or {@code null} for none
*/
public RequestOptions setCountryCode(java.lang.String countryCode) {
this.countryCode = countryCode;
return this;
}

/**
* Debug options of the request
* @return value or {@code null} for none
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-cloudsearch/v1/2.0.0/pom.xml
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-cloudsearch</artifactId>
<version>v1-rev20260610-2.0.0</version>
<name>Cloud Search API v1-rev20260610-2.0.0</name>
<version>v1-rev20260729-2.0.0</version>
<name>Cloud Search API v1-rev20260729-2.0.0</name>
<packaging>jar</packaging>

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

Expand Down
Loading