google-apis-networksecurity_v1beta1 0.18.0 → 0.19.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: 54471a1e38d1b8b73a65534f507c1534c79f688db818668e73577354c87772ac
4
- data.tar.gz: 318869d34b7020e6f68f4328408a798d1b5affd563673b3e9da99670aea2451e
3
+ metadata.gz: b5601279f091adcf2970a5b0cc8cddb11171a5fa9595883445864277870b1cb9
4
+ data.tar.gz: ad9a303eb0db50d90699d88dafb3b79b1096e993766829644ac585051467eb13
5
5
  SHA512:
6
- metadata.gz: d2835ca59716004e5e747c235bbe1d1e765e90137aedcab8ec10fad989fe5c8c457df8f8a57078edb25246440e58fdd47c9b7c3d1791d896de929fa72afda316
7
- data.tar.gz: 0b88ad717e2452c8da85f3633af255d3da5be0daa43a9fbd7a0bd4d03e0d49b038f148ae465e7d36be20d035b04871b819e6fc5e6d5ae3734faa391d13682e52
6
+ metadata.gz: d2839c13a3e7c556e741ddc831620c093b36c29dcb5a4b02dab38d885e57002272cc7d730e1aee86f34131e8d451aa762dbe7333375b32fa9d07b1f95f43d82c
7
+ data.tar.gz: 824505d6c801615c9be4b586e03b2fb48d15c4ce4b75d98294c088d088cf852ece6e952f963b35af7c6dedbb0f89ff9835a74689df96466b58c2928e2c7a6196
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-networksecurity_v1beta1
2
2
 
3
+ ### v0.19.0 (2023-03-26)
4
+
5
+ * Regenerated from discovery document revision 20230316
6
+
3
7
  ### v0.18.0 (2023-03-12)
4
8
 
5
9
  * Regenerated from discovery document revision 20230306
@@ -438,6 +438,135 @@ module Google
438
438
  end
439
439
  end
440
440
 
