Skip to content

Commit ea621fd

Browse files
feat: [google-cloud-network-security] publish v1alpha1 Network Security API client and ClientTlsPolicy API resource (googleapis#14090)
- [ ] Regenerate this pull request now. PiperOrigin-RevId: 781686453 Source-Link: googleapis/googleapis@b309c8e Source-Link: https://github.com/googleapis/googleapis-gen/commit/9370046f390481c4801a2a67dae15db96ed19497 Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLW5ldHdvcmstc2VjdXJpdHkvLk93bEJvdC55YW1sIiwiaCI6IjkzNzAwNDZmMzkwNDgxYzQ4MDFhMmE2N2RhZTE1ZGI5NmVkMTk0OTcifQ== --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 4e0d474 commit ea621fd

File tree

47 files changed

+20042
-5
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+20042
-5
lines changed

packages/google-cloud-network-security/docs/index.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@ API Reference
2222
network_security_v1beta1/services_
2323
network_security_v1beta1/types_
2424

25+
API Reference
26+
-------------
27+
.. toctree::
28+
:maxdepth: 2
29+
30+
networksecurity_v1alpha1/services_
31+
networksecurity_v1alpha1/types_
32+
2533

2634
Changelog
2735
---------
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
NetworkSecurity
2+
---------------------------------
3+
4+
.. automodule:: google.cloud.networksecurity_v1alpha1.services.network_security
5+
:members:
6+
:inherited-members:
7+
8+
.. automodule:: google.cloud.networksecurity_v1alpha1.services.network_security.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 Networksecurity v1alpha1 API
2+
======================================================
3+
.. toctree::
4+
:maxdepth: 2
5+
6+
network_security
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Types for Google Cloud Networksecurity v1alpha1 API
2+
===================================================
3+
4+
.. automodule:: google.cloud.networksecurity_v1alpha1.types
5+
:members:
6+
:show-inheritance:

packages/google-cloud-network-security/google/cloud/network_security/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "0.9.18" # {x-release-please-version}
16+
__version__ = "0.0.0" # {x-release-please-version}

packages/google-cloud-network-security/google/cloud/network_security_v1/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "0.9.18" # {x-release-please-version}
16+
__version__ = "0.0.0" # {x-release-please-version}

packages/google-cloud-network-security/google/cloud/network_security_v1beta1/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "0.9.18" # {x-release-please-version}
16+
__version__ = "0.0.0" # {x-release-please-version}
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# -*- coding: utf-8 -*-
2+
# Copyright 2025 Google LLC
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
#
16+
from google.cloud.networksecurity import gapic_version as package_version
17+
18+
__version__ = package_version.__version__
19+
20+
21+
from google.cloud.networksecurity_v1alpha1.services.network_security.async_client import (
22+
NetworkSecurityAsyncClient,
23+
)
24+
from google.cloud.networksecurity_v1alpha1.services.network_security.client import (
25+
NetworkSecurityClient,
26+
)
27+
from google.cloud.networksecurity_v1alpha1.types.client_tls_policy import (
28+
ClientTlsPolicy,
29+
CreateClientTlsPolicyRequest,
30+
DeleteClientTlsPolicyRequest,
31+
GetClientTlsPolicyRequest,
32+
ListClientTlsPoliciesRequest,
33+
ListClientTlsPoliciesResponse,
34+
UpdateClientTlsPolicyRequest,
35+
)
36+
from google.cloud.networksecurity_v1alpha1.types.common import OperationMetadata
37+
from google.cloud.networksecurity_v1alpha1.types.tls import (
38+
CertificateProvider,
39+
CertificateProviderInstance,
40+
GrpcEndpoint,
41+
ValidationCA,
42+
)
43+
44+
__all__ = (
45+
"NetworkSecurityClient",
46+
"NetworkSecurityAsyncClient",
47+
"ClientTlsPolicy",
48+
"CreateClientTlsPolicyRequest",
49+
"DeleteClientTlsPolicyRequest",
50+
"GetClientTlsPolicyRequest",
51+
"ListClientTlsPoliciesRequest",
52+
"ListClientTlsPoliciesResponse",
53+
"UpdateClientTlsPolicyRequest",
54+
"OperationMetadata",
55+
"CertificateProvider",
56+
"CertificateProviderInstance",
57+
"GrpcEndpoint",
58+
"ValidationCA",
59+
)
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# -*- coding: utf-8 -*-
2+
# Copyright 2025 Google LLC
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
#
16+
__version__ = "0.0.0" # {x-release-please-version}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Marker file for PEP 561.
2+
# The google-cloud-networksecurity package uses inline types.

0 commit comments

Comments
 (0)