Skip to content

Commit c49c77a

Browse files
1 parent b0807f3 commit c49c77a

File tree

18 files changed

+138
-132
lines changed

18 files changed

+138
-132
lines changed

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

clients/google-api-services-osconfig/v1/2.0.0/com/google/api/services/osconfig/v1/model/PatchConfig.java

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ public final class PatchConfig extends com.google.api.client.json.GenericJson {
7474

7575
/**
7676
* Optional. Enables enhanced reporting for the patch job: 1. Allows the patch job to skip
77-
* unpatchable instances, reporting them as SKIPPED. An instance can be unpatchable for two
78-
* reasons: a. The instance runs Container-Optimized OS (COS), which cannot be patched. b. The
79-
* patch job's configuration prohibits patching on Managed Instance Groups (MIGs) through the
80-
* PatchConfig.migInstancesAllowed field, and the instance is part of one. 2. The system reports
81-
* the patch job as SUCCEEDED if it completes without errors, regardless of whether any instances
82-
* were SKIPPED. 3. The system reports the patch job as COMPLETED_WITH_INACTIVE_VMS if it
83-
* completes without errors, but some instances were INACTIVE and therefore not patched.
77+
* unpatchable instances, reporting them as `SKIPPED`. An instance can be unpatchable for two
78+
* reasons: 1. The instance runs Container-Optimized OS (COS), which cannot be patched. 2. The
79+
* instance is part of a managed instance group (MIG), and patching MIG instances is disabled in
80+
* the patch job's configuration (PatchConfig.migInstancesAllowed is `false`). 2. Reports the
81+
* patch job as `SUCCEEDED` if it completes without errors, even if some instances were `SKIPPED`.
82+
* 3. Reports the patch job as `COMPLETED_WITH_INACTIVE_VMS` if it completes without errors, but
83+
* some instances were `INACTIVE` and were not patched.
8484
* The value may be {@code null}.
8585
*/
8686
@com.google.api.client.util.Key
@@ -211,13 +211,13 @@ public PatchConfig setRebootConfig(java.lang.String rebootConfig) {
211211

212212
/**
213213
* Optional. Enables enhanced reporting for the patch job: 1. Allows the patch job to skip
214-
* unpatchable instances, reporting them as SKIPPED. An instance can be unpatchable for two
215-
* reasons: a. The instance runs Container-Optimized OS (COS), which cannot be patched. b. The
216-
* patch job's configuration prohibits patching on Managed Instance Groups (MIGs) through the
217-
* PatchConfig.migInstancesAllowed field, and the instance is part of one. 2. The system reports
218-
* the patch job as SUCCEEDED if it completes without errors, regardless of whether any instances
219-
* were SKIPPED. 3. The system reports the patch job as COMPLETED_WITH_INACTIVE_VMS if it
220-
* completes without errors, but some instances were INACTIVE and therefore not patched.
214+
* unpatchable instances, reporting them as `SKIPPED`. An instance can be unpatchable for two
215+
* reasons: 1. The instance runs Container-Optimized OS (COS), which cannot be patched. 2. The
216+
* instance is part of a managed instance group (MIG), and patching MIG instances is disabled in
217+
* the patch job's configuration (PatchConfig.migInstancesAllowed is `false`). 2. Reports the
218+
* patch job as `SUCCEEDED` if it completes without errors, even if some instances were `SKIPPED`.
219+
* 3. Reports the patch job as `COMPLETED_WITH_INACTIVE_VMS` if it completes without errors, but
220+
* some instances were `INACTIVE` and were not patched.
221221
* @return value or {@code null} for none
222222
*/
223223
public java.lang.Boolean getSkipUnpatchableVms() {
@@ -226,13 +226,13 @@ public java.lang.Boolean getSkipUnpatchableVms() {
226226

227227
/**
228228
* Optional. Enables enhanced reporting for the patch job: 1. Allows the patch job to skip
229-
* unpatchable instances, reporting them as SKIPPED. An instance can be unpatchable for two
230-
* reasons: a. The instance runs Container-Optimized OS (COS), which cannot be patched. b. The
231-
* patch job's configuration prohibits patching on Managed Instance Groups (MIGs) through the
232-
* PatchConfig.migInstancesAllowed field, and the instance is part of one. 2. The system reports
233-
* the patch job as SUCCEEDED if it completes without errors, regardless of whether any instances
234-
* were SKIPPED. 3. The system reports the patch job as COMPLETED_WITH_INACTIVE_VMS if it
235-
* completes without errors, but some instances were INACTIVE and therefore not patched.
229+
* unpatchable instances, reporting them as `SKIPPED`. An instance can be unpatchable for two
230+
* reasons: 1. The instance runs Container-Optimized OS (COS), which cannot be patched. 2. The
231+
* instance is part of a managed instance group (MIG), and patching MIG instances is disabled in
232+
* the patch job's configuration (PatchConfig.migInstancesAllowed is `false`). 2. Reports the
233+
* patch job as `SUCCEEDED` if it completes without errors, even if some instances were `SKIPPED`.
234+
* 3. Reports the patch job as `COMPLETED_WITH_INACTIVE_VMS` if it completes without errors, but
235+
* some instances were `INACTIVE` and were not patched.
236236
* @param skipUnpatchableVms skipUnpatchableVms or {@code null} for none
237237
*/
238238
public PatchConfig setSkipUnpatchableVms(java.lang.Boolean skipUnpatchableVms) {

clients/google-api-services-osconfig/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-osconfig</artifactId>
11-
<version>v1-rev20251030-2.0.0</version>
12-
<name>OS Config API v1-rev20251030-2.0.0</name>
11+
<version>v1-rev20251117-2.0.0</version>
12+
<name>OS Config API v1-rev20251117-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

clients/google-api-services-osconfig/v1beta/2.0.0/com/google/api/services/osconfig/v1beta/model/PatchConfig.java

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ public final class PatchConfig extends com.google.api.client.json.GenericJson {
7474

7575
/**
7676
* Optional. Enables enhanced reporting for the patch job: 1. Allows the patch job to skip
77-
* unpatchable instances, reporting them as SKIPPED. An instance can be unpatchable for two
78-
* reasons: a. The instance runs Container-Optimized OS (COS), which cannot be patched. b. The
79-
* patch job's configuration prohibits patching on Managed Instance Groups (MIGs) through the
80-
* PatchConfig.migInstancesAllowed field, and the instance is part of one. 2. The system reports
81-
* the patch job as SUCCEEDED if it completes without errors, regardless of whether any instances
82-
* were SKIPPED. 3. The system reports the patch job as COMPLETED_WITH_INACTIVE_VMS if it
83-
* completes without errors, but some instances were INACTIVE and therefore not patched.
77+
* unpatchable instances, reporting them as `SKIPPED`. An instance can be unpatchable for two
78+
* reasons: 1. The instance runs Container-Optimized OS (COS), which cannot be patched. 2. The
79+
* instance is part of a managed instance group (MIG), and patching MIG instances is disabled in
80+
* the patch job's configuration (PatchConfig.migInstancesAllowed is `false`). 2. Reports the
81+
* patch job as `SUCCEEDED` if it completes without errors, even if some instances were `SKIPPED`.
82+
* 3. Reports the patch job as `COMPLETED_WITH_INACTIVE_VMS` if it completes without errors, but
83+
* some instances were `INACTIVE` and were not patched.
8484
* The value may be {@code null}.
8585
*/
8686
@com.google.api.client.util.Key
@@ -211,13 +211,13 @@ public PatchConfig setRebootConfig(java.lang.String rebootConfig) {
211211

212212
/**
213213
* Optional. Enables enhanced reporting for the patch job: 1. Allows the patch job to skip
214-
* unpatchable instances, reporting them as SKIPPED. An instance can be unpatchable for two
215-
* reasons: a. The instance runs Container-Optimized OS (COS), which cannot be patched. b. The
216-
* patch job's configuration prohibits patching on Managed Instance Groups (MIGs) through the
217-
* PatchConfig.migInstancesAllowed field, and the instance is part of one. 2. The system reports
218-
* the patch job as SUCCEEDED if it completes without errors, regardless of whether any instances
219-
* were SKIPPED. 3. The system reports the patch job as COMPLETED_WITH_INACTIVE_VMS if it
220-
* completes without errors, but some instances were INACTIVE and therefore not patched.
214+
* unpatchable instances, reporting them as `SKIPPED`. An instance can be unpatchable for two
215+
* reasons: 1. The instance runs Container-Optimized OS (COS), which cannot be patched. 2. The
216+
* instance is part of a managed instance group (MIG), and patching MIG instances is disabled in
217+
* the patch job's configuration (PatchConfig.migInstancesAllowed is `false`). 2. Reports the
218+
* patch job as `SUCCEEDED` if it completes without errors, even if some instances were `SKIPPED`.
219+
* 3. Reports the patch job as `COMPLETED_WITH_INACTIVE_VMS` if it completes without errors, but
220+
* some instances were `INACTIVE` and were not patched.
221221
* @return value or {@code null} for none
222222
*/
223223
public java.lang.Boolean getSkipUnpatchableVms() {
@@ -226,13 +226,13 @@ public java.lang.Boolean getSkipUnpatchableVms() {
226226

227227
/**
228228
* Optional. Enables enhanced reporting for the patch job: 1. Allows the patch job to skip
229-
* unpatchable instances, reporting them as SKIPPED. An instance can be unpatchable for two
230-
* reasons: a. The instance runs Container-Optimized OS (COS), which cannot be patched. b. The
231-
* patch job's configuration prohibits patching on Managed Instance Groups (MIGs) through the
232-
* PatchConfig.migInstancesAllowed field, and the instance is part of one. 2. The system reports
233-
* the patch job as SUCCEEDED if it completes without errors, regardless of whether any instances
234-
* were SKIPPED. 3. The system reports the patch job as COMPLETED_WITH_INACTIVE_VMS if it
235-
* completes without errors, but some instances were INACTIVE and therefore not patched.
229+
* unpatchable instances, reporting them as `SKIPPED`. An instance can be unpatchable for two
230+
* reasons: 1. The instance runs Container-Optimized OS (COS), which cannot be patched. 2. The
231+
* instance is part of a managed instance group (MIG), and patching MIG instances is disabled in
232+
* the patch job's configuration (PatchConfig.migInstancesAllowed is `false`). 2. Reports the
233+
* patch job as `SUCCEEDED` if it completes without errors, even if some instances were `SKIPPED`.
234+
* 3. Reports the patch job as `COMPLETED_WITH_INACTIVE_VMS` if it completes without errors, but
235+
* some instances were `INACTIVE` and were not patched.
236236
* @param skipUnpatchableVms skipUnpatchableVms or {@code null} for none
237237
*/
238238
public PatchConfig setSkipUnpatchableVms(java.lang.Boolean skipUnpatchableVms) {

clients/google-api-services-osconfig/v1beta/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-osconfig</artifactId>
11-
<version>v1beta-rev20251030-2.0.0</version>
12-
<name>OS Config API v1beta-rev20251030-2.0.0</name>
11+
<version>v1beta-rev20251117-2.0.0</version>
12+
<name>OS Config API v1beta-rev20251117-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-osconfig/v2/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-osconfig</artifactId>
25-
<version>v2-rev20250928-2.0.0</version>
25+
<version>v2-rev20251117-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-osconfig:v2-rev20250928-2.0.0'
38+
implementation 'com.google.apis:google-api-services-osconfig:v2-rev20251117-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)