441
+ # The GatewaySecurityPolicy resource contains a collection of
442
+ # GatewaySecurityPolicyRules and associated metadata.
443
+ class GatewaySecurityPolicy
444
+ include Google::Apis::Core::Hashable
445
+
446
+ # Output only. The timestamp when the resource was created.
447
+ # Corresponds to the JSON property `createTime`
448
+ # @return [String]
449
+ attr_accessor :create_time
450
+
451
+ # Optional. Free-text description of the resource.
452
+ # Corresponds to the JSON property `description`
453
+ # @return [String]
454
+ attr_accessor :description
455
+
456
+ # Required. Name of the resource. Name is of the form projects/`project`/
457
+ # locations/`location`/gatewaySecurityPolicies/`gateway_security_policy`
458
+ # gateway_security_policy should match the pattern:(^[a-z]([a-z0-9-]`0,61`[a-z0-
459
+ # 9])?$).
460
+ # Corresponds to the JSON property `name`
461
+ # @return [String]
462
+ attr_accessor :name
463
+
464
+ # Optional. Name of a TLS Inspection Policy resource that defines how TLS
465
+ # inspection will be performed for any rule(s) which enables it.
466
+ # Corresponds to the JSON property `tlsInspectionPolicy`
467
+ # @return [String]
468
+ attr_accessor :tls_inspection_policy
469
+
470
+ # Output only. The timestamp when the resource was updated.
471
+ # Corresponds to the JSON property `updateTime`
472
+ # @return [String]
473
+ attr_accessor :update_time
474
+
475
+ def initialize(**args)
476
+ update!(**args)
477
+ end
478
+
479
+ # Update properties of this object
480
+ def update!(**args)
481
+ @create_time = args[:create_time] if args.key?(:create_time)
482
+ @description = args[:description] if args.key?(:description)
483
+ @name = args[:name] if args.key?(:name)
484
+ @tls_inspection_policy = args[:tls_inspection_policy] if args.key?(:tls_inspection_policy)
485
+ @update_time = args[:update_time] if args.key?(:update_time)
486
+ end
487
+ end
488
+
489
+ # The GatewaySecurityPolicyRule resource is in a nested collection within a
490
+ # GatewaySecurityPolicy and represents a traffic matching condition and
491
+ # associated action to perform.
492
+ class GatewaySecurityPolicyRule
493
+ include Google::Apis::Core::Hashable
494
+
495
+ # Optional. CEL expression for matching on L7/application level criteria.
496
+ # Corresponds to the JSON property `applicationMatcher`
497
+ # @return [String]
498
+ attr_accessor :application_matcher
499
+
500
+ # Required. Profile which tells what the primitive action should be.
501
+ # Corresponds to the JSON property `basicProfile`
502
+ # @return [String]
503
+ attr_accessor :basic_profile
504
+
505
+ # Output only. Time when the rule was created.
506
+ # Corresponds to the JSON property `createTime`
507
+ # @return [String]
508
+ attr_accessor :create_time
509
+
510
+ # Optional. Free-text description of the resource.
511
+ # Corresponds to the JSON property `description`
512
+ # @return [String]
513
+ attr_accessor :description
514
+
515
+ # Required. Whether the rule is enforced.
516
+ # Corresponds to the JSON property `enabled`
517
+ # @return [Boolean]
518
+ attr_accessor :enabled
519
+ alias_method :enabled?, :enabled
520
+
521
+ # Required. Immutable. Name of the resource. ame is the full resource name so
522
+ # projects/`project`/locations/`location`/gatewaySecurityPolicies/`
523
+ # gateway_security_policy`/rules/`rule` rule should match the pattern: (^[a-z]([
524
+ # a-z0-9-]`0,61`[a-z0-9])?$).
525
+ # Corresponds to the JSON property `name`
526
+ # @return [String]
527
+ attr_accessor :name
528
+
529
+ # Required. Priority of the rule. Lower number corresponds to higher precedence.
530
+ # Corresponds to the JSON property `priority`
531
+ # @return [Fixnum]
532
+ attr_accessor :priority
533
+
534
+ # Required. CEL expression for matching on session criteria.
535
+ # Corresponds to the JSON property `sessionMatcher`
536
+ # @return [String]
537
+ attr_accessor :session_matcher
538
+
539
+ # Optional. Flag to enable TLS inspection of traffic matching on , can only be
540
+ # true if the parent GatewaySecurityPolicy references a TLSInspectionConfig.
541
+ # Corresponds to the JSON property `tlsInspectionEnabled`
542
+ # @return [Boolean]
543
+ attr_accessor :tls_inspection_enabled
544
+ alias_method :tls_inspection_enabled?, :tls_inspection_enabled
545
+
546
+ # Output only. Time when the rule was updated.
547
+ # Corresponds to the JSON property `updateTime`
548
+ # @return [String]
549
+ attr_accessor :update_time
550
+
551
+ def initialize(**args)
552
+ update!(**args)
553
+ end
554
+
555
+ # Update properties of this object
556
+ def update!(**args)
557
+ @application_matcher = args[:application_matcher] if args.key?(:application_matcher)
558
+ @basic_profile = args[:basic_profile] if args.key?(:basic_profile)
559
+ @create_time = args[:create_time] if args.key?(:create_time)
560
+ @description = args[:description] if args.key?(:description)
561
+ @enabled = args[:enabled] if args.key?(:enabled)
562
+ @name = args[:name] if args.key?(:name)
563
+ @priority = args[:priority] if args.key?(:priority)
564
+ @session_matcher = args[:session_matcher] if args.key?(:session_matcher)
565
+ @tls_inspection_enabled = args[:tls_inspection_enabled] if args.key?(:tls_inspection_enabled)
566
+ @update_time = args[:update_time] if args.key?(:update_time)
567
+ end
568
+ end
569
+
441
570
  # Specification of certificate provider. Defines the mechanism to obtain the
442
571
  # certificate and private key for peer to peer authentication.
443
572
  class GoogleCloudNetworksecurityV1beta1CertificateProvider
@@ -986,6 +1115,60 @@ module Google
986
1115
  end
987
1116
  end
988
1117
 
