Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): [google-cloud-securitycentermanagement] Exclude google-auth 2.24.0 and 2.25.0 #12369

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
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}
Original file line number Diff line number Diff line change
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}
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Loading