Skip to content

Commit 3cba89a

Browse files
feat: [workstations] add output field for the control plane IP address (#9430)
- [ ] Regenerate this pull request now. feat: add output field for the number of pooled instances feat: add support for accelerators feat: add support for readiness checks feat: add auditd support feat: add support for workstation-level environment variables docs: adjust documentation wording PiperOrigin-RevId: 531290149 Source-Link: https://github.com/googleapis/googleapis/commit/d6a61ef1cf7c47de40777d6636c456727eaf3be4 Source-Link: https://github.com/googleapis/googleapis-gen/commit/8fdb1317fcb0aa3396eeb728d9a15eb734187e7a Copy-Tag: eyJwIjoiamF2YS13b3Jrc3RhdGlvbnMvLk93bEJvdC55YW1sIiwiaCI6IjhmZGIxMzE3ZmNiMGFhMzM5NmVlYjcyOGQ5YTE1ZWI3MzQxODdlN2EifQ==
1 parent bada27a commit 3cba89a

31 files changed

+8876
-4796
lines changed

java-workstations/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ Java is a registered trademark of Oracle and/or its affiliates.
201201
[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-workstations/java11.html
202202
[stability-image]: https://img.shields.io/badge/stability-preview-yellow
203203
[maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-workstations.svg
204-
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-workstations/0.4.0
204+
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-workstations/0.5.0
205205
[authentication]: https://github.com/googleapis/google-cloud-java#authentication
206206
[auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes
207207
[predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles

java-workstations/google-cloud-workstations/src/main/java/com/google/cloud/workstations/v1beta/WorkstationsClient.java

+23-21
Original file line numberDiff line numberDiff line change
@@ -1485,7 +1485,7 @@ public final ListUsableWorkstationConfigsPagedResponse listUsableWorkstationConf
14851485
*
14861486
* @param parent Required. Parent resource name.
14871487
* @param workstationConfig Required. Config to create.
1488-
* @param workstationConfigId Required. ID to use for the config.
1488+
* @param workstationConfigId Required. ID to use for the workstation configuration.
14891489
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
14901490
*/
14911491
public final OperationFuture<WorkstationConfig, OperationMetadata> createWorkstationConfigAsync(
@@ -1527,7 +1527,7 @@ public final OperationFuture<WorkstationConfig, OperationMetadata> createWorksta
15271527
*
15281528
* @param parent Required. Parent resource name.
15291529
* @param workstationConfig Required. Config to create.
1530-
* @param workstationConfigId Required. ID to use for the config.
1530+
* @param workstationConfigId Required. ID to use for the workstation configuration.
15311531
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
15321532
*/
15331533
public final OperationFuture<WorkstationConfig, OperationMetadata> createWorkstationConfigAsync(
@@ -1665,7 +1665,8 @@ public final OperationFuture<WorkstationConfig, OperationMetadata> createWorksta
16651665
* }</pre>
16661666
*
16671667
* @param workstationConfig Required. Config to update.
1668-
* @param updateMask Required. Mask specifying which fields in the config should be updated.
1668+
* @param updateMask Required. Mask specifying which fields in the workstation configuration
1669+
* should be updated.
16691670
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
16701671
*/
16711672
public final OperationFuture<WorkstationConfig, OperationMetadata> updateWorkstationConfigAsync(
@@ -1795,7 +1796,7 @@ public final OperationFuture<WorkstationConfig, OperationMetadata> updateWorksta
17951796
* }
17961797
* }</pre>
17971798
*
1798-
* @param name Required. Name of the config to delete.
1799+
* @param name Required. Name of the workstation configuration to delete.
17991800
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
18001801
*/
18011802
public final OperationFuture<WorkstationConfig, OperationMetadata> deleteWorkstationConfigAsync(
@@ -1828,7 +1829,7 @@ public final OperationFuture<WorkstationConfig, OperationMetadata> deleteWorksta
18281829
* }
18291830
* }</pre>
18301831
*
1831-
* @param name Required. Name of the config to delete.
1832+
* @param name Required. Name of the workstation configuration to delete.
18321833
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
18331834
*/
18341835
public final OperationFuture<WorkstationConfig, OperationMetadata> deleteWorkstationConfigAsync(
@@ -2091,7 +2092,7 @@ public final UnaryCallable<GetWorkstationRequest, Workstation> getWorkstationCal
20912092

20922093
// AUTO-GENERATED DOCUMENTATION AND METHOD.
20932094
/**
2094-
* Returns all Workstations using the specified config.
2095+
* Returns all Workstations using the specified workstation configuration.
20952096
*
20962097
* <p>Sample code:
20972098
*
@@ -2124,7 +2125,7 @@ public final ListWorkstationsPagedResponse listWorkstations(WorkstationConfigNam
21242125

21252126
// AUTO-GENERATED DOCUMENTATION AND METHOD.
21262127
/**
2127-
* Returns all Workstations using the specified config.
2128+
* Returns all Workstations using the specified workstation configuration.
21282129
*
21292130
* <p>Sample code:
21302131
*
@@ -2156,7 +2157,7 @@ public final ListWorkstationsPagedResponse listWorkstations(String parent) {
21562157

21572158
// AUTO-GENERATED DOCUMENTATION AND METHOD.
21582159
/**
2159-
* Returns all Workstations using the specified config.
2160+
* Returns all Workstations using the specified workstation configuration.
21602161
*
21612162
* <p>Sample code:
21622163
*
@@ -2194,7 +2195,7 @@ public final ListWorkstationsPagedResponse listWorkstations(ListWorkstationsRequ
21942195

21952196
// AUTO-GENERATED DOCUMENTATION AND METHOD.
21962197
/**
2197-
* Returns all Workstations using the specified config.
2198+
* Returns all Workstations using the specified workstation configuration.
21982199
*
21992200
* <p>Sample code:
22002201
*
@@ -2233,7 +2234,7 @@ public final ListWorkstationsPagedResponse listWorkstations(ListWorkstationsRequ
22332234

22342235
// AUTO-GENERATED DOCUMENTATION AND METHOD.
22352236
/**
2236-
* Returns all Workstations using the specified config.
2237+
* Returns all Workstations using the specified workstation configuration.
22372238
*
22382239
* <p>Sample code:
22392240
*
@@ -2279,8 +2280,8 @@ public final ListWorkstationsPagedResponse listWorkstations(ListWorkstationsRequ
22792280

22802281
// AUTO-GENERATED DOCUMENTATION AND METHOD.
22812282
/**
2282-
* Returns all Workstations using the specified config on which the caller has the
2283-
* "workstations.workstations.use" permission.
2283+
* Returns all workstations using the specified workstation configuration on which the caller has
2284+
* the "workstations.workstations.use" permission.
22842285
*
22852286
* <p>Sample code:
22862287
*
@@ -2314,8 +2315,8 @@ public final ListUsableWorkstationsPagedResponse listUsableWorkstations(
23142315

23152316
// AUTO-GENERATED DOCUMENTATION AND METHOD.
23162317
/**
2317-
* Returns all Workstations using the specified config on which the caller has the
2318-
* "workstations.workstations.use" permission.
2318+
* Returns all workstations using the specified workstation configuration on which the caller has
2319+
* the "workstations.workstations.use" permission.
23192320
*
23202321
* <p>Sample code:
23212322
*
@@ -2347,8 +2348,8 @@ public final ListUsableWorkstationsPagedResponse listUsableWorkstations(String p
23472348

23482349
// AUTO-GENERATED DOCUMENTATION AND METHOD.
23492350
/**
2350-
* Returns all Workstations using the specified config on which the caller has the
2351-
* "workstations.workstations.use" permission.
2351+
* Returns all workstations using the specified workstation configuration on which the caller has
2352+
* the "workstations.workstations.use" permission.
23522353
*
23532354
* <p>Sample code:
23542355
*
@@ -2387,8 +2388,8 @@ public final ListUsableWorkstationsPagedResponse listUsableWorkstations(
23872388

23882389
// AUTO-GENERATED DOCUMENTATION AND METHOD.
23892390
/**
2390-
* Returns all Workstations using the specified config on which the caller has the
2391-
* "workstations.workstations.use" permission.
2391+
* Returns all workstations using the specified workstation configuration on which the caller has
2392+
* the "workstations.workstations.use" permission.
23922393
*
23932394
* <p>Sample code:
23942395
*
@@ -2427,8 +2428,8 @@ public final ListUsableWorkstationsPagedResponse listUsableWorkstations(
24272428

24282429
// AUTO-GENERATED DOCUMENTATION AND METHOD.
24292430
/**
2430-
* Returns all Workstations using the specified config on which the caller has the
2431-
* "workstations.workstations.use" permission.
2431+
* Returns all workstations using the specified workstation configuration on which the caller has
2432+
* the "workstations.workstations.use" permission.
24322433
*
24332434
* <p>Sample code:
24342435
*
@@ -2685,7 +2686,8 @@ public final UnaryCallable<CreateWorkstationRequest, Operation> createWorkstatio
26852686
* }</pre>
26862687
*
26872688
* @param workstation Required. Workstation to update.
2688-
* @param updateMask Required. Mask specifying which fields in the config should be updated.
2689+
* @param updateMask Required. Mask specifying which fields in the workstation configuration
2690+
* should be updated.
26892691
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
26902692
*/
26912693
public final OperationFuture<Workstation, OperationMetadata> updateWorkstationAsync(

0 commit comments

Comments
 (0)