Skip to content

Commit 6876f64

Browse files
authored
chore: librarian onboard pull request: 20260304T233807Z (#16026)
PR created by the Librarian CLI to onboard a new Cloud Client Library. BEGIN_COMMIT feat: onboard a new library PiperOrigin-RevId: 873108574 Library-IDs: google-cloud-hypercomputecluster END_COMMIT Librarian Version: v0.8.0 Language Image: us-central1-docker.pkg.dev/cloud-sdk-librarian-prod/images-prod/python-librarian-generator@sha256:160860d189ff1c2f7515638478823712fa5b243e27ccc33a2728669fa1e2ed0c
1 parent af65c0d commit 6876f64

File tree

40 files changed

+20275
-7
lines changed

40 files changed

+20275
-7
lines changed

.librarian/state.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1970,10 +1970,12 @@ libraries:
19701970
tag_format: '{id}-v{version}'
19711971
- id: google-cloud-hypercomputecluster
19721972
version: 0.2.0
1973-
last_generated_commit: c662840a94dbdf708caa44893a2d49119cdd391c
1973+
last_generated_commit: 23ec7b6ee94a2fe364cdb5a212949f1cf37f85ad
19741974
apis:
19751975
- path: google/cloud/hypercomputecluster/v1beta
19761976
service_config: hypercomputecluster_v1beta.yaml
1977+
- path: google/cloud/hypercomputecluster/v1
1978+
service_config: hypercomputecluster_v1.yaml
19771979
source_roots:
19781980
- packages/google-cloud-hypercomputecluster
19791981
preserve_regex:

packages/google-cloud-hypercomputecluster/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Python Client for Cluster Director API
33

44
|preview| |pypi| |versions|
55

6-
`Cluster Director API`_:
6+
`Cluster Director API`_: The Cluster Director API allows you to deploy, manage, and monitor clusters that run AI, ML, or HPC workloads.
77

88
- `Client Library Documentation`_
99
- `Product Documentation`_

packages/google-cloud-hypercomputecluster/docs/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Python Client for Cluster Director API
33

44
|preview| |pypi| |versions|
55

6-
`Cluster Director API`_:
6+
`Cluster Director API`_: The Cluster Director API allows you to deploy, manage, and monitor clusters that run AI, ML, or HPC workloads.
77

88
- `Client Library Documentation`_
99
- `Product Documentation`_
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
HypercomputeCluster
2+
-------------------------------------
3+
4+
.. automodule:: google.cloud.hypercomputecluster_v1.services.hypercompute_cluster
5+
:members:
6+
:inherited-members:
7+
8+
.. automodule:: google.cloud.hypercomputecluster_v1.services.hypercompute_cluster.pagers
9+
:members:
10+
:inherited-members:
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Services for Google Cloud Hypercomputecluster v1 API
2+
====================================================
3+
.. toctree::
4+
:maxdepth: 2
5+
6+
hypercompute_cluster
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Types for Google Cloud Hypercomputecluster v1 API
2+
=================================================
3+
4+
.. automodule:: google.cloud.hypercomputecluster_v1.types
5+
:members:
6+
:show-inheritance:

packages/google-cloud-hypercomputecluster/docs/index.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
.. include:: multiprocessing.rst
44

5+
This package includes clients for multiple versions of Cluster Director API.
6+
By default, you will get version ``hypercomputecluster_v1``.
7+
8+
9+
API Reference
10+
-------------
11+
.. toctree::
12+
:maxdepth: 2
13+
14+
hypercomputecluster_v1/services_
15+
hypercomputecluster_v1/types_
516

617
API Reference
718
-------------

packages/google-cloud-hypercomputecluster/google/cloud/hypercomputecluster/__init__.py

Lines changed: 54 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
__version__ = package_version.__version__
1919

2020

21-
from google.cloud.hypercomputecluster_v1beta.services.hypercompute_cluster.async_client import (
21+
from google.cloud.hypercomputecluster_v1.services.hypercompute_cluster.async_client import (
2222
HypercomputeClusterAsyncClient,
2323
)
24-
from google.cloud.hypercomputecluster_v1beta.services.hypercompute_cluster.client import (
24+
from google.cloud.hypercomputecluster_v1.services.hypercompute_cluster.client import (
2525
HypercomputeClusterClient,
2626
)
27-
from google.cloud.hypercomputecluster_v1beta.types.hypercompute_cluster import (
27+
from google.cloud.hypercomputecluster_v1.types.hypercompute_cluster import (
2828
BootDisk,
2929
BucketReference,
3030
Cluster,
@@ -67,8 +67,33 @@
6767
StorageResourceConfig,
6868
UpdateClusterRequest,
6969
)
70-
from google.cloud.hypercomputecluster_v1beta.types.operation_metadata import (
70+
from google.cloud.hypercomputecluster_v1.types.operation_metadata import (
71+
CheckClusterHealth,
72+
CreateFilestoreInstance,
73+
CreateLoginNode,
74+
CreateLustreInstance,
75+
CreateNetwork,
76+
CreateNodeset,
77+
CreateOrchestrator,
78+
CreatePartition,
79+
CreatePrivateServiceAccess,
80+
CreateStorageBucket,
81+
DeleteFilestoreInstance,
82+
DeleteLoginNode,
83+
DeleteLustreInstance,
84+
DeleteNetwork,
85+
DeleteNodeset,
86+
DeleteOrchestrator,
87+
DeletePartition,
88+
DeletePrivateServiceAccess,
89+
DeleteStorageBucket,
7190
OperationMetadata,
91+
OperationProgress,
92+
OperationStep,
93+
UpdateLoginNode,
94+
UpdateNodeset,
95+
UpdateOrchestrator,
96+
UpdatePartition,
7297
)
7398

7499
__all__ = (
@@ -115,5 +140,30 @@
115140
"StorageResource",
116141
"StorageResourceConfig",
117142
"UpdateClusterRequest",
143+
"CheckClusterHealth",
144+
"CreateFilestoreInstance",
145+
"CreateLoginNode",
146+
"CreateLustreInstance",
147+
"CreateNetwork",
148+
"CreateNodeset",
149+
"CreateOrchestrator",
150+
"CreatePartition",
151+
"CreatePrivateServiceAccess",
152+
"CreateStorageBucket",
153+
"DeleteFilestoreInstance",
154+
"DeleteLoginNode",
155+
"DeleteLustreInstance",
156+
"DeleteNetwork",
157+
"DeleteNodeset",
158+
"DeleteOrchestrator",
159+
"DeletePartition",
160+
"DeletePrivateServiceAccess",
161+
"DeleteStorageBucket",
118162
"OperationMetadata",
163+
"OperationProgress",
164+
"OperationStep",
165+
"UpdateLoginNode",
166+
"UpdateNodeset",
167+
"UpdateOrchestrator",
168+
"UpdatePartition",
119169
)

0 commit comments

Comments
 (0)