-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support for
google.cloud.bare_metal_solution.__version__
(#…
…64) * chore: update to gapic-generator-python 1.5.0 feat: add support for `google.cloud.<api>.__version__` PiperOrigin-RevId: 484665853 Source-Link: googleapis/googleapis@8eb249a Source-Link: googleapis/googleapis-gen@c8aa327 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYzhhYTMyN2I1ZjQ3ODg2NWZjM2ZkOTFlM2MyNzY4ZTU0ZTI2YWQ0NCJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * add .release-please-manifest.json with correct version * use templated owlbot.py and autogenerated setup.py * run nox format session * add release please config Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Anthonios Partheniou <[email protected]>
- Loading branch information
1 parent
56261d0
commit 40f0e83
Showing
52 changed files
with
365 additions
and
1,063 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
packages/google-cloud-bare-metal-solution/.github/release-please.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
releaseType: python | ||
handleGHRelease: true | ||
manifest: true |
3 changes: 3 additions & 0 deletions
3
packages/google-cloud-bare-metal-solution/.release-please-manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
".": "1.1.3" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
123 changes: 123 additions & 0 deletions
123
packages/google-cloud-bare-metal-solution/google/cloud/bare_metal_solution/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
# -*- coding: utf-8 -*- | ||
# Copyright 2022 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
from google.cloud.bare_metal_solution import gapic_version as package_version | ||
|
||
__version__ = package_version.__version__ | ||
|
||
|
||
from google.cloud.bare_metal_solution_v2.services.bare_metal_solution.async_client import ( | ||
BareMetalSolutionAsyncClient, | ||
) | ||
from google.cloud.bare_metal_solution_v2.services.bare_metal_solution.client import ( | ||
BareMetalSolutionClient, | ||
) | ||
from google.cloud.bare_metal_solution_v2.types.baremetalsolution import ( | ||
OperationMetadata, | ||
ResetInstanceResponse, | ||
) | ||
from google.cloud.bare_metal_solution_v2.types.instance import ( | ||
DetachLunRequest, | ||
GetInstanceRequest, | ||
Instance, | ||
ListInstancesRequest, | ||
ListInstancesResponse, | ||
ResetInstanceRequest, | ||
ServerNetworkTemplate, | ||
StartInstanceRequest, | ||
StartInstanceResponse, | ||
StopInstanceRequest, | ||
StopInstanceResponse, | ||
UpdateInstanceRequest, | ||
) | ||
from google.cloud.bare_metal_solution_v2.types.lun import ( | ||
GetLunRequest, | ||
ListLunsRequest, | ||
ListLunsResponse, | ||
Lun, | ||
) | ||
from google.cloud.bare_metal_solution_v2.types.network import ( | ||
VRF, | ||
GetNetworkRequest, | ||
ListNetworksRequest, | ||
ListNetworksResponse, | ||
ListNetworkUsageRequest, | ||
ListNetworkUsageResponse, | ||
LogicalInterface, | ||
Network, | ||
NetworkAddressReservation, | ||
NetworkUsage, | ||
UpdateNetworkRequest, | ||
) | ||
from google.cloud.bare_metal_solution_v2.types.nfs_share import ( | ||
GetNfsShareRequest, | ||
ListNfsSharesRequest, | ||
ListNfsSharesResponse, | ||
NfsShare, | ||
UpdateNfsShareRequest, | ||
) | ||
from google.cloud.bare_metal_solution_v2.types.volume import ( | ||
GetVolumeRequest, | ||
ListVolumesRequest, | ||
ListVolumesResponse, | ||
ResizeVolumeRequest, | ||
UpdateVolumeRequest, | ||
Volume, | ||
) | ||
|
||
__all__ = ( | ||
"BareMetalSolutionClient", | ||
"BareMetalSolutionAsyncClient", | ||
"OperationMetadata", | ||
"ResetInstanceResponse", | ||
"DetachLunRequest", | ||
"GetInstanceRequest", | ||
"Instance", | ||
"ListInstancesRequest", | ||
"ListInstancesResponse", | ||
"ResetInstanceRequest", | ||
"ServerNetworkTemplate", | ||
"StartInstanceRequest", | ||
"StartInstanceResponse", | ||
"StopInstanceRequest", | ||
"StopInstanceResponse", | ||
"UpdateInstanceRequest", | ||
"GetLunRequest", | ||
"ListLunsRequest", | ||
"ListLunsResponse", | ||
"Lun", | ||
"GetNetworkRequest", | ||
"ListNetworksRequest", | ||
"ListNetworksResponse", | ||
"ListNetworkUsageRequest", | ||
"ListNetworkUsageResponse", | ||
"LogicalInterface", | ||
"Network", | ||
"NetworkAddressReservation", | ||
"NetworkUsage", | ||
"UpdateNetworkRequest", | ||
"VRF", | ||
"GetNfsShareRequest", | ||
"ListNfsSharesRequest", | ||
"ListNfsSharesResponse", | ||
"NfsShare", | ||
"UpdateNfsShareRequest", | ||
"GetVolumeRequest", | ||
"ListVolumesRequest", | ||
"ListVolumesResponse", | ||
"ResizeVolumeRequest", | ||
"UpdateVolumeRequest", | ||
"Volume", | ||
) |
16 changes: 16 additions & 0 deletions
16
packages/google-cloud-bare-metal-solution/google/cloud/bare_metal_solution/gapic_version.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# -*- coding: utf-8 -*- | ||
# Copyright 2022 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
__version__ = "1.1.3" # {x-release-please-version} |
2 changes: 2 additions & 0 deletions
2
packages/google-cloud-bare-metal-solution/google/cloud/bare_metal_solution/py.typed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Marker file for PEP 561. | ||
# The google-cloud-bare-metal-solution package uses inline types. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.