Skip to content

Commit

Permalink
fix(deps): [google-cloud-securitycentermanagement] Exclude google-aut…
Browse files Browse the repository at this point in the history
…h 2.24.0 and 2.25.0 (#12369)

- [ ] Regenerate this pull request now.

chore: Update gapic-generator-python to v1.14.4

PiperOrigin-RevId: 611561820

Source-Link:
googleapis/googleapis@87ef1fe

Source-Link:
googleapis/googleapis-gen@1973161
Copy-Tag:
eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLXNlY3VyaXR5Y2VudGVybWFuYWdlbWVudC8uT3dsQm90LnlhbWwiLCJoIjoiMTk3MzE2MTM3NTk0YWFmYWQ5NGRlYTMxMjI2NTI4ZmJjYzM5MzEwYyJ9

BEGIN_COMMIT_OVERRIDE
fix(deps): Exclude google-auth 2.24.0 and 2.25.0 
docs: Clarify documentation for
ListDescendantSecurityHealthAnalyticsCustomModules RPC and CustomConfig
message
END_COMMIT_OVERRIDE

BEGIN_NESTED_COMMIT
docs: [google-cloud-securitycentermanagement] Clarify documentation for
ListDescendantSecurityHealthAnalyticsCustomModules RPC and CostumConfig
message
PiperOrigin-RevId: 610862119

Source-Link:
googleapis/googleapis@39b7147

Source-Link:
googleapis/googleapis-gen@597b3ab
Copy-Tag:
eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLXNlY3VyaXR5Y2VudGVybWFuYWdlbWVudC8uT3dsQm90LnlhbWwiLCJoIjoiNTk3YjNhYjRmZjAyZjE4NzdkYWViOWVlYjYyNzg2NjNiZmZkMmIwNSJ9
END_NESTED_COMMIT

---------

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Co-authored-by: Anthonios Partheniou <partheniou@google.com>
  • Loading branch information
3 people committed Mar 4, 2024
1 parent 13a737f commit add6a6d
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 13 deletions.
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "0.1.6" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "0.1.6" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
Expand Up @@ -737,7 +737,7 @@ async def list_descendant_security_health_analytics_custom_modules(
) -> pagers.ListDescendantSecurityHealthAnalyticsCustomModulesAsyncPager:
r"""Returns a list of all resident
SecurityHealthAnalyticsCustomModules under the given CRM
parent and all of the parents CRM descendants.
parent and all of the parent's CRM descendants.
.. code-block:: python
Expand Down
Expand Up @@ -1200,7 +1200,7 @@ def list_descendant_security_health_analytics_custom_modules(
) -> pagers.ListDescendantSecurityHealthAnalyticsCustomModulesPager:
r"""Returns a list of all resident
SecurityHealthAnalyticsCustomModules under the given CRM
parent and all of the parents CRM descendants.
parent and all of the parent's CRM descendants.
.. code-block:: python
Expand Down
Expand Up @@ -353,7 +353,7 @@ def list_descendant_security_health_analytics_custom_modules(
Returns a list of all resident
SecurityHealthAnalyticsCustomModules under the given CRM
parent and all of the parents CRM descendants.
parent and all of the parent's CRM descendants.
Returns:
Callable[[~.ListDescendantSecurityHealthAnalyticsCustomModulesRequest],
Expand Down
Expand Up @@ -364,7 +364,7 @@ def list_descendant_security_health_analytics_custom_modules(
Returns a list of all resident
SecurityHealthAnalyticsCustomModules under the given CRM
parent and all of the parents CRM descendants.
parent and all of the parent's CRM descendants.
Returns:
Callable[[~.ListDescendantSecurityHealthAnalyticsCustomModulesRequest],
Expand Down
Expand Up @@ -346,11 +346,11 @@ class CustomConfig(proto.Message):
custom_output (google.cloud.securitycentermanagement_v1.types.CustomConfig.CustomOutputSpec):
Optional. Custom output properties.
resource_selector (google.cloud.securitycentermanagement_v1.types.CustomConfig.ResourceSelector):
Optional. The CAI resource types that the
custom module operates on (see
go/gcp-cai-doc/supported-asset-types). Each
custom module can specify up to 5 resource
types.
Optional. The Cloud Asset Inventory resource types that the
custom module operates on. For information about resource
types, see `Supported asset
types <https://cloud.google.com/asset-inventory/docs/supported-asset-types>`__.
Each custom module can specify up to 5 resource types.
severity (google.cloud.securitycentermanagement_v1.types.CustomConfig.Severity):
Optional. The severity to assign to findings
generated by the module.
Expand Down
Expand Up @@ -8,7 +8,7 @@
],
"language": "PYTHON",
"name": "google-cloud-securitycentermanagement",
"version": "0.1.6"
"version": "0.1.0"
},
"snippets": [
{
Expand Down
4 changes: 3 additions & 1 deletion packages/google-cloud-securitycentermanagement/setup.py
Expand Up @@ -42,7 +42,9 @@

dependencies = [
"google-api-core[grpc] >= 1.34.1, <3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,!=2.10.*",
"google-auth >= 2.14.1, <3.0.0dev",
# Exclude incompatible versions of `google-auth`
# See https://github.com/googleapis/google-cloud-python/issues/12364
"google-auth >= 2.14.1, <3.0.0dev,!=2.24.0,!=2.25.0",
"proto-plus >= 1.22.3, <2.0.0dev",
"protobuf>=3.19.5,<5.0.0dev,!=3.20.0,!=3.20.1,!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5",
"grpc-google-iam-v1 >= 0.12.4, <1.0.0dev",
Expand Down

0 comments on commit add6a6d

Please sign in to comment.