Skip to content

Commit 79a2e2c

Browse files
1 parent fec37de commit 79a2e2c

6 files changed

Lines changed: 124 additions & 9 deletions

File tree

clients/google-api-services-analyticshub/v1/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-analyticshub</artifactId>
25-
<version>v1-rev20260427-2.0.0</version>
25+
<version>v1-rev20260607-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-analyticshub:v1-rev20260427-2.0.0'
38+
implementation 'com.google.apis:google-api-services-analyticshub:v1-rev20260607-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-analyticshub/v1/2.0.0/com/google/api/services/analyticshub/v1/model/BigtableConfig.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818

1919
/**
2020
* Configuration for a Bigtable subscription. The Pub/Sub message will be written to a Bigtable row
21-
* as follows: - row key: subscription name and message ID delimited by #. - columns: message bytes
22-
* written to a single column family "data" with an empty-string column qualifier. - cell timestamp:
23-
* the message publish timestamp.
21+
* as follows: - row key: subscription name, message ID hash, and message ID delimited by `#`. -
22+
* columns: message bytes written to a single column family `data` with an empty-string column
23+
* qualifier. - cell timestamp: the message publish timestamp.
2424
*
2525
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2626
* transmitted over HTTP when working with the Analytics Hub API. For a detailed explanation see:
Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.analyticshub.v1.model;
18+
19+
/**
20+
* Configuration for compressing/decompressing message data using a user-specified compression
21+
* algorithm.
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Analytics Hub API. For a detailed explanation see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class Compression extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. Specifies the compression algorithm to use.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String compressionAlgorithm;
39+
40+
/**
41+
* Required. Specifies whether to compress or decompress the message.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String compressionMode;
46+
47+
/**
48+
* Required. Specifies the compression algorithm to use.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.String getCompressionAlgorithm() {
52+
return compressionAlgorithm;
53+
}
54+
55+
/**
56+
* Required. Specifies the compression algorithm to use.
57+
* @param compressionAlgorithm compressionAlgorithm or {@code null} for none
58+
*/
59+
public Compression setCompressionAlgorithm(java.lang.String compressionAlgorithm) {
60+
this.compressionAlgorithm = compressionAlgorithm;
61+
return this;
62+
}
63+
64+
/**
65+
* Required. Specifies whether to compress or decompress the message.
66+
* @return value or {@code null} for none
67+
*/
68+
public java.lang.String getCompressionMode() {
69+
return compressionMode;
70+
}
71+
72+
/**
73+
* Required. Specifies whether to compress or decompress the message.
74+
* @param compressionMode compressionMode or {@code null} for none
75+
*/
76+
public Compression setCompressionMode(java.lang.String compressionMode) {
77+
this.compressionMode = compressionMode;
78+
return this;
79+
}
80+
81+
@Override
82+
public Compression set(String fieldName, Object value) {
83+
return (Compression) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public Compression clone() {
88+
return (Compression) super.clone();
89+
}
90+
91+
}

clients/google-api-services-analyticshub/v1/2.0.0/com/google/api/services/analyticshub/v1/model/MessageTransform.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@ public final class MessageTransform extends com.google.api.client.json.GenericJs
3737
@com.google.api.client.util.Key
3838
private AIInference aiInference;
3939

40+
/**
41+
* Optional. Compression/Decompression.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private Compression compression;
46+
4047
/**
4148
* Optional. If true, the transform is disabled and will not be applied to messages. Defaults to
4249
* `false`.
@@ -79,6 +86,23 @@ public MessageTransform setAiInference(AIInference aiInference) {
7986
return this;
8087
}
8188

89+
/**
90+
* Optional. Compression/Decompression.
91+
* @return value or {@code null} for none
92+
*/
93+
public Compression getCompression() {
94+
return compression;
95+
}
96+
97+
/**
98+
* Optional. Compression/Decompression.
99+
* @param compression compression or {@code null} for none
100+
*/
101+
public MessageTransform setCompression(Compression compression) {
102+
this.compression = compression;
103+
return this;
104+
}
105+
82106
/**
83107
* Optional. If true, the transform is disabled and will not be applied to messages. Defaults to
84108
* `false`.

clients/google-api-services-analyticshub/v1/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-analyticshub</artifactId>
11-
<version>v1-rev20260427-2.0.0</version>
12-
<name>Analytics Hub API v1-rev20260427-2.0.0</name>
11+
<version>v1-rev20260607-2.0.0</version>
12+
<name>Analytics Hub API v1-rev20260607-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-analyticshub/v1/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-analyticshub</artifactId>
25-
<version>v1-rev20260427-2.0.0</version>
25+
<version>v1-rev20260607-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-analyticshub:v1-rev20260427-2.0.0'
38+
implementation 'com.google.apis:google-api-services-analyticshub:v1-rev20260607-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)