google-apis-networksecurity_v1 0.20.0 → 0.21.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: 77f25c811809a75584c1c96e30d24c08cd5b149e154ae48964d3bded2b9a3ad4
|
4
|
+
data.tar.gz: b97ee651a63285795654b78dd229413bf00024cb6ffd344a71ac6714b2c306bb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f268eb53135595a7a5305278023de7581482e8a5df71c58631f7f3a67b374a4f5990bb433fcca7706a29a5d8a95dee4ee140858e8fd528db4d0a575845ec60c6
|
7
|
+
data.tar.gz: 855001b86fe2868fb2484f526773a02f5efa803bd30432e171a38b2756a27dd38c89741f55fa1817b64f4f4d496f0d69115a557fabfc591162e6cfcdee2e9bcf
|
data/CHANGELOG.md
CHANGED
@@ -1766,11 +1766,44 @@ module Google
|
|
1766
1766
|
# @return [String]
|
1767
1767
|
attr_accessor :create_time
|
1768
1768
|
|
1769
|
+
# Optional. List of custom TLS cipher suites selected. This field is valid only
|
1770
|
+
# if the selected tls_feature_profile is CUSTOM. The compute.SslPoliciesService.
|
1771
|
+
# ListAvailableFeatures method returns the set of features that can be specified
|
1772
|
+
# in this list. Note that Secure Web Proxy does not yet honor this field.
|
1773
|
+
# Corresponds to the JSON property `customTlsFeatures`
|
1774
|
+
# @return [Array<String>]
|
1775
|
+
attr_accessor :custom_tls_features
|
1776
|
+
|
1769
1777
|
# Optional. Free-text description of the resource.
|
1770
1778
|
# Corresponds to the JSON property `description`
|
1771
1779
|
# @return [String]
|
1772
1780
|
attr_accessor :description
|
1773
1781
|
|
1782
|
+
# Optional. If FALSE (the default), use our default set of public CAs in
|
1783
|
+
# addition to any CAs specified in trust_config. These public CAs are currently
|
1784
|
+
# based on the Mozilla Root Program and are subject to change over time. If TRUE,
|
1785
|
+
# do not accept our default set of public CAs. Only CAs specified in
|
1786
|
+
# trust_config will be accepted. This defaults to FALSE (use public CAs in
|
1787
|
+
# addition to trust_config) for backwards compatibility, but trusting public
|
1788
|
+
# root CAs is *not recommended* unless the traffic in question is outbound to
|
1789
|
+
# public web servers. When possible, prefer setting this to "false" and
|
1790
|
+
# explicitly specifying trusted CAs and certificates in a TrustConfig. Note that
|
1791
|
+
# Secure Web Proxy does not yet honor this field.
|
1792
|
+
# Corresponds to the JSON property `excludePublicCaSet`
|
1793
|
+
# @return [Boolean]
|
1794
|
+
attr_accessor :exclude_public_ca_set
|
1795
|
+
alias_method :exclude_public_ca_set?, :exclude_public_ca_set
|
1796
|
+
|
1797
|
+
# Optional. Minimum TLS version that the firewall should use when negotiating
|
1798
|
+
# connections with both clients and servers. If this is not set, then the
|
1799
|
+
# default value is to allow the broadest set of clients and servers (TLS 1.0 or
|
1800
|
+
# higher). Setting this to more restrictive values may improve security, but may
|
1801
|
+
# also prevent the firewall from connecting to some clients or servers. Note
|
1802
|
+
# that Secure Web Proxy does not yet honor this field.
|
1803
|
+
# Corresponds to the JSON property `minTlsVersion`
|
1804
|
+
# @return [String]
|
1805
|
+
attr_accessor :min_tls_version
|
1806
|
+
|
1774
1807
|
# Required. Name of the resource. Name is of the form projects/`project`/
|
1775
1808
|
# locations/`location`/tlsInspectionPolicies/`tls_inspection_policy`
|
1776
1809
|
# tls_inspection_policy should match the pattern:(^[a-z]([a-z0-9-]`0,61`[a-z0-9])
|
@@ -1779,6 +1812,25 @@ module Google
|
|
1779
1812
|
# @return [String]
|
1780
1813
|
attr_accessor :name
|
1781
1814
|
|
1815
|
+
# Optional. The selected Profile. If this is not set, then the default value is
|
1816
|
+
# to allow the broadest set of clients and servers ("PROFILE_COMPATIBLE").
|
1817
|
+
# Setting this to more restrictive values may improve security, but may also
|
1818
|
+
# prevent the TLS inspection proxy from connecting to some clients or servers.
|
1819
|
+
# Note that Secure Web Proxy does not yet honor this field.
|
1820
|
+
# Corresponds to the JSON property `tlsFeatureProfile`
|
1821
|
+
# @return [String]
|
1822
|
+
attr_accessor :tls_feature_profile
|
1823
|
+
|
1824
|
+
# Optional. A TrustConfig resource used when making a connection to the TLS
|
1825
|
+
# server. This is a relative resource path following the form "projects/`project`
|
1826
|
+
# /locations/`location`/trustConfigs/`trust_config`". This is necessary to
|
1827
|
+
# intercept TLS connections to servers with certificates signed by a private CA
|
1828
|
+
# or self-signed certificates. Note that Secure Web Proxy does not yet honor
|
1829
|
+
# this field.
|
1830
|
+
# Corresponds to the JSON property `trustConfig`
|
1831
|
+
# @return [String]
|
1832
|
+
attr_accessor :trust_config
|
1833
|
+
|
1782
1834
|
# Output only. The timestamp when the resource was updated.
|
1783
1835
|
# Corresponds to the JSON property `updateTime`
|
1784
1836
|
# @return [String]
|
@@ -1792,8 +1844,13 @@ module Google
|
|
1792
1844
|
def update!(**args)
|
1793
1845
|
@ca_pool = args[:ca_pool] if args.key?(:ca_pool)
|
1794
1846
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1847
|
+
@custom_tls_features = args[:custom_tls_features] if args.key?(:custom_tls_features)
|
1795
1848
|
@description = args[:description] if args.key?(:description)
|
1849
|
+
@exclude_public_ca_set = args[:exclude_public_ca_set] if args.key?(:exclude_public_ca_set)
|
1850
|
+
@min_tls_version = args[:min_tls_version] if args.key?(:min_tls_version)
|
1796
1851
|
@name = args[:name] if args.key?(:name)
|
1852
|
+
@tls_feature_profile = args[:tls_feature_profile] if args.key?(:tls_feature_profile)
|
1853
|
+
@trust_config = args[:trust_config] if args.key?(:trust_config)
|
1797
1854
|
@update_time = args[:update_time] if args.key?(:update_time)
|
1798
1855
|
end
|
1799
1856
|
end
|
@@ -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.21.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 = "20230710"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -726,8 +726,13 @@ module Google
|
|
726
726
|
class Representation < Google::Apis::Core::JsonRepresentation
|
727
727
|
property :ca_pool, as: 'caPool'
|
728
728
|
property :create_time, as: 'createTime'
|
729
|
+
collection :custom_tls_features, as: 'customTlsFeatures'
|
729
730
|
property :description, as: 'description'
|
731
|
+
property :exclude_public_ca_set, as: 'excludePublicCaSet'
|
732
|
+
property :min_tls_version, as: 'minTlsVersion'
|
730
733
|
property :name, as: 'name'
|
734
|
+
property :tls_feature_profile, as: 'tlsFeatureProfile'
|
735
|
+
property :trust_config, as: 'trustConfig'
|
731
736
|
property :update_time, as: 'updateTime'
|
732
737
|
end
|
733
738
|
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.21.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-07-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_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.21.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: []
|