google-apis-networksecurity_v1beta1 0.19.0 → 0.20.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: ef3a4af970b2330d2035f18ce224c97892f3bc3d31cd715d290235f6b5d30d2d
|
4
|
+
data.tar.gz: e30ae7513f7d9bccdcfa18638067a01146f2eae47f3acfa3ad0b1dd333282ee6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b4a55aedf94521f22d66eaad10c820fa44dba7a8ab8fd534450976e11bd933f7d51146ecc32ac0c5162b8305daf138b50c223f8b8b5a631fca917c3f7675600
|
7
|
+
data.tar.gz: 5cc1b36c86a3c7720789cc9df016b14e2a2043663593d28898180038fe8b3d103f45d008d73ef856759c67c23875d6dc3656be6129f340cac647c968c1d5271a
|
data/CHANGELOG.md
CHANGED
@@ -1131,6 +1131,11 @@ module Google
|
|
1131
1131
|
# @return [String]
|
1132
1132
|
attr_accessor :next_page_token
|
1133
1133
|
|
1134
|
+
# Locations that could not be reached.
|
1135
|
+
# Corresponds to the JSON property `unreachable`
|
1136
|
+
# @return [Array<String>]
|
1137
|
+
attr_accessor :unreachable
|
1138
|
+
|
1134
1139
|
def initialize(**args)
|
1135
1140
|
update!(**args)
|
1136
1141
|
end
|
@@ -1139,6 +1144,7 @@ module Google
|
|
1139
1144
|
def update!(**args)
|
1140
1145
|
@gateway_security_policies = args[:gateway_security_policies] if args.key?(:gateway_security_policies)
|
1141
1146
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1147
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
1142
1148
|
end
|
1143
1149
|
end
|
1144
1150
|
|
@@ -1158,6 +1164,11 @@ module Google
|
|
1158
1164
|
# @return [String]
|
1159
1165
|
attr_accessor :next_page_token
|
1160
1166
|
|
1167
|
+
# Locations that could not be reached.
|
1168
|
+
# Corresponds to the JSON property `unreachable`
|
1169
|
+
# @return [Array<String>]
|
1170
|
+
attr_accessor :unreachable
|
1171
|
+
|
1161
1172
|
def initialize(**args)
|
1162
1173
|
update!(**args)
|
1163
1174
|
end
|
@@ -1166,6 +1177,7 @@ module Google
|
|
1166
1177
|
def update!(**args)
|
1167
1178
|
@gateway_security_policy_rules = args[:gateway_security_policy_rules] if args.key?(:gateway_security_policy_rules)
|
1168
1179
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1180
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
1169
1181
|
end
|
1170
1182
|
end
|
1171
1183
|
|
@@ -1262,6 +1274,11 @@ module Google
|
|
1262
1274
|
# @return [Array<Google::Apis::NetworksecurityV1beta1::TlsInspectionPolicy>]
|
1263
1275
|
attr_accessor :tls_inspection_policies
|
1264
1276
|
|
1277
|
+
# Locations that could not be reached.
|
1278
|
+
# Corresponds to the JSON property `unreachable`
|
1279
|
+
# @return [Array<String>]
|
1280
|
+
attr_accessor :unreachable
|
1281
|
+
|
1265
1282
|
def initialize(**args)
|
1266
1283
|
update!(**args)
|
1267
1284
|
end
|
@@ -1270,6 +1287,7 @@ module Google
|
|
1270
1287
|
def update!(**args)
|
1271
1288
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1272
1289
|
@tls_inspection_policies = args[:tls_inspection_policies] if args.key?(:tls_inspection_policies)
|
1290
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
1273
1291
|
end
|
1274
1292
|
end
|
1275
1293
|
|
@@ -1357,12 +1375,28 @@ module Google
|
|
1357
1375
|
class MtlsPolicy
|
1358
1376
|
include Google::Apis::Core::Hashable
|
1359
1377
|
|
1360
|
-
#
|
1361
|
-
#
|
1378
|
+
# Required if the policy is to be used with Traffic Director. For External HTTPS
|
1379
|
+
# LB it must be empty. Defines the mechanism to obtain the Certificate Authority
|
1380
|
+
# certificate to validate the client certificate.
|
1362
1381
|
# Corresponds to the JSON property `clientValidationCa`
|
1363
1382
|
# @return [Array<Google::Apis::NetworksecurityV1beta1::ValidationCa>]
|
1364
1383
|
attr_accessor :client_validation_ca
|
1365
1384
|
|
1385
|
+
# Specifies whether client connections proceed when a client presents an invalid
|
1386
|
+
# certificate or no certificate. Required if the policy is to be used with the
|
1387
|
+
# External HTTPS LB. For Traffic Director it must be empty.
|
1388
|
+
# Corresponds to the JSON property `clientValidationMode`
|
1389
|
+
# @return [String]
|
1390
|
+
attr_accessor :client_validation_mode
|
1391
|
+
|
1392
|
+
# Reference to the TrustConfig from certificatemanager.googleapis.com namespace.
|
1393
|
+
# If specified, the chain validation will be performed against certificates
|
1394
|
+
# configured in the given TrustConfig. Allowed only if the policy is to be used
|
1395
|
+
# with External HTTPS LB.
|
1396
|
+
# Corresponds to the JSON property `clientValidationTrustConfig`
|
1397
|
+
# @return [String]
|
1398
|
+
attr_accessor :client_validation_trust_config
|
1399
|
+
|
1366
1400
|
def initialize(**args)
|
1367
1401
|
update!(**args)
|
1368
1402
|
end
|
@@ -1370,6 +1404,8 @@ module Google
|
|
1370
1404
|
# Update properties of this object
|
1371
1405
|
def update!(**args)
|
1372
1406
|
@client_validation_ca = args[:client_validation_ca] if args.key?(:client_validation_ca)
|
1407
|
+
@client_validation_mode = args[:client_validation_mode] if args.key?(:client_validation_mode)
|
1408
|
+
@client_validation_trust_config = args[:client_validation_trust_config] if args.key?(:client_validation_trust_config)
|
1373
1409
|
end
|
1374
1410
|
end
|
1375
1411
|
|
@@ -1563,16 +1599,22 @@ module Google
|
|
1563
1599
|
# ServerTlsPolicy is a resource that specifies how a server should authenticate
|
1564
1600
|
# incoming requests. This resource itself does not affect configuration unless
|
1565
1601
|
# it is attached to a target HTTPS proxy or endpoint config selector resource.
|
1602
|
+
# ServerTlsPolicy in the form accepted by External HTTPS Load Balancer can be
|
1603
|
+
# attached only to TargetHttpsProxy with an `EXTERNAL` or `EXTERNAL_MANAGED`
|
1604
|
+
# load balancing scheme. Traffic Director compatible ServerTlsPolicies can be
|
1605
|
+
# attached to EndpointPolicy and TargetHttpsProxy with Traffic Director `
|
1606
|
+
# INTERNAL_SELF_MANAGED` load balancing scheme.
|
1566
1607
|
class ServerTlsPolicy
|
1567
1608
|
include Google::Apis::Core::Hashable
|
1568
1609
|
|
1569
|
-
#
|
1570
|
-
#
|
1571
|
-
#
|
1572
|
-
#
|
1573
|
-
#
|
1574
|
-
#
|
1575
|
-
#
|
1610
|
+
# Can be enabled only for Traffic Director policies, must be false for External
|
1611
|
+
# HTTPS LB policies. Determines if server allows plaintext connections. If set
|
1612
|
+
# to true, server allows plain text connections. By default, it is set to false.
|
1613
|
+
# This setting is not exclusive of other encryption modes. For example, if `
|
1614
|
+
# allow_open` and `mtls_policy` are set, server allows both plain text and mTLS
|
1615
|
+
# connections. See documentation of other encryption modes to confirm
|
1616
|
+
# compatibility. Consider using it if you wish to upgrade in place your
|
1617
|
+
# deployment to TLS while having mixed TLS and non-TLS traffic reaching port :80.
|
1576
1618
|
# Corresponds to the JSON property `allowOpen`
|
1577
1619
|
# @return [Boolean]
|
1578
1620
|
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.20.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 = "20230406"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -563,6 +563,7 @@ module Google
|
|
563
563
|
collection :gateway_security_policies, as: 'gatewaySecurityPolicies', class: Google::Apis::NetworksecurityV1beta1::GatewaySecurityPolicy, decorator: Google::Apis::NetworksecurityV1beta1::GatewaySecurityPolicy::Representation
|
564
564
|
|
565
565
|
property :next_page_token, as: 'nextPageToken'
|
566
|
+
collection :unreachable, as: 'unreachable'
|
566
567
|
end
|
567
568
|
end
|
568
569
|
|
@@ -572,6 +573,7 @@ module Google
|
|
572
573
|
collection :gateway_security_policy_rules, as: 'gatewaySecurityPolicyRules', class: Google::Apis::NetworksecurityV1beta1::GatewaySecurityPolicyRule, decorator: Google::Apis::NetworksecurityV1beta1::GatewaySecurityPolicyRule::Representation
|
573
574
|
|
574
575
|
property :next_page_token, as: 'nextPageToken'
|
576
|
+
collection :unreachable, as: 'unreachable'
|
575
577
|
end
|
576
578
|
end
|
577
579
|
|
@@ -608,6 +610,7 @@ module Google
|
|
608
610
|
property :next_page_token, as: 'nextPageToken'
|
609
611
|
collection :tls_inspection_policies, as: 'tlsInspectionPolicies', class: Google::Apis::NetworksecurityV1beta1::TlsInspectionPolicy, decorator: Google::Apis::NetworksecurityV1beta1::TlsInspectionPolicy::Representation
|
610
612
|
|
613
|
+
collection :unreachable, as: 'unreachable'
|
611
614
|
end
|
612
615
|
end
|
613
616
|
|
@@ -637,6 +640,8 @@ module Google
|
|
637
640
|
class Representation < Google::Apis::Core::JsonRepresentation
|
638
641
|
collection :client_validation_ca, as: 'clientValidationCa', class: Google::Apis::NetworksecurityV1beta1::ValidationCa, decorator: Google::Apis::NetworksecurityV1beta1::ValidationCa::Representation
|
639
642
|
|
643
|
+
property :client_validation_mode, as: 'clientValidationMode'
|
644
|
+
property :client_validation_trust_config, as: 'clientValidationTrustConfig'
|
640
645
|
end
|
641
646
|
end
|
642
647
|
|
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.20.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-
|
11
|
+
date: 2023-04-16 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.20.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: []
|