Skip to content
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
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -302033,6 +302033,7 @@
"/networksecurity:v1beta1/MirroringEndpointGroup/name": name
"/networksecurity:v1beta1/MirroringEndpointGroup/reconciling": reconciling
"/networksecurity:v1beta1/MirroringEndpointGroup/state": state
"/networksecurity:v1beta1/MirroringEndpointGroup/type": type
"/networksecurity:v1beta1/MirroringEndpointGroup/updateTime": update_time
"/networksecurity:v1beta1/MirroringEndpointGroupAssociation": mirroring_endpoint_group_association
"/networksecurity:v1beta1/MirroringEndpointGroupAssociation/createTime": create_time
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-networksecurity_v1beta1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-networksecurity_v1beta1

### v0.57.0 (2025-09-28)

* Regenerated from discovery document revision 20250911

### v0.56.0 (2025-09-07)

* Regenerated from discovery document revision 20250903
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -388,11 +388,10 @@ class AuthzPolicyAuthzRuleFromRequestSource
# successfully validated by mTLS. Each identity is a string whose value is
# matched against a list of URI SANs, DNS Name SANs, or the common name in the
# client's certificate. A match happens when any principal matches with the rule.
# Limited to 50 principals per Authorization Policy for Regional Internal
# Application Load Balancer, Regional External Application Load Balancer, Cross-
# region Internal Application Load Balancer, and Cloud Service Mesh. Limited to
# 25 principals per Authorization Policy for Global External Application Load
# Balancer.
# Limited to 50 principals per Authorization Policy for regional internal
# Application Load Balancers, regional external Application Load Balancers,
# cross-region internal Application Load Balancers, and Cloud Service Mesh. This
# field is not supported for global external Application Load Balancers.
# Corresponds to the JSON property `principals`
# @return [Array<Google::Apis::NetworksecurityV1beta1::AuthzPolicyAuthzRulePrincipal>]
attr_accessor :principals
Expand Down Expand Up @@ -3782,6 +3781,12 @@ class MirroringEndpointGroup
# @return [String]
attr_accessor :state

# Immutable. The type of the endpoint group. If left unspecified, defaults to
# DIRECT.
# Corresponds to the JSON property `type`
# @return [String]
attr_accessor :type

# Output only. The timestamp when the resource was most recently updated. See
# https://google.aip.dev/148#timestamps.
# Corresponds to the JSON property `updateTime`
Expand All @@ -3803,6 +3808,7 @@ def update!(**args)
@name = args[:name] if args.key?(:name)
@reconciling = args[:reconciling] if args.key?(:reconciling)
@state = args[:state] if args.key?(:state)
@type = args[:type] if args.key?(:type)
@update_time = args[:update_time] if args.key?(:update_time)
end
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module NetworksecurityV1beta1
# Version of the google-apis-networksecurity_v1beta1 gem
GEM_VERSION = "0.56.0"
GEM_VERSION = "0.57.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.18.0"

# Revision of the discovery document this client was generated from
REVISION = "20250903"
REVISION = "20250911"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -1712,6 +1712,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :name, as: 'name'
property :reconciling, as: 'reconciling'
property :state, as: 'state'
property :type, as: 'type'
property :update_time, as: 'updateTime'
end
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1186,8 +1186,8 @@ def get_project_location(name, fields: nil, quota_user: nil, options: nil, &bloc
# @param [String] name
# The resource that owns the locations collection, if applicable.
# @param [Array<String>, String] extra_location_types
# Optional. Do not use this field. It is unsupported and is ignored unless
# explicitly documented otherwise. This is primarily for internal usage.
# Optional. Unless explicitly documented otherwise, don't use this unsupported
# field which is primarily intended for internal usage.
# @param [String] filter
# A filter to narrow down results to a preferred subset. The filtering language
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
Expand Down
Loading