Skip to content

Commit 50ccd70

Browse files
1 parent 6da6e0c commit 50ccd70

File tree

11 files changed

+46
-284
lines changed

11 files changed

+46
-284
lines changed

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

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

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -578,24 +578,21 @@ public Create setParent(java.lang.String parent) {
578578

579579
/**
580580
* Required. The ID of the data exchange. Must contain only Unicode letters, numbers
581-
* (0-9), underscores (_). Should not use characters that require URL-escaping, or
582-
* characters outside of ASCII, spaces. Max length: 100 bytes.
581+
* (0-9), underscores (_). Max length: 100 bytes.
583582
*/
584583
@com.google.api.client.util.Key
585584
private java.lang.String dataExchangeId;
586585

587586
/** Required. The ID of the data exchange. Must contain only Unicode letters, numbers (0-9),
588-
underscores (_). Should not use characters that require URL-escaping, or characters outside of
589-
ASCII, spaces. Max length: 100 bytes.
587+
underscores (_). Max length: 100 bytes.
590588
*/
591589
public java.lang.String getDataExchangeId() {
592590
return dataExchangeId;
593591
}
594592

595593
/**
596594
* Required. The ID of the data exchange. Must contain only Unicode letters, numbers
597-
* (0-9), underscores (_). Should not use characters that require URL-escaping, or
598-
* characters outside of ASCII, spaces. Max length: 100 bytes.
595+
* (0-9), underscores (_). Max length: 100 bytes.
599596
*/
600597
public Create setDataExchangeId(java.lang.String dataExchangeId) {
601598
this.dataExchangeId = dataExchangeId;
@@ -2182,24 +2179,21 @@ public Create setParent(java.lang.String parent) {
21822179

21832180
/**
21842181
* Required. The ID of the listing to create. Must contain only Unicode letters, numbers
2185-
* (0-9), underscores (_). Should not use characters that require URL-escaping, or
2186-
* characters outside of ASCII, spaces. Max length: 100 bytes.
2182+
* (0-9), underscores (_). Max length: 100 bytes.
21872183
*/
21882184
@com.google.api.client.util.Key
21892185
private java.lang.String listingId;
21902186

21912187
/** Required. The ID of the listing to create. Must contain only Unicode letters, numbers (0-9),
2192-
underscores (_). Should not use characters that require URL-escaping, or characters outside of
2193-
ASCII, spaces. Max length: 100 bytes.
2188+
underscores (_). Max length: 100 bytes.
21942189
*/
21952190
public java.lang.String getListingId() {
21962191
return listingId;
21972192
}
21982193

21992194
/**
22002195
* Required. The ID of the listing to create. Must contain only Unicode letters, numbers
2201-
* (0-9), underscores (_). Should not use characters that require URL-escaping, or
2202-
* characters outside of ASCII, spaces. Max length: 100 bytes.
2196+
* (0-9), underscores (_). Max length: 100 bytes.
22032197
*/
22042198
public Create setListingId(java.lang.String listingId) {
22052199
this.listingId = listingId;

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

Lines changed: 0 additions & 97 deletions
This file was deleted.

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

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,6 @@ public final class BigQueryConfig extends com.google.api.client.json.GenericJson
5050
@com.google.api.client.util.Key
5151
private java.lang.String serviceAccountEmail;
5252

53-
/**
54-
* Output only. An output-only field that indicates whether or not the subscription can receive
55-
* messages.
56-
* The value may be {@code null}.
57-
*/
58-
@com.google.api.client.util.Key
59-
private java.lang.String state;
60-
6153
/**
6254
* Optional. The name of the table to which to write data, of the form
6355
* {projectId}.{datasetId}.{tableId}
@@ -140,25 +132,6 @@ public BigQueryConfig setServiceAccountEmail(java.lang.String serviceAccountEmai
140132
return this;
141133
}
142134

143-
/**
144-
* Output only. An output-only field that indicates whether or not the subscription can receive
145-
* messages.
146-
* @return value or {@code null} for none
147-
*/
148-
public java.lang.String getState() {
149-
return state;
150-
}
151-
152-
/**
153-
* Output only. An output-only field that indicates whether or not the subscription can receive
154-
* messages.
155-
* @param state state or {@code null} for none
156-
*/
157-
public BigQueryConfig setState(java.lang.String state) {
158-
this.state = state;
159-
return this;
160-
}
161-
162135
/**
163136
* Optional. The name of the table to which to write data, of the form
164137
* {projectId}.{datasetId}.{tableId}

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

Lines changed: 15 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,11 @@ public final class CloudStorageConfig extends com.google.api.client.json.Generic
8080
private java.lang.Long maxBytes;
8181

8282
/**
83-
* Optional. The maximum duration that can elapse before a new Cloud Storage file is created. Min
84-
* 1 minute, max 10 minutes, default 5 minutes. May not exceed the subscription's acknowledgment
85-
* deadline.
83+
* Optional. File batching settings. If no max_duration setting is specified, a max_duration of 5
84+
* minutes will be set by default. max_duration is required regardless of whether other file
85+
* batching settings are specified. The maximum duration that can elapse before a new Cloud
86+
* Storage file is created. Min 1 minute, max 10 minutes, default 5 minutes. May not exceed the
87+
* subscription's acknowledgement deadline.
8688
* The value may be {@code null}.
8789
*/
8890
@com.google.api.client.util.Key
@@ -107,14 +109,6 @@ public final class CloudStorageConfig extends com.google.api.client.json.Generic
107109
@com.google.api.client.util.Key
108110
private java.lang.String serviceAccountEmail;
109111

110-
/**
111-
* Output only. An output-only field that indicates whether or not the subscription can receive
112-
* messages.
113-
* The value may be {@code null}.
114-
*/
115-
@com.google.api.client.util.Key
116-
private java.lang.String state;
117-
118112
/**
119113
* Optional. If set, message data will be written to Cloud Storage in text format.
120114
* The value may be {@code null}.
@@ -241,19 +235,23 @@ public CloudStorageConfig setMaxBytes(java.lang.Long maxBytes) {
241235
}
242236

243237
/**
244-
* Optional. The maximum duration that can elapse before a new Cloud Storage file is created. Min
245-
* 1 minute, max 10 minutes, default 5 minutes. May not exceed the subscription's acknowledgment
246-
* deadline.
238+
* Optional. File batching settings. If no max_duration setting is specified, a max_duration of 5
239+
* minutes will be set by default. max_duration is required regardless of whether other file
240+
* batching settings are specified. The maximum duration that can elapse before a new Cloud
241+
* Storage file is created. Min 1 minute, max 10 minutes, default 5 minutes. May not exceed the
242+
* subscription's acknowledgement deadline.
247243
* @return value or {@code null} for none
248244
*/
249245
public String getMaxDuration() {
250246
return maxDuration;
251247
}
252248

253249
/**
254-
* Optional. The maximum duration that can elapse before a new Cloud Storage file is created. Min
255-
* 1 minute, max 10 minutes, default 5 minutes. May not exceed the subscription's acknowledgment
256-
* deadline.
250+
* Optional. File batching settings. If no max_duration setting is specified, a max_duration of 5
251+
* minutes will be set by default. max_duration is required regardless of whether other file
252+
* batching settings are specified. The maximum duration that can elapse before a new Cloud
253+
* Storage file is created. Min 1 minute, max 10 minutes, default 5 minutes. May not exceed the
254+
* subscription's acknowledgement deadline.
257255
* @param maxDuration maxDuration or {@code null} for none
258256
*/
259257
public CloudStorageConfig setMaxDuration(String maxDuration) {
@@ -305,25 +303,6 @@ public CloudStorageConfig setServiceAccountEmail(java.lang.String serviceAccount
305303
return this;
306304
}
307305

308-
/**
309-
* Output only. An output-only field that indicates whether or not the subscription can receive
310-
* messages.
311-
* @return value or {@code null} for none
312-
*/
313-
public java.lang.String getState() {
314-
return state;
315-
}
316-
317-
/**
318-
* Output only. An output-only field that indicates whether or not the subscription can receive
319-
* messages.
320-
* @param state state or {@code null} for none
321-
*/
322-
public CloudStorageConfig setState(java.lang.String state) {
323-
this.state = state;
324-
return this;
325-
}
326-
327306
/**
328307
* Optional. If set, message data will be written to Cloud Storage in text format.
329308
* @return value or {@code null} for none

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public final class DeadLetterPolicy extends com.google.api.client.json.GenericJs
4646
/**
4747
* Optional. The maximum number of delivery attempts for any message. The value must be between 5
4848
* and 100. The number of delivery attempts is defined as 1 + (the sum of number of NACKs and
49-
* number of times the acknowledgment deadline has been exceeded for the message). A NACK is any
49+
* number of times the acknowledgement deadline has been exceeded for the message). A NACK is any
5050
* call to ModifyAckDeadline with a 0 deadline. Note that client libraries may automatically
5151
* extend ack_deadlines. This field will be honored on a best effort basis. If this parameter is
5252
* 0, a default value of 5 is used.
@@ -85,7 +85,7 @@ public DeadLetterPolicy setDeadLetterTopic(java.lang.String deadLetterTopic) {
8585
/**
8686
* Optional. The maximum number of delivery attempts for any message. The value must be between 5
8787
* and 100. The number of delivery attempts is defined as 1 + (the sum of number of NACKs and
88-
* number of times the acknowledgment deadline has been exceeded for the message). A NACK is any
88+
* number of times the acknowledgement deadline has been exceeded for the message). A NACK is any
8989
* call to ModifyAckDeadline with a 0 deadline. Note that client libraries may automatically
9090
* extend ack_deadlines. This field will be honored on a best effort basis. If this parameter is
9191
* 0, a default value of 5 is used.
@@ -98,7 +98,7 @@ public java.lang.Integer getMaxDeliveryAttempts() {
9898
/**
9999
* Optional. The maximum number of delivery attempts for any message. The value must be between 5
100100
* and 100. The number of delivery attempts is defined as 1 + (the sum of number of NACKs and
101-
* number of times the acknowledgment deadline has been exceeded for the message). A NACK is any
101+
* number of times the acknowledgement deadline has been exceeded for the message). A NACK is any
102102
* call to ModifyAckDeadline with a 0 deadline. Note that client libraries may automatically
103103
* extend ack_deadlines. This field will be honored on a best effort basis. If this parameter is
104104
* 0, a default value of 5 is used.

0 commit comments

Comments
 (0)