-
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.
fix: fix type in docstring for map fields (#256)
- [ ] Regenerate this pull request now. PiperOrigin-RevId: 440107808 Source-Link: googleapis/googleapis@258ddb2 Source-Link: googleapis/googleapis-gen@df0d09a Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZGYwZDA5YTJjMzZmZjViYWY5ODY0OGVlZmU1MDI5YzE3MzkwNWQwYiJ9 feat: update compute API to revision 20220322 (#710) Source-Link: googleapis/googleapis@68ad73b Source-Link: googleapis/googleapis-gen@a581672 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYTU4MTY3MjA2MWI5NDgxYzAxOTJkZTAzYmJmYTM0NjRlMDIzMzgxMSJ9
- Loading branch information
1 parent
2841ba7
commit 1599463
Showing
128 changed files
with
42,133 additions
and
1,995 deletions.
There are no files selected for viewing
Empty file.
10 changes: 10 additions & 0 deletions
10
packages/google-cloud-compute/docs/compute_v1/network_edge_security_services.rst
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,10 @@ | ||
NetworkEdgeSecurityServices | ||
--------------------------------------------- | ||
|
||
.. automodule:: google.cloud.compute_v1.services.network_edge_security_services | ||
:members: | ||
:inherited-members: | ||
|
||
.. automodule:: google.cloud.compute_v1.services.network_edge_security_services.pagers | ||
:members: | ||
:inherited-members: |
10 changes: 10 additions & 0 deletions
10
packages/google-cloud-compute/docs/compute_v1/network_firewall_policies.rst
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,10 @@ | ||
NetworkFirewallPolicies | ||
----------------------------------------- | ||
|
||
.. automodule:: google.cloud.compute_v1.services.network_firewall_policies | ||
:members: | ||
:inherited-members: | ||
|
||
.. automodule:: google.cloud.compute_v1.services.network_firewall_policies.pagers | ||
:members: | ||
:inherited-members: |
10 changes: 10 additions & 0 deletions
10
packages/google-cloud-compute/docs/compute_v1/region_network_firewall_policies.rst
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,10 @@ | ||
RegionNetworkFirewallPolicies | ||
----------------------------------------------- | ||
|
||
.. automodule:: google.cloud.compute_v1.services.region_network_firewall_policies | ||
:members: | ||
:inherited-members: | ||
|
||
.. automodule:: google.cloud.compute_v1.services.region_network_firewall_policies.pagers | ||
:members: | ||
:inherited-members: |
10 changes: 10 additions & 0 deletions
10
packages/google-cloud-compute/docs/compute_v1/region_security_policies.rst
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,10 @@ | ||
RegionSecurityPolicies | ||
---------------------------------------- | ||
|
||
.. automodule:: google.cloud.compute_v1.services.region_security_policies | ||
:members: | ||
:inherited-members: | ||
|
||
.. automodule:: google.cloud.compute_v1.services.region_security_policies.pagers | ||
:members: | ||
:inherited-members: |
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
194 changes: 194 additions & 0 deletions
194
packages/google-cloud-compute/google/cloud/compute/__init__.py
Large diffs are not rendered by default.
Oops, something went wrong.
128 changes: 128 additions & 0 deletions
128
packages/google-cloud-compute/google/cloud/compute_v1/__init__.py
Large diffs are not rendered by default.
Oops, something went wrong.
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
18 changes: 18 additions & 0 deletions
18
...cloud-compute/google/cloud/compute_v1/services/network_edge_security_services/__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,18 @@ | ||
# -*- 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 .client import NetworkEdgeSecurityServicesClient | ||
|
||
__all__ = ("NetworkEdgeSecurityServicesClient",) |
Oops, something went wrong.