1118
+ # Response returned by the ListGatewaySecurityPolicies method.
1119
+ class ListGatewaySecurityPoliciesResponse
1120
+ include Google::Apis::Core::Hashable
1121
+
1122
+ # List of GatewaySecurityPolicies resources.
1123
+ # Corresponds to the JSON property `gatewaySecurityPolicies`
1124
+ # @return [Array<Google::Apis::NetworksecurityV1beta1::GatewaySecurityPolicy>]
1125
+ attr_accessor :gateway_security_policies
1126
+
1127
+ # If there might be more results than those appearing in this response, then '
1128
+ # next_page_token' is included. To get the next set of results, call this method
1129
+ # again using the value of 'next_page_token' as 'page_token'.
1130
+ # Corresponds to the JSON property `nextPageToken`
1131
+ # @return [String]
1132
+ attr_accessor :next_page_token
1133
+
1134
+ def initialize(**args)
1135
+ update!(**args)
1136
+ end
1137
+
1138
+ # Update properties of this object
1139
+ def update!(**args)
1140
+ @gateway_security_policies = args[:gateway_security_policies] if args.key?(:gateway_security_policies)
1141
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1142
+ end
1143
+ end
1144
+
1145
+ # Response returned by the ListGatewaySecurityPolicyRules method.
1146
+ class ListGatewaySecurityPolicyRulesResponse
1147
+ include Google::Apis::Core::Hashable
1148
+
1149
+ # List of GatewaySecurityPolicyRule resources.
1150
+ # Corresponds to the JSON property `gatewaySecurityPolicyRules`
1151
+ # @return [Array<Google::Apis::NetworksecurityV1beta1::GatewaySecurityPolicyRule>]
1152
+ attr_accessor :gateway_security_policy_rules
1153
+
1154
+ # If there might be more results than those appearing in this response, then '
1155
+ # next_page_token' is included. To get the next set of results, call this method
1156
+ # again using the value of 'next_page_token' as 'page_token'.
1157
+ # Corresponds to the JSON property `nextPageToken`
1158
+ # @return [String]
1159
+ attr_accessor :next_page_token
1160
+
1161
+ def initialize(**args)
1162
+ update!(**args)
1163
+ end
1164
+
1165
+ # Update properties of this object
1166
+ def update!(**args)
1167
+ @gateway_security_policy_rules = args[:gateway_security_policy_rules] if args.key?(:gateway_security_policy_rules)
1168
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1169
+ end
1170
+ end
1171
+
989
1172
  # The response message for Locations.ListLocations.
990
1173
  class ListLocationsResponse
991
1174
  include Google::Apis::Core::Hashable
@@ -1063,6 +1246,66 @@ module Google
1063
1246
  end
1064
1247
  end
1065
1248
 
1249
+ # Response returned by the ListTlsInspectionPolicies method.
1250
+ class ListTlsInspectionPoliciesResponse
1251
+ include Google::Apis::Core::Hashable
1252
+
1253
+ # If there might be more results than those appearing in this response, then '
1254
+ # next_page_token' is included. To get the next set of results, call this method
1255
+ # again using the value of 'next_page_token' as 'page_token'.
1256
+ # Corresponds to the JSON property `nextPageToken`
1257
+ # @return [String]
1258
+ attr_accessor :next_page_token
1259
+
1260
+ # List of TlsInspectionPolicies resources.
1261
+ # Corresponds to the JSON property `tlsInspectionPolicies`
1262
+ # @return [Array<Google::Apis::NetworksecurityV1beta1::TlsInspectionPolicy>]
1263
+ attr_accessor :tls_inspection_policies
1264
+
1265
+ def initialize(**args)
1266
+ update!(**args)
1267
+ end
1268
+
1269
+ # Update properties of this object
1270
+ def update!(**args)
1271
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1272
+ @tls_inspection_policies = args[:tls_inspection_policies] if args.key?(:tls_inspection_policies)
1273
+ end
1274
+ end
1275
+
1276
+ # Response returned by the ListUrlLists method.
1277
+ class ListUrlListsResponse
1278
+ include Google::Apis::Core::Hashable
1279
+
1280
+ # If there might be more results than those appearing in this response, then `
1281
+ # next_page_token` is included. To get the next set of results, call this method
1282
+ # again using the value of `next_page_token` as `page_token`.
1283
+ # Corresponds to the JSON property `nextPageToken`
1284
+ # @return [String]
1285
+ attr_accessor :next_page_token
1286
+
1287
+ # Locations that could not be reached.
1288
+ # Corresponds to the JSON property `unreachable`
1289
+ # @return [Array<String>]
1290
+ attr_accessor :unreachable
1291
+
1292
+ # List of UrlList resources.
1293
+ # Corresponds to the JSON property `urlLists`
1294
+ # @return [Array<Google::Apis::NetworksecurityV1beta1::UrlList>]
1295
+ attr_accessor :url_lists
1296
+
1297
+ def initialize(**args)
1298
+ update!(**args)
1299
+ end
1300
+
1301
+ # Update properties of this object
1302
+ def update!(**args)
1303
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1304
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1305
+ @url_lists = args[:url_lists] if args.key?(:url_lists)
1306
+ end
1307
+ end
1308
+
1066
1309
  # A resource that represents Google Cloud Platform location.
