Skip to content

Commit aeb2748

Browse files
1 parent 764730e commit aeb2748

File tree

12 files changed

+108
-90
lines changed

12 files changed

+108
-90
lines changed

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

clients/google-api-services-alloydb/v1/2.0.0/com/google/api/services/alloydb/v1/model/Instance.java

Lines changed: 30 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,16 @@ public final class Instance extends com.google.api.client.json.GenericJson {
6363
private String createTime;
6464

6565
/**
66-
* Database flags. Set at instance level. * They are copied from primary instance on read instance
67-
* creation. * Read instances can set new or override existing flags that are relevant for reads,
68-
* e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not
69-
* be present on primary. This is a list of "key": "value" pairs. "key": The name of the flag.
70-
* These flags are passed at instance setup time, so include both server options and system
71-
* variables for Postgres. Flags are specified with underscores, not hyphens. "value": The value
72-
* of the flag. Booleans are set to **on** for true and **off** for false. This field must be
73-
* omitted if the flag doesn't take a value.
66+
* Database flags. Set at the instance level. They are copied from the primary instance on
67+
* secondary instance creation. Flags that have restrictions default to the value at primary
68+
* instance on read instances during creation. Read instances can set new flags or override
69+
* existing flags that are relevant for reads, for example, for enabling columnar cache on a read
70+
* instance. Flags set on read instance might or might not be present on the primary instance.
71+
* This is a list of "key": "value" pairs. "key": The name of the flag. These flags are passed at
72+
* instance setup time, so include both server options and system variables for Postgres. Flags
73+
* are specified with underscores, not hyphens. "value": The value of the flag. Booleans are set
74+
* to **on** for true and **off** for false. This field must be omitted if the flag doesn't take a
75+
* value.
7476
* The value may be {@code null}.
7577
*/
7678
@com.google.api.client.util.Key
@@ -323,29 +325,33 @@ public Instance setCreateTime(String createTime) {
323325
}
324326

325327
/**
326-
* Database flags. Set at instance level. * They are copied from primary instance on read instance
327-
* creation. * Read instances can set new or override existing flags that are relevant for reads,
328-
* e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not
329-
* be present on primary. This is a list of "key": "value" pairs. "key": The name of the flag.
330-
* These flags are passed at instance setup time, so include both server options and system
331-
* variables for Postgres. Flags are specified with underscores, not hyphens. "value": The value
332-
* of the flag. Booleans are set to **on** for true and **off** for false. This field must be
333-
* omitted if the flag doesn't take a value.
328+
* Database flags. Set at the instance level. They are copied from the primary instance on
329+
* secondary instance creation. Flags that have restrictions default to the value at primary
330+
* instance on read instances during creation. Read instances can set new flags or override
331+
* existing flags that are relevant for reads, for example, for enabling columnar cache on a read
332+
* instance. Flags set on read instance might or might not be present on the primary instance.
333+
* This is a list of "key": "value" pairs. "key": The name of the flag. These flags are passed at
334+
* instance setup time, so include both server options and system variables for Postgres. Flags
335+
* are specified with underscores, not hyphens. "value": The value of the flag. Booleans are set
336+
* to **on** for true and **off** for false. This field must be omitted if the flag doesn't take a
337+
* value.
334338
* @return value or {@code null} for none
335339
*/
336340
public java.util.Map<String, java.lang.String> getDatabaseFlags() {
337341
return databaseFlags;
338342
}
339343

340344
/**
341-
* Database flags. Set at instance level. * They are copied from primary instance on read instance
342-
* creation. * Read instances can set new or override existing flags that are relevant for reads,
343-
* e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not
344-
* be present on primary. This is a list of "key": "value" pairs. "key": The name of the flag.
345-
* These flags are passed at instance setup time, so include both server options and system
346-
* variables for Postgres. Flags are specified with underscores, not hyphens. "value": The value
347-
* of the flag. Booleans are set to **on** for true and **off** for false. This field must be
348-
* omitted if the flag doesn't take a value.
345+
* Database flags. Set at the instance level. They are copied from the primary instance on
346+
* secondary instance creation. Flags that have restrictions default to the value at primary
347+
* instance on read instances during creation. Read instances can set new flags or override
348+
* existing flags that are relevant for reads, for example, for enabling columnar cache on a read
349+
* instance. Flags set on read instance might or might not be present on the primary instance.
350+
* This is a list of "key": "value" pairs. "key": The name of the flag. These flags are passed at
351+
* instance setup time, so include both server options and system variables for Postgres. Flags
352+
* are specified with underscores, not hyphens. "value": The value of the flag. Booleans are set
353+
* to **on** for true and **off** for false. This field must be omitted if the flag doesn't take a
354+
* value.
349355
* @param databaseFlags databaseFlags or {@code null} for none
350356
*/
351357
public Instance setDatabaseFlags(java.util.Map<String, java.lang.String> databaseFlags) {

clients/google-api-services-alloydb/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-alloydb</artifactId>
11-
<version>v1-rev20241015-2.0.0</version>
12-
<name>AlloyDB API v1-rev20241015-2.0.0</name>
11+
<version>v1-rev20241023-2.0.0</version>
12+
<name>AlloyDB API v1-rev20241023-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-alloydb/v1alpha/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-alloydb</artifactId>
25-
<version>v1alpha-rev20241015-2.0.0</version>
25+
<version>v1alpha-rev20241023-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-alloydb:v1alpha-rev20241015-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1alpha-rev20241023-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-alloydb/v1alpha/2.0.0/com/google/api/services/alloydb/v1alpha/model/Instance.java

Lines changed: 30 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,16 @@ public final class Instance extends com.google.api.client.json.GenericJson {
6363
private String createTime;
6464

6565
/**
66-
* Database flags. Set at instance level. * They are copied from primary instance on read instance
67-
* creation. * Read instances can set new or override existing flags that are relevant for reads,
68-
* e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not
69-
* be present on primary. This is a list of "key": "value" pairs. "key": The name of the flag.
70-
* These flags are passed at instance setup time, so include both server options and system
71-
* variables for Postgres. Flags are specified with underscores, not hyphens. "value": The value
72-
* of the flag. Booleans are set to **on** for true and **off** for false. This field must be
73-
* omitted if the flag doesn't take a value.
66+
* Database flags. Set at the instance level. They are copied from the primary instance on
67+
* secondary instance creation. Flags that have restrictions default to the value at primary
68+
* instance on read instances during creation. Read instances can set new flags or override
69+
* existing flags that are relevant for reads, for example, for enabling columnar cache on a read
70+
* instance. Flags set on read instance might or might not be present on the primary instance.
71+
* This is a list of "key": "value" pairs. "key": The name of the flag. These flags are passed at
72+
* instance setup time, so include both server options and system variables for Postgres. Flags
73+
* are specified with underscores, not hyphens. "value": The value of the flag. Booleans are set
74+
* to **on** for true and **off** for false. This field must be omitted if the flag doesn't take a
75+
* value.
7476
* The value may be {@code null}.
7577
*/
7678
@com.google.api.client.util.Key
@@ -353,29 +355,33 @@ public Instance setCreateTime(String createTime) {
353355
}
354356

355357
/**
356-
* Database flags. Set at instance level. * They are copied from primary instance on read instance
357-
* creation. * Read instances can set new or override existing flags that are relevant for reads,
358-
* e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not
359-
* be present on primary. This is a list of "key": "value" pairs. "key": The name of the flag.
360-
* These flags are passed at instance setup time, so include both server options and system
361-
* variables for Postgres. Flags are specified with underscores, not hyphens. "value": The value
362-
* of the flag. Booleans are set to **on** for true and **off** for false. This field must be
363-
* omitted if the flag doesn't take a value.
358+
* Database flags. Set at the instance level. They are copied from the primary instance on
359+
* secondary instance creation. Flags that have restrictions default to the value at primary
360+
* instance on read instances during creation. Read instances can set new flags or override
361+
* existing flags that are relevant for reads, for example, for enabling columnar cache on a read
362+
* instance. Flags set on read instance might or might not be present on the primary instance.
363+
* This is a list of "key": "value" pairs. "key": The name of the flag. These flags are passed at
364+
* instance setup time, so include both server options and system variables for Postgres. Flags
365+
* are specified with underscores, not hyphens. "value": The value of the flag. Booleans are set
366+
* to **on** for true and **off** for false. This field must be omitted if the flag doesn't take a
367+
* value.
364368
* @return value or {@code null} for none
365369
*/
366370
public java.util.Map<String, java.lang.String> getDatabaseFlags() {
367371
return databaseFlags;
368372
}
369373

370374
/**
371-
* Database flags. Set at instance level. * They are copied from primary instance on read instance
372-
* creation. * Read instances can set new or override existing flags that are relevant for reads,
373-
* e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not
374-
* be present on primary. This is a list of "key": "value" pairs. "key": The name of the flag.
375-
* These flags are passed at instance setup time, so include both server options and system
376-
* variables for Postgres. Flags are specified with underscores, not hyphens. "value": The value
377-
* of the flag. Booleans are set to **on** for true and **off** for false. This field must be
378-
* omitted if the flag doesn't take a value.
375+
* Database flags. Set at the instance level. They are copied from the primary instance on
376+
* secondary instance creation. Flags that have restrictions default to the value at primary
377+
* instance on read instances during creation. Read instances can set new flags or override
378+
* existing flags that are relevant for reads, for example, for enabling columnar cache on a read
379+
* instance. Flags set on read instance might or might not be present on the primary instance.
380+
* This is a list of "key": "value" pairs. "key": The name of the flag. These flags are passed at
381+
* instance setup time, so include both server options and system variables for Postgres. Flags
382+
* are specified with underscores, not hyphens. "value": The value of the flag. Booleans are set
383+
* to **on** for true and **off** for false. This field must be omitted if the flag doesn't take a
384+
* value.
379385
* @param databaseFlags databaseFlags or {@code null} for none
380386
*/
381387
public Instance setDatabaseFlags(java.util.Map<String, java.lang.String> databaseFlags) {

clients/google-api-services-alloydb/v1alpha/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-alloydb</artifactId>
11-
<version>v1alpha-rev20241015-2.0.0</version>
12-
<name>AlloyDB API v1alpha-rev20241015-2.0.0</name>
11+
<version>v1alpha-rev20241023-2.0.0</version>
12+
<name>AlloyDB API v1alpha-rev20241023-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-alloydb/v1alpha/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-alloydb</artifactId>
25-
<version>v1alpha-rev20241015-2.0.0</version>
25+
<version>v1alpha-rev20241023-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-alloydb:v1alpha-rev20241015-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1alpha-rev20241023-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-alloydb/v1beta/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-alloydb</artifactId>
25-
<version>v1beta-rev20241015-2.0.0</version>
25+
<version>v1beta-rev20241023-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-alloydb:v1beta-rev20241015-2.0.0'
38+
implementation 'com.google.apis:google-api-services-alloydb:v1beta-rev20241023-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-alloydb/v1beta/2.0.0/com/google/api/services/alloydb/v1beta/model/Instance.java

Lines changed: 30 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,16 @@ public final class Instance extends com.google.api.client.json.GenericJson {
6363
private String createTime;
6464

6565
/**
66-
* Database flags. Set at instance level. * They are copied from primary instance on read instance
67-
* creation. * Read instances can set new or override existing flags that are relevant for reads,
68-
* e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not
69-
* be present on primary. This is a list of "key": "value" pairs. "key": The name of the flag.
70-
* These flags are passed at instance setup time, so include both server options and system
71-
* variables for Postgres. Flags are specified with underscores, not hyphens. "value": The value
72-
* of the flag. Booleans are set to **on** for true and **off** for false. This field must be
73-
* omitted if the flag doesn't take a value.
66+
* Database flags. Set at the instance level. They are copied from the primary instance on
67+
* secondary instance creation. Flags that have restrictions default to the value at primary
68+
* instance on read instances during creation. Read instances can set new flags or override
69+
* existing flags that are relevant for reads, for example, for enabling columnar cache on a read
70+
* instance. Flags set on read instance might or might not be present on the primary instance.
71+
* This is a list of "key": "value" pairs. "key": The name of the flag. These flags are passed at
72+
* instance setup time, so include both server options and system variables for Postgres. Flags
73+
* are specified with underscores, not hyphens. "value": The value of the flag. Booleans are set
74+
* to **on** for true and **off** for false. This field must be omitted if the flag doesn't take a
75+
* value.
7476
* The value may be {@code null}.
7577
*/
7678
@com.google.api.client.util.Key
@@ -346,29 +348,33 @@ public Instance setCreateTime(String createTime) {
346348
}
347349

348350
/**
349-
* Database flags. Set at instance level. * They are copied from primary instance on read instance
350-
* creation. * Read instances can set new or override existing flags that are relevant for reads,
351-
* e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not
352-
* be present on primary. This is a list of "key": "value" pairs. "key": The name of the flag.
353-
* These flags are passed at instance setup time, so include both server options and system
354-
* variables for Postgres. Flags are specified with underscores, not hyphens. "value": The value
355-
* of the flag. Booleans are set to **on** for true and **off** for false. This field must be
356-
* omitted if the flag doesn't take a value.
351+
* Database flags. Set at the instance level. They are copied from the primary instance on
352+
* secondary instance creation. Flags that have restrictions default to the value at primary
353+
* instance on read instances during creation. Read instances can set new flags or override
354+
* existing flags that are relevant for reads, for example, for enabling columnar cache on a read
355+
* instance. Flags set on read instance might or might not be present on the primary instance.
356+
* This is a list of "key": "value" pairs. "key": The name of the flag. These flags are passed at
357+
* instance setup time, so include both server options and system variables for Postgres. Flags
358+
* are specified with underscores, not hyphens. "value": The value of the flag. Booleans are set
359+
* to **on** for true and **off** for false. This field must be omitted if the flag doesn't take a
360+
* value.
357361
* @return value or {@code null} for none
358362
*/
359363
public java.util.Map<String, java.lang.String> getDatabaseFlags() {
360364
return databaseFlags;
361365
}
362366

363367
/**
364-
* Database flags. Set at instance level. * They are copied from primary instance on read instance
365-
* creation. * Read instances can set new or override existing flags that are relevant for reads,
366-
* e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not
367-
* be present on primary. This is a list of "key": "value" pairs. "key": The name of the flag.
368-
* These flags are passed at instance setup time, so include both server options and system
369-
* variables for Postgres. Flags are specified with underscores, not hyphens. "value": The value
370-
* of the flag. Booleans are set to **on** for true and **off** for false. This field must be
371-
* omitted if the flag doesn't take a value.
368+
* Database flags. Set at the instance level. They are copied from the primary instance on
369+
* secondary instance creation. Flags that have restrictions default to the value at primary
370+
* instance on read instances during creation. Read instances can set new flags or override
371+
* existing flags that are relevant for reads, for example, for enabling columnar cache on a read
372+
* instance. Flags set on read instance might or might not be present on the primary instance.
373+
* This is a list of "key": "value" pairs. "key": The name of the flag. These flags are passed at
374+
* instance setup time, so include both server options and system variables for Postgres. Flags
375+
* are specified with underscores, not hyphens. "value": The value of the flag. Booleans are set
376+
* to **on** for true and **off** for false. This field must be omitted if the flag doesn't take a
377+
* value.
372378
* @param databaseFlags databaseFlags or {@code null} for none
373379
*/
374380
public Instance setDatabaseFlags(java.util.Map<String, java.lang.String> databaseFlags) {

0 commit comments

Comments
 (0)