google-apis-networksecurity_v1beta1 0.18.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/networksecurity_v1beta1/classes.rb +389 -9
- data/lib/google/apis/networksecurity_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/networksecurity_v1beta1/representations.rb +139 -0
- data/lib/google/apis/networksecurity_v1beta1/service.rb +911 -167
- metadata +3 -3
@@ -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,26 @@ 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
|
+
collection :unreachable, as: 'unreachable'
|
567
|
+
end
|
568
|
+
end
|
569
|
+
|
570
|
+
class ListGatewaySecurityPolicyRulesResponse
|
571
|
+
# @private
|
572
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
573
|
+
collection :gateway_security_policy_rules, as: 'gatewaySecurityPolicyRules', class: Google::Apis::NetworksecurityV1beta1::GatewaySecurityPolicyRule, decorator: Google::Apis::NetworksecurityV1beta1::GatewaySecurityPolicyRule::Representation
|
574
|
+
|
575
|
+
property :next_page_token, as: 'nextPageToken'
|
576
|
+
collection :unreachable, as: 'unreachable'
|
577
|
+
end
|
578
|
+
end
|
579
|
+
|
485
580
|
class ListLocationsResponse
|
486
581
|
# @private
|
487
582
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -509,6 +604,26 @@ module Google
|
|
509
604
|
end
|
510
605
|
end
|
511
606
|
|
607
|
+
class ListTlsInspectionPoliciesResponse
|
608
|
+
# @private
|
609
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
610
|
+
property :next_page_token, as: 'nextPageToken'
|
611
|
+
collection :tls_inspection_policies, as: 'tlsInspectionPolicies', class: Google::Apis::NetworksecurityV1beta1::TlsInspectionPolicy, decorator: Google::Apis::NetworksecurityV1beta1::TlsInspectionPolicy::Representation
|
612
|
+
|
613
|
+
collection :unreachable, as: 'unreachable'
|
614
|
+
end
|
615
|
+
end
|
616
|
+
|
617
|
+
class ListUrlListsResponse
|
618
|
+
# @private
|
619
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
620
|
+
property :next_page_token, as: 'nextPageToken'
|
621
|
+
collection :unreachable, as: 'unreachable'
|
622
|
+
collection :url_lists, as: 'urlLists', class: Google::Apis::NetworksecurityV1beta1::UrlList, decorator: Google::Apis::NetworksecurityV1beta1::UrlList::Representation
|
623
|
+
|
624
|
+
end
|
625
|
+
end
|
626
|
+
|
512
627
|
class Location
|
513
628
|
# @private
|
514
629
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -525,6 +640,8 @@ module Google
|
|
525
640
|
class Representation < Google::Apis::Core::JsonRepresentation
|
526
641
|
collection :client_validation_ca, as: 'clientValidationCa', class: Google::Apis::NetworksecurityV1beta1::ValidationCa, decorator: Google::Apis::NetworksecurityV1beta1::ValidationCa::Representation
|
527
642
|
|
643
|
+
property :client_validation_mode, as: 'clientValidationMode'
|
644
|
+
property :client_validation_trust_config, as: 'clientValidationTrustConfig'
|
528
645
|
end
|
529
646
|
end
|
530
647
|
|
@@ -604,6 +721,28 @@ module Google
|
|
604
721
|
end
|
605
722
|
end
|
606
723
|
|
724
|
+
class TlsInspectionPolicy
|
725
|
+
# @private
|
726
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
727
|
+
property :ca_pool, as: 'caPool'
|
728
|
+
property :create_time, as: 'createTime'
|
729
|
+
property :description, as: 'description'
|
730
|
+
property :name, as: 'name'
|
731
|
+
property :update_time, as: 'updateTime'
|
732
|
+
end
|
733
|
+
end
|
734
|
+
|
735
|
+
class UrlList
|
736
|
+
# @private
|
737
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
738
|
+
property :create_time, as: 'createTime'
|
739
|
+
property :description, as: 'description'
|
740
|
+
property :name, as: 'name'
|
741
|
+
property :update_time, as: 'updateTime'
|
742
|
+
collection :values, as: 'values'
|
743
|
+
end
|
744
|
+
end
|
745
|
+
|
607
746
|
class ValidationCa
|
608
747
|
# @private
|
609
748
|
class Representation < Google::Apis::Core::JsonRepresentation
|