1067
1310
  class Location
1068
1311
  include Google::Apis::Core::Hashable
@@ -1462,6 +1705,101 @@ module Google
1462
1705
  end
1463
1706
  end
1464
1707
 
1708
+ # The TlsInspectionPolicy resource contains references to CA pools in
1709
+ # Certificate Authority Service and associated metadata.
1710
+ class TlsInspectionPolicy
1711
+ include Google::Apis::Core::Hashable
1712
+
1713
+ # Required. A CA pool resource used to issue interception certificates. The CA
1714
+ # pool string has a relative resource path following the form "projects/`project`
1715
+ # /locations/`location`/caPools/`ca_pool`".
1716
+ # Corresponds to the JSON property `caPool`
1717
+ # @return [String]
1718
+ attr_accessor :ca_pool
1719
+
1720
+ # Output only. The timestamp when the resource was created.
1721
+ # Corresponds to the JSON property `createTime`
1722
+ # @return [String]
1723
+ attr_accessor :create_time
1724
+
1725
+ # Optional. Free-text description of the resource.
1726
+ # Corresponds to the JSON property `description`
1727
+ # @return [String]
1728
+ attr_accessor :description
1729
+
1730
+ # Required. Name of the resource. Name is of the form projects/`project`/
1731
+ # locations/`location`/tlsInspectionPolicies/`tls_inspection_policy`
1732
+ # tls_inspection_policy should match the pattern:(^[a-z]([a-z0-9-]`0,61`[a-z0-9])
1733
+ # ?$).
1734
+ # Corresponds to the JSON property `name`
1735
+ # @return [String]
1736
+ attr_accessor :name
1737
+
1738
+ # Output only. The timestamp when the resource was updated.
1739
+ # Corresponds to the JSON property `updateTime`
1740
+ # @return [String]
1741
+ attr_accessor :update_time
1742
+
1743
+ def initialize(**args)
1744
+ update!(**args)
1745
+ end
1746
+
1747
+ # Update properties of this object
1748
+ def update!(**args)
1749
+ @ca_pool = args[:ca_pool] if args.key?(:ca_pool)
1750
+ @create_time = args[:create_time] if args.key?(:create_time)
1751
+ @description = args[:description] if args.key?(:description)
1752
+ @name = args[:name] if args.key?(:name)
1753
+ @update_time = args[:update_time] if args.key?(:update_time)
1754
+ end
1755
+ end
1756
+
1757
+ # UrlList proto helps users to set reusable, independently manageable lists of
1758
+ # hosts, host patterns, URLs, URL patterns.
1759
+ class UrlList
1760
+ include Google::Apis::Core::Hashable
1761
+
1762
+ # Output only. Time when the security policy was created.
1763
+ # Corresponds to the JSON property `createTime`
1764
+ # @return [String]
1765
+ attr_accessor :create_time
1766
+
1767
+ # Optional. Free-text description of the resource.
1768
+ # Corresponds to the JSON property `description`
1769
+ # @return [String]
1770
+ attr_accessor :description
1771
+
1772
+ # Required. Name of the resource provided by the user. Name is of the form
1773
+ # projects/`project`/locations/`location`/urlLists/`url_list` url_list should
1774
+ # match the pattern:(^[a-z]([a-z0-9-]`0,61`[a-z0-9])?$).
1775
+ # Corresponds to the JSON property `name`
1776
+ # @return [String]
1777
+ attr_accessor :name
1778
+
1779
+ # Output only. Time when the security policy was updated.
1780
+ # Corresponds to the JSON property `updateTime`
1781
+ # @return [String]
1782
+ attr_accessor :update_time
1783
+
1784
+ # Required. FQDNs and URLs.
1785
+ # Corresponds to the JSON property `values`
1786
+ # @return [Array<String>]
1787
+ attr_accessor :values
1788
+
1789
+ def initialize(**args)
1790
+ update!(**args)
1791
+ end
1792
+
1793
+ # Update properties of this object
1794
+ def update!(**args)
1795
+ @create_time = args[:create_time] if args.key?(:create_time)
1796
+ @description = args[:description] if args.key?(:description)
1797
+ @name = args[:name] if args.key?(:name)
1798
+ @update_time = args[:update_time] if args.key?(:update_time)
1799
+ @values = args[:values] if args.key?(:values)
1800
+ end
1801
+ end
1802
+
1465
1803
  # Specification of ValidationCA. Defines the mechanism to obtain the Certificate
