google-apis-networksecurity_v1beta1 0.20.0 → 0.21.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: daa154b4326d9d4f9e3d292541d69a989199bfc01184fa58083dcbebacf9e566
|
|
4
|
+
data.tar.gz: 83e53c2ac025df06a21134ee38b8e1520656dd96b2068cea1def18622b8e2130
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 065743ed7031558e30cf76bda2e9fc0c6d224a869ea74a5be9ba2d677a52eb637a0d348d943001dd66f66ac7e9d191eac33097d547d16d359c98cdf8dfa5b882
|
|
7
|
+
data.tar.gz: b9ab5c8b99a9fa225f81c8c0c13b91ef75f7b3e8998bd75730201c4139a444ca2a7a2a3ddf7001d143633937c3080886501d13536ef99b94e20772e1b9811b73
|
data/CHANGELOG.md
CHANGED
|
@@ -1375,16 +1375,17 @@ module Google
|
|
|
1375
1375
|
class MtlsPolicy
|
|
1376
1376
|
include Google::Apis::Core::Hashable
|
|
1377
1377
|
|
|
1378
|
-
# Required if the policy is to be used with Traffic Director. For
|
|
1379
|
-
#
|
|
1380
|
-
# certificate to validate the client certificate.
|
|
1378
|
+
# Required if the policy is to be used with Traffic Director. For external HTTPS
|
|
1379
|
+
# load balancers it must be empty. Defines the mechanism to obtain the
|
|
1380
|
+
# Certificate Authority certificate to validate the client certificate.
|
|
1381
1381
|
# Corresponds to the JSON property `clientValidationCa`
|
|
1382
1382
|
# @return [Array<Google::Apis::NetworksecurityV1beta1::ValidationCa>]
|
|
1383
1383
|
attr_accessor :client_validation_ca
|
|
1384
1384
|
|
|
1385
|
-
#
|
|
1386
|
-
#
|
|
1387
|
-
#
|
|
1385
|
+
# When the client presents an invalid certificate or no certificate to the load
|
|
1386
|
+
# balancer, the `client_validation_mode` specifies how the client connection is
|
|
1387
|
+
# handled. Required if the policy is to be used with the external HTTPS load
|
|
1388
|
+
# balancing. For Traffic Director it must be empty.
|
|
1388
1389
|
# Corresponds to the JSON property `clientValidationMode`
|
|
1389
1390
|
# @return [String]
|
|
1390
1391
|
attr_accessor :client_validation_mode
|
|
@@ -1392,7 +1393,7 @@ module Google
|
|
|
1392
1393
|
# Reference to the TrustConfig from certificatemanager.googleapis.com namespace.
|
|
1393
1394
|
# If specified, the chain validation will be performed against certificates
|
|
1394
1395
|
# configured in the given TrustConfig. Allowed only if the policy is to be used
|
|
1395
|
-
# with
|
|
1396
|
+
# with external HTTPS load balancers.
|
|
1396
1397
|
# Corresponds to the JSON property `clientValidationTrustConfig`
|
|
1397
1398
|
# @return [String]
|
|
1398
1399
|
attr_accessor :client_validation_trust_config
|
|
@@ -1599,7 +1600,7 @@ module Google
|
|
|
1599
1600
|
# ServerTlsPolicy is a resource that specifies how a server should authenticate
|
|
1600
1601
|
# incoming requests. This resource itself does not affect configuration unless
|
|
1601
1602
|
# it is attached to a target HTTPS proxy or endpoint config selector resource.
|
|
1602
|
-
# ServerTlsPolicy in the form accepted by
|
|
1603
|
+
# ServerTlsPolicy in the form accepted by external HTTPS load balancers can be
|
|
1603
1604
|
# attached only to TargetHttpsProxy with an `EXTERNAL` or `EXTERNAL_MANAGED`
|
|
1604
1605
|
# load balancing scheme. Traffic Director compatible ServerTlsPolicies can be
|
|
1605
1606
|
# attached to EndpointPolicy and TargetHttpsProxy with Traffic Director `
|
|
@@ -1607,14 +1608,15 @@ module Google
|
|
|
1607
1608
|
class ServerTlsPolicy
|
|
1608
1609
|
include Google::Apis::Core::Hashable
|
|
1609
1610
|
|
|
1610
|
-
#
|
|
1611
|
-
# HTTPS
|
|
1612
|
-
# to true, server allows plain text connections.
|
|
1613
|
-
# This setting is not exclusive of other
|
|
1614
|
-
# allow_open` and `mtls_policy` are set,
|
|
1615
|
-
# connections. See documentation of other
|
|
1616
|
-
# compatibility. Consider using it if you wish to
|
|
1617
|
-
# deployment to TLS while having mixed TLS and non-TLS
|
|
1611
|
+
# This field applies only for Traffic Director policies. It is must be set to
|
|
1612
|
+
# false for external HTTPS load balancer policies. Determines if server allows
|
|
1613
|
+
# plaintext connections. If set to true, server allows plain text connections.
|
|
1614
|
+
# By default, it is set to false. This setting is not exclusive of other
|
|
1615
|
+
# encryption modes. For example, if `allow_open` and `mtls_policy` are set,
|
|
1616
|
+
# server allows both plain text and mTLS connections. See documentation of other
|
|
1617
|
+
# encryption modes to confirm compatibility. Consider using it if you wish to
|
|
1618
|
+
# upgrade in place your deployment to TLS while having mixed TLS and non-TLS
|
|
1619
|
+
# traffic reaching port :80.
|
|
1618
1620
|
# Corresponds to the JSON property `allowOpen`
|
|
1619
1621
|
# @return [Boolean]
|
|
1620
1622
|
attr_accessor :allow_open
|
|
@@ -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.21.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20230415"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.21.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-04-
|
|
11
|
+
date: 2023-04-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networksecurity_v1beta1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networksecurity_v1beta1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networksecurity_v1beta1/v0.21.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networksecurity_v1beta1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|