google-apis-networksecurity_v1beta1 0.52.0 → 0.53.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '0158e2ba6f66a3aa73c8c5d689d56ab31d9c10ee9e2488ffe25ea02f9e0aea5a'
|
4
|
+
data.tar.gz: 1489a6b47f102eb1defd0eb791c56c3f87eec43c8d7b41900aa6b1dbad60d75b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 598edbc381c3734a5d53c3d72235a296cfb7b11dcd32ab864295a4ded0ee59af23d42bd2b25ec3bb65d9312020d53ae5cb4d08e7a1bc6c3b4cd21debe8eb23f2
|
7
|
+
data.tar.gz: f687915ef2b15e98ff006b335b48c77f305b88d868bdd2748079eb56bb5dd7853c6ec0767537f6be0d20f3076a759229257a1a8e306831ac3da5da2f148481b5
|
data/CHANGELOG.md
CHANGED
@@ -376,7 +376,8 @@ module Google
|
|
376
376
|
include Google::Apis::Core::Hashable
|
377
377
|
|
378
378
|
# Optional. A list of IP addresses or IP address ranges to match against the
|
379
|
-
# source IP address of the request. Limited to
|
379
|
+
# source IP address of the request. Limited to 10 ip_blocks per Authorization
|
380
|
+
# Policy
|
380
381
|
# Corresponds to the JSON property `ipBlocks`
|
381
382
|
# @return [Array<Google::Apis::NetworksecurityV1beta1::AuthzPolicyAuthzRuleIpBlock>]
|
382
383
|
attr_accessor :ip_blocks
|
@@ -387,13 +388,17 @@ module Google
|
|
387
388
|
# successfully validated by mTLS. Each identity is a string whose value is
|
388
389
|
# matched against a list of URI SANs, DNS Name SANs, or the common name in the
|
389
390
|
# client's certificate. A match happens when any principal matches with the rule.
|
390
|
-
# Limited to
|
391
|
+
# Limited to 50 principals per Authorization Policy for Regional Internal
|
392
|
+
# Application Load Balancer, Regional External Application Load Balancer, Cross-
|
393
|
+
# region Internal Application Load Balancer, and Cloud Service Mesh. Limited to
|
394
|
+
# 25 principals per Authorization Policy for Global External Application Load
|
395
|
+
# Balancer.
|
391
396
|
# Corresponds to the JSON property `principals`
|
392
397
|
# @return [Array<Google::Apis::NetworksecurityV1beta1::AuthzPolicyAuthzRulePrincipal>]
|
393
398
|
attr_accessor :principals
|
394
399
|
|
395
400
|
# Optional. A list of resources to match against the resource of the source VM
|
396
|
-
# of a request. Limited to
|
401
|
+
# of a request. Limited to 10 resources per Authorization Policy.
|
397
402
|
# Corresponds to the JSON property `resources`
|
398
403
|
# @return [Array<Google::Apis::NetworksecurityV1beta1::AuthzPolicyAuthzRuleRequestResource>]
|
399
404
|
attr_accessor :resources
|
@@ -521,7 +526,7 @@ module Google
|
|
521
526
|
# Required. A list of resource tag value permanent IDs to match against the
|
522
527
|
# resource manager tags value associated with the source VM of a request. The
|
523
528
|
# match follows AND semantics which means all the ids must match. Limited to 5
|
524
|
-
#
|
529
|
+
# ids in the Tag value id set.
|
525
530
|
# Corresponds to the JSON property `ids`
|
526
531
|
# @return [Array<Fixnum>]
|
527
532
|
attr_accessor :ids
|
@@ -632,23 +637,26 @@ module Google
|
|
632
637
|
|
633
638
|
# Optional. A list of HTTP Hosts to match against. The match can be one of exact,
|
634
639
|
# prefix, suffix, or contains (substring match). Matches are always case
|
635
|
-
# sensitive unless the ignoreCase is set. Limited to
|
640
|
+
# sensitive unless the ignoreCase is set. Limited to 10 hosts per Authorization
|
641
|
+
# Policy.
|
636
642
|
# Corresponds to the JSON property `hosts`
|
637
643
|
# @return [Array<Google::Apis::NetworksecurityV1beta1::AuthzPolicyAuthzRuleStringMatch>]
|
638
644
|
attr_accessor :hosts
|
639
645
|
|
640
646
|
# Optional. A list of HTTP methods to match against. Each entry must be a valid
|
641
647
|
# HTTP method name (GET, PUT, POST, HEAD, PATCH, DELETE, OPTIONS). It only
|
642
|
-
# allows exact match and is always case sensitive.
|
648
|
+
# allows exact match and is always case sensitive. Limited to 10 methods per
|
649
|
+
# Authorization Policy.
|
643
650
|
# Corresponds to the JSON property `methods`
|
644
651
|
# @return [Array<String>]
|
645
652
|
attr_accessor :methods_prop
|
646
653
|
|
647
654
|
# Optional. A list of paths to match against. The match can be one of exact,
|
648
655
|
# prefix, suffix, or contains (substring match). Matches are always case
|
649
|
-
# sensitive unless the ignoreCase is set. Limited to
|
650
|
-
# path match includes the query parameters. For gRPC
|
651
|
-
# fully-qualified name of the form /package.service/
|
656
|
+
# sensitive unless the ignoreCase is set. Limited to 10 paths per Authorization
|
657
|
+
# Policy. Note that this path match includes the query parameters. For gRPC
|
658
|
+
# services, this should be a fully-qualified name of the form /package.service/
|
659
|
+
# method.
|
652
660
|
# Corresponds to the JSON property `paths`
|
653
661
|
# @return [Array<Google::Apis::NetworksecurityV1beta1::AuthzPolicyAuthzRuleStringMatch>]
|
654
662
|
attr_accessor :paths
|
@@ -673,7 +681,8 @@ module Google
|
|
673
681
|
# Required. A list of headers to match against in http header. The match can be
|
674
682
|
# one of exact, prefix, suffix, or contains (substring match). The match follows
|
675
683
|
# AND semantics which means all the headers must match. Matches are always case
|
676
|
-
# sensitive unless the ignoreCase is set. Limited to
|
684
|
+
# sensitive unless the ignoreCase is set. Limited to 10 headers per
|
685
|
+
# Authorization Policy.
|
677
686
|
# Corresponds to the JSON property `headers`
|
678
687
|
# @return [Array<Google::Apis::NetworksecurityV1beta1::AuthzPolicyAuthzRuleHeaderMatch>]
|
679
688
|
attr_accessor :headers
|
@@ -1098,7 +1107,7 @@ module Google
|
|
1098
1107
|
end
|
1099
1108
|
end
|
1100
1109
|
|
1101
|
-
# Message describing DnsThreatDetector object
|
1110
|
+
# Message describing DnsThreatDetector object.
|
1102
1111
|
class DnsThreatDetector
|
1103
1112
|
include Google::Apis::Core::Hashable
|
1104
1113
|
|
@@ -2718,7 +2727,7 @@ module Google
|
|
2718
2727
|
end
|
2719
2728
|
end
|
2720
2729
|
|
2721
|
-
# Message for response to listing DnsThreatDetectors
|
2730
|
+
# Message for response to listing DnsThreatDetectors.
|
2722
2731
|
class ListDnsThreatDetectorsResponse
|
2723
2732
|
include Google::Apis::Core::Hashable
|
2724
2733
|
|
@@ -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.53.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250804"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
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.53.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.53.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:
|