1466
1804
  # Authority certificate to validate the peer certificate.
1467
1805
  class ValidationCa
@@ -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.18.0"
19
+ GEM_VERSION = "0.19.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 = "20230306"
25
+ REVISION = "20230316"
26
26
  end
27
27
  end
28
28
  end
@@ -82,6 +82,18 @@ module Google
82
82
  include Google::Apis::Core::JsonObjectSupport
83
83
  end
84
84
 
85
+ class GatewaySecurityPolicy
86
+ class Representation < Google::Apis::Core::JsonRepresentation; end
87
+
88
+ include Google::Apis::Core::JsonObjectSupport
89
+ end
90
+
91
+ class GatewaySecurityPolicyRule
92
+ class Representation < Google::Apis::Core::JsonRepresentation; end
93
+
94
+ include Google::Apis::Core::JsonObjectSupport
95
+ end
96
+
85
97
  class GoogleCloudNetworksecurityV1beta1CertificateProvider
86
98
  class Representation < Google::Apis::Core::JsonRepresentation; end
87
99
 
@@ -172,6 +184,18 @@ module Google
172
184
  include Google::Apis::Core::JsonObjectSupport
173
185
  end
174
186
 
187
+ class ListGatewaySecurityPoliciesResponse
188
+ class Representation < Google::Apis::Core::JsonRepresentation; end
189
+
190
+ include Google::Apis::Core::JsonObjectSupport
191
+ end
192
+
193
+ class ListGatewaySecurityPolicyRulesResponse
194
+ class Representation < Google::Apis::Core::JsonRepresentation; end
195
+
196
+ include Google::Apis::Core::JsonObjectSupport
197
+ end
198
+
175
199
  class ListLocationsResponse
176
200
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
201
 
@@ -190,6 +214,18 @@ module Google
190
214
  include Google::Apis::Core::JsonObjectSupport
191
215
  end
192
216
 
217
+ class ListTlsInspectionPoliciesResponse
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
223
+ class ListUrlListsResponse
224
+ class Representation < Google::Apis::Core::JsonRepresentation; end
225
+
226
+ include Google::Apis::Core::JsonObjectSupport
227
+ end
228
+
193
229
  class Location
194
230
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
231
 
@@ -244,6 +280,18 @@ module Google
244
280
  include Google::Apis::Core::JsonObjectSupport
245
281
  end
246
282
 
283
+ class TlsInspectionPolicy
284
+ class Representation < Google::Apis::Core::JsonRepresentation; end
285
+
286
+ include Google::Apis::Core::JsonObjectSupport
287
+ end
288
+
289
+ class UrlList
290
+ class Representation < Google::Apis::Core::JsonRepresentation; end
291
+
292
+ include Google::Apis::Core::JsonObjectSupport
293
+ end
294
+
247
295
  class ValidationCa
248
296
  class Representation < Google::Apis::Core::JsonRepresentation; end
249
297
 
@@ -351,6 +399,33 @@ module Google
351
399
  end
352
400
  end
353
401
 
