google-apis-networksecurity_v1 0.17.0 → 0.18.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 +4 -0
- data/lib/google/apis/networksecurity_v1/classes.rb +18 -16
- data/lib/google/apis/networksecurity_v1/gem_version.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2069795cc6f82c6b7a8a3b16c6a9a4ff991316c409aeadbc05fd988732a7859b
|
4
|
+
data.tar.gz: f9ef220a79aa9bd8039015bab773eddb0c16b7c9ab603f73a8943de4ce7ae072
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1732d5f66a632054c8c0f89a43f28425b73851c265a9f212ac59aec5edbaa4d9e26754fa7cce635057f8846c24972f9ec4778b1ca9db0857bf681ff8989fb473
|
7
|
+
data.tar.gz: 64e6c82346fc9bfa1f4c4b3f52d903d624eaa5a8c743d2ced1302855b92ec0f856af9bbd6d7b96063a0ddb7e07c6ff02ed31846bc0ff5fa7ca17add6382de6d7
|
data/CHANGELOG.md
CHANGED
@@ -1159,16 +1159,17 @@ module Google
|
|
1159
1159
|
class MtlsPolicy
|
1160
1160
|
include Google::Apis::Core::Hashable
|
1161
1161
|
|
1162
|
-
# Required if the policy is to be used with Traffic Director. For
|
1163
|
-
#
|
1164
|
-
# certificate to validate the client certificate.
|
1162
|
+
# Required if the policy is to be used with Traffic Director. For external HTTPS
|
1163
|
+
# load balancers it must be empty. Defines the mechanism to obtain the
|
1164
|
+
# Certificate Authority certificate to validate the client certificate.
|
1165
1165
|
# Corresponds to the JSON property `clientValidationCa`
|
1166
1166
|
# @return [Array<Google::Apis::NetworksecurityV1::ValidationCa>]
|
1167
1167
|
attr_accessor :client_validation_ca
|
1168
1168
|
|
1169
|
-
#
|
1170
|
-
#
|
1171
|
-
#
|
1169
|
+
# When the client presents an invalid certificate or no certificate to the load
|
1170
|
+
# balancer, the `client_validation_mode` specifies how the client connection is
|
1171
|
+
# handled. Required if the policy is to be used with the external HTTPS load
|
1172
|
+
# balancing. For Traffic Director it must be empty.
|
1172
1173
|
# Corresponds to the JSON property `clientValidationMode`
|
1173
1174
|
# @return [String]
|
1174
1175
|
attr_accessor :client_validation_mode
|
@@ -1176,7 +1177,7 @@ module Google
|
|
1176
1177
|
# Reference to the TrustConfig from certificatemanager.googleapis.com namespace.
|
1177
1178
|
# If specified, the chain validation will be performed against certificates
|
1178
1179
|
# configured in the given TrustConfig. Allowed only if the policy is to be used
|
1179
|
-
# with
|
1180
|
+
# with external HTTPS load balancers.
|
1180
1181
|
# Corresponds to the JSON property `clientValidationTrustConfig`
|
1181
1182
|
# @return [String]
|
1182
1183
|
attr_accessor :client_validation_trust_config
|
@@ -1349,7 +1350,7 @@ module Google
|
|
1349
1350
|
# ServerTlsPolicy is a resource that specifies how a server should authenticate
|
1350
1351
|
# incoming requests. This resource itself does not affect configuration unless
|
1351
1352
|
# it is attached to a target HTTPS proxy or endpoint config selector resource.
|
1352
|
-
# ServerTlsPolicy in the form accepted by
|
1353
|
+
# ServerTlsPolicy in the form accepted by external HTTPS load balancers can be
|
1353
1354
|
# attached only to TargetHttpsProxy with an `EXTERNAL` or `EXTERNAL_MANAGED`
|
1354
1355
|
# load balancing scheme. Traffic Director compatible ServerTlsPolicies can be
|
1355
1356
|
# attached to EndpointPolicy and TargetHttpsProxy with Traffic Director `
|
@@ -1357,14 +1358,15 @@ module Google
|
|
1357
1358
|
class ServerTlsPolicy
|
1358
1359
|
include Google::Apis::Core::Hashable
|
1359
1360
|
|
1360
|
-
#
|
1361
|
-
# HTTPS
|
1362
|
-
# to true, server allows plain text connections.
|
1363
|
-
# This setting is not exclusive of other
|
1364
|
-
# allow_open` and `mtls_policy` are set,
|
1365
|
-
# connections. See documentation of other
|
1366
|
-
# compatibility. Consider using it if you wish to
|
1367
|
-
# deployment to TLS while having mixed TLS and non-TLS
|
1361
|
+
# This field applies only for Traffic Director policies. It is must be set to
|
1362
|
+
# false for external HTTPS load balancer policies. Determines if server allows
|
1363
|
+
# plaintext connections. If set to true, server allows plain text connections.
|
1364
|
+
# By default, it is set to false. This setting is not exclusive of other
|
1365
|
+
# encryption modes. For example, if `allow_open` and `mtls_policy` are set,
|
1366
|
+
# server allows both plain text and mTLS connections. See documentation of other
|
1367
|
+
# encryption modes to confirm compatibility. Consider using it if you wish to
|
1368
|
+
# upgrade in place your deployment to TLS while having mixed TLS and non-TLS
|
1369
|
+
# traffic reaching port :80.
|
1368
1370
|
# Corresponds to the JSON property `allowOpen`
|
1369
1371
|
# @return [Boolean]
|
1370
1372
|
attr_accessor :allow_open
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworksecurityV1
|
18
18
|
# Version of the google-apis-networksecurity_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.18.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_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.18.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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networksecurity_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networksecurity_v1/v0.18.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networksecurity_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|