google-apis-networksecurity_v1 0.17.0 → 0.18.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2296d1968997aa841efa69079a592db4f810611a5605d221b0bc4ae95b389f28
4
- data.tar.gz: ebac54bee530e4a844daa9f2c487fb65aab5f7e51fbc3fbd93ba4bc84950c7ef
3
+ metadata.gz: 2069795cc6f82c6b7a8a3b16c6a9a4ff991316c409aeadbc05fd988732a7859b
4
+ data.tar.gz: f9ef220a79aa9bd8039015bab773eddb0c16b7c9ab603f73a8943de4ce7ae072
5
5
  SHA512:
6
- metadata.gz: 1ba1bd0d364ebadee72dce9dfb3e0e3f4c48c1a070fae1027136b1a14340fb85996a15c95ed45420a58f91f2fffcbbc2d4b4f3c186c174bdcd517c7086a5e346
7
- data.tar.gz: 564780fb418abea61bdfa2a430a6609ddd9099b2990f8337e4841bc249e712ff6892b08de5eb64d2be7355cab5e462fd865aa3cdcdd116799a9ed8ad9ab5791d
6
+ metadata.gz: 1732d5f66a632054c8c0f89a43f28425b73851c265a9f212ac59aec5edbaa4d9e26754fa7cce635057f8846c24972f9ec4778b1ca9db0857bf681ff8989fb473
7
+ data.tar.gz: 64e6c82346fc9bfa1f4c4b3f52d903d624eaa5a8c743d2ced1302855b92ec0f856af9bbd6d7b96063a0ddb7e07c6ff02ed31846bc0ff5fa7ca17add6382de6d7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-networksecurity_v1
2
2
 
3
+ ### v0.18.0 (2023-04-23)
4
+
5
+ * Regenerated from discovery document revision 20230415
6
+
3
7
  ### v0.17.0 (2023-04-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20230406
@@ -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 External HTTPS
1163
- # LB it must be empty. Defines the mechanism to obtain the Certificate Authority
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
- # Specifies whether client connections proceed when a client presents an invalid
1170
- # certificate or no certificate. Required if the policy is to be used with the
1171
- # External HTTPS LB. For Traffic Director it must be empty.
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 External HTTPS LB.
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 External HTTPS Load Balancer can be
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
- # Can be enabled only for Traffic Director policies, must be false for External
1361
- # HTTPS LB policies. Determines if server allows plaintext connections. If set
1362
- # to true, server allows plain text connections. By default, it is set to false.
1363
- # This setting is not exclusive of other encryption modes. For example, if `
1364
- # allow_open` and `mtls_policy` are set, server allows both plain text and mTLS
1365
- # connections. See documentation of other encryption modes to confirm
1366
- # compatibility. Consider using it if you wish to upgrade in place your
1367
- # deployment to TLS while having mixed TLS and non-TLS traffic reaching port :80.
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.17.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 = "20230406"
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.17.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-16 00:00:00.000000000 Z
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.17.0
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: []