402
+ class GatewaySecurityPolicy
403
+ # @private
404
+ class Representation < Google::Apis::Core::JsonRepresentation
405
+ property :create_time, as: 'createTime'
406
+ property :description, as: 'description'
407
+ property :name, as: 'name'
408
+ property :tls_inspection_policy, as: 'tlsInspectionPolicy'
409
+ property :update_time, as: 'updateTime'
410
+ end
411
+ end
412
+
413
+ class GatewaySecurityPolicyRule
414
+ # @private
415
+ class Representation < Google::Apis::Core::JsonRepresentation
416
+ property :application_matcher, as: 'applicationMatcher'
417
+ property :basic_profile, as: 'basicProfile'
418
+ property :create_time, as: 'createTime'
419
+ property :description, as: 'description'
420
+ property :enabled, as: 'enabled'
421
+ property :name, as: 'name'
422
+ property :priority, as: 'priority'
423
+ property :session_matcher, as: 'sessionMatcher'
424
+ property :tls_inspection_enabled, as: 'tlsInspectionEnabled'
425
+ property :update_time, as: 'updateTime'
426
+ end
427
+ end
428
+
354
429
  class GoogleCloudNetworksecurityV1beta1CertificateProvider
355
430
  # @private
356
431
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -482,6 +557,24 @@ module Google
482
557
  end
483
558
  end
484
559
 
560
+ class ListGatewaySecurityPoliciesResponse
561
+ # @private
562
+ class Representation < Google::Apis::Core::JsonRepresentation
563
+ collection :gateway_security_policies, as: 'gatewaySecurityPolicies', class: Google::Apis::NetworksecurityV1beta1::GatewaySecurityPolicy, decorator: Google::Apis::NetworksecurityV1beta1::GatewaySecurityPolicy::Representation
564
+
565
+ property :next_page_token, as: 'nextPageToken'
566
+ end
567
+ end
568
+
569
+ class ListGatewaySecurityPolicyRulesResponse
570
+ # @private
571
+ class Representation < Google::Apis::Core::JsonRepresentation
572
+ collection :gateway_security_policy_rules, as: 'gatewaySecurityPolicyRules', class: Google::Apis::NetworksecurityV1beta1::GatewaySecurityPolicyRule, decorator: Google::Apis::NetworksecurityV1beta1::GatewaySecurityPolicyRule::Representation
573
+
574
+ property :next_page_token, as: 'nextPageToken'
575
+ end
576
+ end
577
+
485
578
  class ListLocationsResponse
486
579
  # @private
487
580
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -509,6 +602,25 @@ module Google
509
602
  end
510
603
  end
511
604
 
605
+ class ListTlsInspectionPoliciesResponse
606
+ # @private
607
+ class Representation < Google::Apis::Core::JsonRepresentation
608
+ property :next_page_token, as: 'nextPageToken'
609
+ collection :tls_inspection_policies, as: 'tlsInspectionPolicies', class: Google::Apis::NetworksecurityV1beta1::TlsInspectionPolicy, decorator: Google::Apis::NetworksecurityV1beta1::TlsInspectionPolicy::Representation
610
+
611
+ end
612
+ end
613
+
614
+ class ListUrlListsResponse
615
+ # @private
616
+ class Representation < Google::Apis::Core::JsonRepresentation
617
+ property :next_page_token, as: 'nextPageToken'
618
+ collection :unreachable, as: 'unreachable'
619
+ collection :url_lists, as: 'urlLists', class: Google::Apis::NetworksecurityV1beta1::UrlList, decorator: Google::Apis::NetworksecurityV1beta1::UrlList::Representation
620
+
621
+ end
622
+ end
623
+
512
624
  class Location
513
625
  # @private
514
626
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -604,6 +716,28 @@ module Google
604
716
  end
605
717
  end
606
718
 
719
+ class TlsInspectionPolicy
720
+ # @private
721
+ class Representation < Google::Apis::Core::JsonRepresentation
722
+ property :ca_pool, as: 'caPool'
723
+ property :create_time, as: 'createTime'
724
+ property :description, as: 'description'
725
+ property :name, as: 'name'
726
+ property :update_time, as: 'updateTime'
727
+ end
728
+ end
729
+
730
+ class UrlList
731
+ # @private
732
+ class Representation < Google::Apis::Core::JsonRepresentation
733
+ property :create_time, as: 'createTime'
734
+ property :description, as: 'description'
735
+ property :name, as: 'name'
736
+ property :update_time, as: 'updateTime'
737
+ collection :values, as: 'values'
738
+ end
739
+ end
740
+
607
741
  class ValidationCa
608
742
  # @private
609
743
  class Representation < Google::Apis::Core::JsonRepresentation