google-apis-networksecurity_v1beta1 0.69.0 → 0.71.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/networksecurity_v1beta1/classes.rb +41 -25
- data/lib/google/apis/networksecurity_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/networksecurity_v1beta1/representations.rb +2 -0
- data/lib/google/apis/networksecurity_v1beta1/service.rb +18 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8ba78c62e702b0e3cd5bc45842aeb2b1a3f51bf13c8b5023b94fed59a3dd351c
|
|
4
|
+
data.tar.gz: aff55b59962abeb11be9e76ba5d3797976c0fafdee22ce64dae87c273602f455
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ba2efce324eb7f28273626d46968076e25864c640a006fe6c71d17e9d5e12952bf202746a7d4ab8bc3f3ea5aa4fa8e1b497f75bc2f9d8b2dde392cd133a1f7aa
|
|
7
|
+
data.tar.gz: b4d05676e083e64408ef4218311cf87ed016290fd7a55f75a071048ec167ce8e982ea1e7119decc79c12f1015852d3f44457d3f672102501c130dbd8eb8f87de
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-networksecurity_v1beta1
|
|
2
2
|
|
|
3
|
+
### v0.71.0 (2026-08-30)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260824
|
|
6
|
+
|
|
7
|
+
### v0.70.0 (2026-08-09)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260729
|
|
10
|
+
|
|
3
11
|
### v0.69.0 (2026-07-19)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260707
|
|
@@ -225,18 +225,20 @@ module Google
|
|
|
225
225
|
class AuthzPolicy
|
|
226
226
|
include Google::Apis::Core::Hashable
|
|
227
227
|
|
|
228
|
-
# Required. Can be one of `ALLOW`, `DENY`, `CUSTOM`. When the
|
|
229
|
-
# `customProvider` must be specified. When the action is `
|
|
230
|
-
# matching the policy will be allowed. When the action is `
|
|
231
|
-
# matching the policy will be denied. When
|
|
232
|
-
#
|
|
233
|
-
#
|
|
234
|
-
#
|
|
235
|
-
#
|
|
236
|
-
#
|
|
237
|
-
#
|
|
238
|
-
# the request
|
|
239
|
-
#
|
|
228
|
+
# Required. Can be one of `ALLOW`, `DENY`, `CUSTOM`, `DENY_BY_DEFAULT`. When the
|
|
229
|
+
# action is `CUSTOM`, `customProvider` must be specified. When the action is `
|
|
230
|
+
# ALLOW`, only requests matching the policy will be allowed. When the action is `
|
|
231
|
+
# DENY`, only requests matching the policy will be denied. When the action is `
|
|
232
|
+
# DENY_BY_DEFAULT`, no `http_rules` or `network_rules` can be specified. When a
|
|
233
|
+
# request arrives, the policies are evaluated in the following order: 1. If
|
|
234
|
+
# there is a `CUSTOM` policy that matches the request, the `CUSTOM` policy is
|
|
235
|
+
# evaluated using the custom authorization providers and the request is denied
|
|
236
|
+
# if the provider rejects the request. 2. If there are any `DENY` policies that
|
|
237
|
+
# match the request, the request is denied. 3. If any of the `ALLOW` policies
|
|
238
|
+
# match the request, the request is allowed. 4. If a `DENY_BY_DEFAULT` policy is
|
|
239
|
+
# applied to the resource, the request is denied (unless it was explicitly
|
|
240
|
+
# allowed by a `CUSTOM` or `ALLOW` policy). 5. Else, the request is allowed by
|
|
241
|
+
# default if no other policies are configured.
|
|
240
242
|
# Corresponds to the JSON property `action`
|
|
241
243
|
# @return [String]
|
|
242
244
|
attr_accessor :action
|
|
@@ -768,12 +770,12 @@ module Google
|
|
|
768
770
|
class AuthzPolicyAuthzRuleToRequestOperationMcpMethod
|
|
769
771
|
include Google::Apis::Core::Hashable
|
|
770
772
|
|
|
771
|
-
# Required. The MCP method to match against. Allowed values
|
|
772
|
-
#
|
|
773
|
-
#
|
|
774
|
-
#
|
|
775
|
-
#
|
|
776
|
-
#
|
|
773
|
+
# Required. The MCP method to match against. Allowed values include: 1. `tools`,
|
|
774
|
+
# `prompts`, `resources` - these will match against all sub methods under the
|
|
775
|
+
# respective methods. 2. `prompts/list`, `tools/list`, `resources/list`, `
|
|
776
|
+
# resources/templates/list` 3. `prompts/get`, `tools/call`, `resources/subscribe`
|
|
777
|
+
# , `resources/unsubscribe`, `resources/read` Params cannot be specified for
|
|
778
|
+
# categories 1 and 2.
|
|
777
779
|
# Corresponds to the JSON property `name`
|
|
778
780
|
# @return [String]
|
|
779
781
|
attr_accessor :name
|
|
@@ -874,9 +876,9 @@ module Google
|
|
|
874
876
|
# extensions must share the same load balancing scheme. Required only when
|
|
875
877
|
# targeting forwarding rules. If targeting Secure Web Proxy, this field must be `
|
|
876
878
|
# INTERNAL_MANAGED` or not specified. Must not be specified when targeting Agent
|
|
877
|
-
# Gateway. Supported values
|
|
878
|
-
# information, refer to [Backend services overview](https://cloud.
|
|
879
|
-
# load-balancing/docs/backend-service).
|
|
879
|
+
# Gateway. Supported values include `INTERNAL_MANAGED` and `EXTERNAL_MANAGED`.
|
|
880
|
+
# For more information, refer to [Backend services overview](https://cloud.
|
|
881
|
+
# google.com/load-balancing/docs/backend-service).
|
|
880
882
|
# Corresponds to the JSON property `loadBalancingScheme`
|
|
881
883
|
# @return [String]
|
|
882
884
|
attr_accessor :load_balancing_scheme
|
|
@@ -1375,6 +1377,12 @@ module Google
|
|
|
1375
1377
|
# @return [Google::Apis::NetworksecurityV1beta1::FirewallEndpointEndpointSettings]
|
|
1376
1378
|
attr_accessor :endpoint_settings
|
|
1377
1379
|
|
|
1380
|
+
# Output only. The resource name of the explicit PSC Attachment. Format:
|
|
1381
|
+
# projects/`project`/regions/`region`/serviceAttachments/`id`
|
|
1382
|
+
# Corresponds to the JSON property `explicitPrivateServiceConnectAttachment`
|
|
1383
|
+
# @return [String]
|
|
1384
|
+
attr_accessor :explicit_private_service_connect_attachment
|
|
1385
|
+
|
|
1378
1386
|
# Optional. Labels as key value pairs
|
|
1379
1387
|
# Corresponds to the JSON property `labels`
|
|
1380
1388
|
# @return [Hash<String,String>]
|
|
@@ -1431,6 +1439,7 @@ module Google
|
|
|
1431
1439
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
1432
1440
|
@description = args[:description] if args.key?(:description)
|
|
1433
1441
|
@endpoint_settings = args[:endpoint_settings] if args.key?(:endpoint_settings)
|
|
1442
|
+
@explicit_private_service_connect_attachment = args[:explicit_private_service_connect_attachment] if args.key?(:explicit_private_service_connect_attachment)
|
|
1434
1443
|
@labels = args[:labels] if args.key?(:labels)
|
|
1435
1444
|
@name = args[:name] if args.key?(:name)
|
|
1436
1445
|
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
|
@@ -1613,10 +1622,10 @@ module Google
|
|
|
1613
1622
|
# @return [String]
|
|
1614
1623
|
attr_accessor :wildfire_realtime_lookup_timeout_action
|
|
1615
1624
|
|
|
1616
|
-
# Optional. The region where WildFire analysis will be performed.
|
|
1617
|
-
# regions: https://docs.paloaltonetworks.com/advanced-wildfire/
|
|
1618
|
-
# advanced-wildfire-overview/advanced-wildfire-deployments/
|
|
1619
|
-
# global-cloud
|
|
1625
|
+
# Optional. The region where WildFire analysis will be performed. Palo Alto
|
|
1626
|
+
# Networks supports regions: https://docs.paloaltonetworks.com/advanced-wildfire/
|
|
1627
|
+
# administration/advanced-wildfire-overview/advanced-wildfire-deployments/
|
|
1628
|
+
# advanced-wildfire-global-cloud
|
|
1620
1629
|
# Corresponds to the JSON property `wildfireRegion`
|
|
1621
1630
|
# @return [String]
|
|
1622
1631
|
attr_accessor :wildfire_region
|
|
@@ -5161,6 +5170,12 @@ module Google
|
|
|
5161
5170
|
# @return [String]
|
|
5162
5171
|
attr_accessor :ca_pool
|
|
5163
5172
|
|
|
5173
|
+
# Optional. The mode used to issue certificates (local CA signing vs direct leaf)
|
|
5174
|
+
# .
|
|
5175
|
+
# Corresponds to the JSON property `certificateIssuanceMode`
|
|
5176
|
+
# @return [String]
|
|
5177
|
+
attr_accessor :certificate_issuance_mode
|
|
5178
|
+
|
|
5164
5179
|
# Output only. The timestamp when the resource was created.
|
|
5165
5180
|
# Corresponds to the JSON property `createTime`
|
|
5166
5181
|
# @return [String]
|
|
@@ -5243,6 +5258,7 @@ module Google
|
|
|
5243
5258
|
# Update properties of this object
|
|
5244
5259
|
def update!(**args)
|
|
5245
5260
|
@ca_pool = args[:ca_pool] if args.key?(:ca_pool)
|
|
5261
|
+
@certificate_issuance_mode = args[:certificate_issuance_mode] if args.key?(:certificate_issuance_mode)
|
|
5246
5262
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
5247
5263
|
@custom_tls_features = args[:custom_tls_features] if args.key?(:custom_tls_features)
|
|
5248
5264
|
@description = args[:description] if args.key?(:description)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module NetworksecurityV1beta1
|
|
18
18
|
# Version of the google-apis-networksecurity_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.71.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260824"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1204,6 +1204,7 @@ module Google
|
|
|
1204
1204
|
property :description, as: 'description'
|
|
1205
1205
|
property :endpoint_settings, as: 'endpointSettings', class: Google::Apis::NetworksecurityV1beta1::FirewallEndpointEndpointSettings, decorator: Google::Apis::NetworksecurityV1beta1::FirewallEndpointEndpointSettings::Representation
|
|
1206
1206
|
|
|
1207
|
+
property :explicit_private_service_connect_attachment, as: 'explicitPrivateServiceConnectAttachment'
|
|
1207
1208
|
hash :labels, as: 'labels'
|
|
1208
1209
|
property :name, as: 'name'
|
|
1209
1210
|
property :reconciling, as: 'reconciling'
|
|
@@ -2143,6 +2144,7 @@ module Google
|
|
|
2143
2144
|
# @private
|
|
2144
2145
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2145
2146
|
property :ca_pool, as: 'caPool'
|
|
2147
|
+
property :certificate_issuance_mode, as: 'certificateIssuanceMode'
|
|
2146
2148
|
property :create_time, as: 'createTime'
|
|
2147
2149
|
collection :custom_tls_features, as: 'customTlsFeatures'
|
|
2148
2150
|
property :description, as: 'description'
|
|
@@ -558,6 +558,9 @@ module Google
|
|
|
558
558
|
# ignore the second request. This prevents clients from accidentally creating
|
|
559
559
|
# duplicate commitments. The request ID must be a valid UUID with the exception
|
|
560
560
|
# that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
|
|
561
|
+
# @param [Boolean] validate_only
|
|
562
|
+
# Optional. If set, validate the request and preview the endpoint, but do not
|
|
563
|
+
# actually create it.
|
|
561
564
|
# @param [String] fields
|
|
562
565
|
# Selector specifying which fields to include in a partial response.
|
|
563
566
|
# @param [String] quota_user
|
|
@@ -575,7 +578,7 @@ module Google
|
|
|
575
578
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
576
579
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
577
580
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
578
|
-
def create_organization_location_firewall_endpoint(parent, firewall_endpoint_object = nil, firewall_endpoint_id: nil, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
581
|
+
def create_organization_location_firewall_endpoint(parent, firewall_endpoint_object = nil, firewall_endpoint_id: nil, request_id: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
579
582
|
command = make_simple_command(:post, 'v1beta1/{+parent}/firewallEndpoints', options)
|
|
580
583
|
command.request_representation = Google::Apis::NetworksecurityV1beta1::FirewallEndpoint::Representation
|
|
581
584
|
command.request_object = firewall_endpoint_object
|
|
@@ -584,6 +587,7 @@ module Google
|
|
|
584
587
|
command.params['parent'] = parent unless parent.nil?
|
|
585
588
|
command.query['firewallEndpointId'] = firewall_endpoint_id unless firewall_endpoint_id.nil?
|
|
586
589
|
command.query['requestId'] = request_id unless request_id.nil?
|
|
590
|
+
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
|
587
591
|
command.query['fields'] = fields unless fields.nil?
|
|
588
592
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
589
593
|
execute_or_queue_command(command, &block)
|
|
@@ -3524,6 +3528,9 @@ module Google
|
|
|
3524
3528
|
# ignore the second request. This prevents clients from accidentally creating
|
|
3525
3529
|
# duplicate commitments. The request ID must be a valid UUID with the exception
|
|
3526
3530
|
# that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
|
|
3531
|
+
# @param [Boolean] validate_only
|
|
3532
|
+
# Optional. If set, validate the request and preview the endpoint, but do not
|
|
3533
|
+
# actually create it.
|
|
3527
3534
|
# @param [String] fields
|
|
3528
3535
|
# Selector specifying which fields to include in a partial response.
|
|
3529
3536
|
# @param [String] quota_user
|
|
@@ -3541,7 +3548,7 @@ module Google
|
|
|
3541
3548
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
3542
3549
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
3543
3550
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
3544
|
-
def create_project_location_firewall_endpoint(parent, firewall_endpoint_object = nil, firewall_endpoint_id: nil, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
3551
|
+
def create_project_location_firewall_endpoint(parent, firewall_endpoint_object = nil, firewall_endpoint_id: nil, request_id: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
3545
3552
|
command = make_simple_command(:post, 'v1beta1/{+parent}/firewallEndpoints', options)
|
|
3546
3553
|
command.request_representation = Google::Apis::NetworksecurityV1beta1::FirewallEndpoint::Representation
|
|
3547
3554
|
command.request_object = firewall_endpoint_object
|
|
@@ -3550,6 +3557,7 @@ module Google
|
|
|
3550
3557
|
command.params['parent'] = parent unless parent.nil?
|
|
3551
3558
|
command.query['firewallEndpointId'] = firewall_endpoint_id unless firewall_endpoint_id.nil?
|
|
3552
3559
|
command.query['requestId'] = request_id unless request_id.nil?
|
|
3560
|
+
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
|
3553
3561
|
command.query['fields'] = fields unless fields.nil?
|
|
3554
3562
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
3555
3563
|
execute_or_queue_command(command, &block)
|
|
@@ -6093,6 +6101,12 @@ module Google
|
|
|
6093
6101
|
# @param [String] name
|
|
6094
6102
|
# Required. Name of the resource, in the form `projects/`project`/locations/`
|
|
6095
6103
|
# location`/sacAttachments/`sac_attachment``.
|
|
6104
|
+
# @param [Boolean] ignore_partner_deletion_errors
|
|
6105
|
+
# Optional. If set to true, the request will delete the SAC Attachment even if
|
|
6106
|
+
# some steps fail (e.g. deleting the remote Symantec Location). This option is a
|
|
6107
|
+
# no-op for partners where it does not apply (e.g. Palo Alto Networks). WARNING:
|
|
6108
|
+
# Enabling this option may leave dangling resources in the Broadcom/Symantec
|
|
6109
|
+
# customer portal that requires manual cleanup.
|
|
6096
6110
|
# @param [String] request_id
|
|
6097
6111
|
# Optional. An optional request ID to identify requests. Specify a unique
|
|
6098
6112
|
# request ID so that if you must retry your request, the server will know to
|
|
@@ -6121,11 +6135,12 @@ module Google
|
|
|
6121
6135
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
6122
6136
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
6123
6137
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
6124
|
-
def delete_project_location_sac_attachment(name, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
6138
|
+
def delete_project_location_sac_attachment(name, ignore_partner_deletion_errors: nil, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
6125
6139
|
command = make_simple_command(:delete, 'v1beta1/{+name}', options)
|
|
6126
6140
|
command.response_representation = Google::Apis::NetworksecurityV1beta1::Operation::Representation
|
|
6127
6141
|
command.response_class = Google::Apis::NetworksecurityV1beta1::Operation
|
|
6128
6142
|
command.params['name'] = name unless name.nil?
|
|
6143
|
+
command.query['ignorePartnerDeletionErrors'] = ignore_partner_deletion_errors unless ignore_partner_deletion_errors.nil?
|
|
6129
6144
|
command.query['requestId'] = request_id unless request_id.nil?
|
|
6130
6145
|
command.query['fields'] = fields unless fields.nil?
|
|
6131
6146
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-networksecurity_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.71.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networksecurity_v1beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networksecurity_v1beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networksecurity_v1beta1/v0.71.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networksecurity_v1beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|