google-apis-beyondcorp_v1 0.42.0 → 0.43.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: 1de0cb3397b7c57c6bd74000da2a44c0fb53ac600184f614b7a6ca4a9e2cae74
|
4
|
+
data.tar.gz: 5c11197c4665fecb75a57b644f00f2b6ca5695539013e2260d771c0a27df2140
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0637c9d98db6ff78b2456198b3db08ca6bc26f3738d567c40306dd4ed758879a22ecb53097f93d799c9e00ebb7634e850302fd8b246fb0e85dad0a94bbfa77eb
|
7
|
+
data.tar.gz: 23abc9e63e32d8610afb5e9611ad02486076720f2903edbabf5bfa2447550f64dd74178227045894ece6a11667211e5596d5b3bb1f3f26f970a225568d99a158
|
data/CHANGELOG.md
CHANGED
@@ -1693,10 +1693,9 @@ module Google
|
|
1693
1693
|
# hostname and ports as endpoint matchers is used to match the application.
|
1694
1694
|
# Match conditions for OR logic. An array of match conditions to allow for
|
1695
1695
|
# multiple matching criteria. The rule is considered a match if one of the
|
1696
|
-
# conditions is met. The conditions
|
1697
|
-
# Hostname
|
1698
|
-
# example.com"
|
1699
|
-
# and "22,33") etc
|
1696
|
+
# conditions is met. The conditions should be the following combination: (
|
1697
|
+
# Hostname & Ports) EXAMPLES: Hostname and Ports - ("*.example.com", "443"), ("
|
1698
|
+
# example.com" and "22"), ("example.com" and "22,33") etc
|
1700
1699
|
# Corresponds to the JSON property `endpointMatchers`
|
1701
1700
|
# @return [Array<Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher>]
|
1702
1701
|
attr_accessor :endpoint_matchers
|
@@ -1706,6 +1705,11 @@ module Google
|
|
1706
1705
|
# @return [String]
|
1707
1706
|
attr_accessor :name
|
1708
1707
|
|
1708
|
+
# Optional. Type of the external application.
|
1709
|
+
# Corresponds to the JSON property `schema`
|
1710
|
+
# @return [String]
|
1711
|
+
attr_accessor :schema
|
1712
|
+
|
1709
1713
|
# Output only. Timestamp when the resource was last modified.
|
1710
1714
|
# Corresponds to the JSON property `updateTime`
|
1711
1715
|
# @return [String]
|
@@ -1726,6 +1730,7 @@ module Google
|
|
1726
1730
|
@display_name = args[:display_name] if args.key?(:display_name)
|
1727
1731
|
@endpoint_matchers = args[:endpoint_matchers] if args.key?(:endpoint_matchers)
|
1728
1732
|
@name = args[:name] if args.key?(:name)
|
1733
|
+
@schema = args[:schema] if args.key?(:schema)
|
1729
1734
|
@update_time = args[:update_time] if args.key?(:update_time)
|
1730
1735
|
@upstreams = args[:upstreams] if args.key?(:upstreams)
|
1731
1736
|
end
|
@@ -1740,11 +1745,21 @@ module Google
|
|
1740
1745
|
# @return [Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1EgressPolicy]
|
1741
1746
|
attr_accessor :egress_policy
|
1742
1747
|
|
1748
|
+
# Endpoints to forward traffic to.
|
1749
|
+
# Corresponds to the JSON property `external`
|
1750
|
+
# @return [Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal]
|
1751
|
+
attr_accessor :external
|
1752
|
+
|
1743
1753
|
# Network to forward traffic to.
|
1744
1754
|
# Corresponds to the JSON property `network`
|
1745
1755
|
# @return [Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamNetwork]
|
1746
1756
|
attr_accessor :network
|
1747
1757
|
|
1758
|
+
# The configuration for the proxy.
|
1759
|
+
# Corresponds to the JSON property `proxyProtocol`
|
1760
|
+
# @return [Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ProxyProtocolConfig]
|
1761
|
+
attr_accessor :proxy_protocol
|
1762
|
+
|
1748
1763
|
def initialize(**args)
|
1749
1764
|
update!(**args)
|
1750
1765
|
end
|
@@ -1752,7 +1767,28 @@ module Google
|
|
1752
1767
|
# Update properties of this object
|
1753
1768
|
def update!(**args)
|
1754
1769
|
@egress_policy = args[:egress_policy] if args.key?(:egress_policy)
|
1770
|
+
@external = args[:external] if args.key?(:external)
|
1755
1771
|
@network = args[:network] if args.key?(:network)
|
1772
|
+
@proxy_protocol = args[:proxy_protocol] if args.key?(:proxy_protocol)
|
1773
|
+
end
|
1774
|
+
end
|
1775
|
+
|
1776
|
+
# Endpoints to forward traffic to.
|
1777
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal
|
1778
|
+
include Google::Apis::Core::Hashable
|
1779
|
+
|
1780
|
+
# Required. List of the endpoints to forward traffic to.
|
1781
|
+
# Corresponds to the JSON property `endpoints`
|
1782
|
+
# @return [Array<Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1Endpoint>]
|
1783
|
+
attr_accessor :endpoints
|
1784
|
+
|
1785
|
+
def initialize(**args)
|
1786
|
+
update!(**args)
|
1787
|
+
end
|
1788
|
+
|
1789
|
+
# Update properties of this object
|
1790
|
+
def update!(**args)
|
1791
|
+
@endpoints = args[:endpoints] if args.key?(:endpoints)
|
1756
1792
|
end
|
1757
1793
|
end
|
1758
1794
|
|
@@ -1776,6 +1812,100 @@ module Google
|
|
1776
1812
|
end
|
1777
1813
|
end
|
1778
1814
|
|
1815
|
+
# Contextual headers configuration.
|
1816
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders
|
1817
|
+
include Google::Apis::Core::Hashable
|
1818
|
+
|
1819
|
+
# Delegated device info configuration.
|
1820
|
+
# Corresponds to the JSON property `deviceInfo`
|
1821
|
+
# @return [Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedDeviceInfo]
|
1822
|
+
attr_accessor :device_info
|
1823
|
+
|
1824
|
+
# Delegated group info configuration.
|
1825
|
+
# Corresponds to the JSON property `groupInfo`
|
1826
|
+
# @return [Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedGroupInfo]
|
1827
|
+
attr_accessor :group_info
|
1828
|
+
|
1829
|
+
# Optional. Default output type for all enabled headers.
|
1830
|
+
# Corresponds to the JSON property `outputType`
|
1831
|
+
# @return [String]
|
1832
|
+
attr_accessor :output_type
|
1833
|
+
|
1834
|
+
# Delegated user info configuration.
|
1835
|
+
# Corresponds to the JSON property `userInfo`
|
1836
|
+
# @return [Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedUserInfo]
|
1837
|
+
attr_accessor :user_info
|
1838
|
+
|
1839
|
+
def initialize(**args)
|
1840
|
+
update!(**args)
|
1841
|
+
end
|
1842
|
+
|
1843
|
+
# Update properties of this object
|
1844
|
+
def update!(**args)
|
1845
|
+
@device_info = args[:device_info] if args.key?(:device_info)
|
1846
|
+
@group_info = args[:group_info] if args.key?(:group_info)
|
1847
|
+
@output_type = args[:output_type] if args.key?(:output_type)
|
1848
|
+
@user_info = args[:user_info] if args.key?(:user_info)
|
1849
|
+
end
|
1850
|
+
end
|
1851
|
+
|
1852
|
+
# Delegated device info configuration.
|
1853
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedDeviceInfo
|
1854
|
+
include Google::Apis::Core::Hashable
|
1855
|
+
|
1856
|
+
# Optional. The output type of the delegated device info.
|
1857
|
+
# Corresponds to the JSON property `outputType`
|
1858
|
+
# @return [String]
|
1859
|
+
attr_accessor :output_type
|
1860
|
+
|
1861
|
+
def initialize(**args)
|
1862
|
+
update!(**args)
|
1863
|
+
end
|
1864
|
+
|
1865
|
+
# Update properties of this object
|
1866
|
+
def update!(**args)
|
1867
|
+
@output_type = args[:output_type] if args.key?(:output_type)
|
1868
|
+
end
|
1869
|
+
end
|
1870
|
+
|
1871
|
+
# Delegated group info configuration.
|
1872
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedGroupInfo
|
1873
|
+
include Google::Apis::Core::Hashable
|
1874
|
+
|
1875
|
+
# Optional. The output type of the delegated group info.
|
1876
|
+
# Corresponds to the JSON property `outputType`
|
1877
|
+
# @return [String]
|
1878
|
+
attr_accessor :output_type
|
1879
|
+
|
1880
|
+
def initialize(**args)
|
1881
|
+
update!(**args)
|
1882
|
+
end
|
1883
|
+
|
1884
|
+
# Update properties of this object
|
1885
|
+
def update!(**args)
|
1886
|
+
@output_type = args[:output_type] if args.key?(:output_type)
|
1887
|
+
end
|
1888
|
+
end
|
1889
|
+
|
1890
|
+
# Delegated user info configuration.
|
1891
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedUserInfo
|
1892
|
+
include Google::Apis::Core::Hashable
|
1893
|
+
|
1894
|
+
# Optional. The output type of the delegated user info.
|
1895
|
+
# Corresponds to the JSON property `outputType`
|
1896
|
+
# @return [String]
|
1897
|
+
attr_accessor :output_type
|
1898
|
+
|
1899
|
+
def initialize(**args)
|
1900
|
+
update!(**args)
|
1901
|
+
end
|
1902
|
+
|
1903
|
+
# Update properties of this object
|
1904
|
+
def update!(**args)
|
1905
|
+
@output_type = args[:output_type] if args.key?(:output_type)
|
1906
|
+
end
|
1907
|
+
end
|
1908
|
+
|
1779
1909
|
# Routing policy information.
|
1780
1910
|
class GoogleCloudBeyondcorpSecuritygatewaysV1EgressPolicy
|
1781
1911
|
include Google::Apis::Core::Hashable
|
@@ -1795,6 +1925,31 @@ module Google
|
|
1795
1925
|
end
|
1796
1926
|
end
|
1797
1927
|
|
1928
|
+
# Internet Gateway endpoint to forward traffic to.
|
1929
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1Endpoint
|
1930
|
+
include Google::Apis::Core::Hashable
|
1931
|
+
|
1932
|
+
# Required. Hostname of the endpoint.
|
1933
|
+
# Corresponds to the JSON property `hostname`
|
1934
|
+
# @return [String]
|
1935
|
+
attr_accessor :hostname
|
1936
|
+
|
1937
|
+
# Required. Port of the endpoint.
|
1938
|
+
# Corresponds to the JSON property `port`
|
1939
|
+
# @return [Fixnum]
|
1940
|
+
attr_accessor :port
|
1941
|
+
|
1942
|
+
def initialize(**args)
|
1943
|
+
update!(**args)
|
1944
|
+
end
|
1945
|
+
|
1946
|
+
# Update properties of this object
|
1947
|
+
def update!(**args)
|
1948
|
+
@hostname = args[:hostname] if args.key?(:hostname)
|
1949
|
+
@port = args[:port] if args.key?(:port)
|
1950
|
+
end
|
1951
|
+
end
|
1952
|
+
|
1798
1953
|
# EndpointMatcher contains the information of the endpoint that will match the
|
1799
1954
|
# application.
|
1800
1955
|
class GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher
|
@@ -1805,7 +1960,7 @@ module Google
|
|
1805
1960
|
# @return [String]
|
1806
1961
|
attr_accessor :hostname
|
1807
1962
|
|
1808
|
-
#
|
1963
|
+
# Required. Ports of the application.
|
1809
1964
|
# Corresponds to the JSON property `ports`
|
1810
1965
|
# @return [Array<Fixnum>]
|
1811
1966
|
attr_accessor :ports
|
@@ -1924,6 +2079,53 @@ module Google
|
|
1924
2079
|
end
|
1925
2080
|
end
|
1926
2081
|
|
2082
|
+
# The configuration for the proxy.
|
2083
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ProxyProtocolConfig
|
2084
|
+
include Google::Apis::Core::Hashable
|
2085
|
+
|
2086
|
+
# Optional. List of the allowed client header names.
|
2087
|
+
# Corresponds to the JSON property `allowedClientHeaders`
|
2088
|
+
# @return [Array<String>]
|
2089
|
+
attr_accessor :allowed_client_headers
|
2090
|
+
|
2091
|
+
# Optional. Client IP configuration. The client IP address is included if true.
|
2092
|
+
# Corresponds to the JSON property `clientIp`
|
2093
|
+
# @return [Boolean]
|
2094
|
+
attr_accessor :client_ip
|
2095
|
+
alias_method :client_ip?, :client_ip
|
2096
|
+
|
2097
|
+
# Contextual headers configuration.
|
2098
|
+
# Corresponds to the JSON property `contextualHeaders`
|
2099
|
+
# @return [Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders]
|
2100
|
+
attr_accessor :contextual_headers
|
2101
|
+
|
2102
|
+
# Optional. Gateway identity configuration.
|
2103
|
+
# Corresponds to the JSON property `gatewayIdentity`
|
2104
|
+
# @return [String]
|
2105
|
+
attr_accessor :gateway_identity
|
2106
|
+
|
2107
|
+
# Optional. Custom resource specific headers along with the values. The names
|
2108
|
+
# should conform to RFC 9110: > Field names SHOULD constrain themselves to
|
2109
|
+
# alphanumeric characters, "-", and ".", and SHOULD begin with a letter. Field
|
2110
|
+
# values SHOULD contain only ASCII printable characters and tab.
|
2111
|
+
# Corresponds to the JSON property `metadataHeaders`
|
2112
|
+
# @return [Hash<String,String>]
|
2113
|
+
attr_accessor :metadata_headers
|
2114
|
+
|
2115
|
+
def initialize(**args)
|
2116
|
+
update!(**args)
|
2117
|
+
end
|
2118
|
+
|
2119
|
+
# Update properties of this object
|
2120
|
+
def update!(**args)
|
2121
|
+
@allowed_client_headers = args[:allowed_client_headers] if args.key?(:allowed_client_headers)
|
2122
|
+
@client_ip = args[:client_ip] if args.key?(:client_ip)
|
2123
|
+
@contextual_headers = args[:contextual_headers] if args.key?(:contextual_headers)
|
2124
|
+
@gateway_identity = args[:gateway_identity] if args.key?(:gateway_identity)
|
2125
|
+
@metadata_headers = args[:metadata_headers] if args.key?(:metadata_headers)
|
2126
|
+
end
|
2127
|
+
end
|
2128
|
+
|
1927
2129
|
# The information about a security gateway resource.
|
1928
2130
|
class GoogleCloudBeyondcorpSecuritygatewaysV1SecurityGateway
|
1929
2131
|
include Google::Apis::Core::Hashable
|
@@ -1962,6 +2164,16 @@ module Google
|
|
1962
2164
|
# @return [String]
|
1963
2165
|
attr_accessor :name
|
1964
2166
|
|
2167
|
+
# The configuration for the proxy.
|
2168
|
+
# Corresponds to the JSON property `proxyProtocolConfig`
|
2169
|
+
# @return [Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ProxyProtocolConfig]
|
2170
|
+
attr_accessor :proxy_protocol_config
|
2171
|
+
|
2172
|
+
# Settings related to the Service Discovery.
|
2173
|
+
# Corresponds to the JSON property `serviceDiscovery`
|
2174
|
+
# @return [Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscovery]
|
2175
|
+
attr_accessor :service_discovery
|
2176
|
+
|
1965
2177
|
# Output only. The operational state of the SecurityGateway.
|
1966
2178
|
# Corresponds to the JSON property `state`
|
1967
2179
|
# @return [String]
|
@@ -1984,6 +2196,8 @@ module Google
|
|
1984
2196
|
@external_ips = args[:external_ips] if args.key?(:external_ips)
|
1985
2197
|
@hubs = args[:hubs] if args.key?(:hubs)
|
1986
2198
|
@name = args[:name] if args.key?(:name)
|
2199
|
+
@proxy_protocol_config = args[:proxy_protocol_config] if args.key?(:proxy_protocol_config)
|
2200
|
+
@service_discovery = args[:service_discovery] if args.key?(:service_discovery)
|
1987
2201
|
@state = args[:state] if args.key?(:state)
|
1988
2202
|
@update_time = args[:update_time] if args.key?(:update_time)
|
1989
2203
|
end
|
@@ -2048,6 +2262,63 @@ module Google
|
|
2048
2262
|
end
|
2049
2263
|
end
|
2050
2264
|
|
2265
|
+
# Settings related to the Service Discovery.
|
2266
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscovery
|
2267
|
+
include Google::Apis::Core::Hashable
|
2268
|
+
|
2269
|
+
# If Service Discovery is done through API, defines its settings.
|
2270
|
+
# Corresponds to the JSON property `apiGateway`
|
2271
|
+
# @return [Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscoveryApiGateway]
|
2272
|
+
attr_accessor :api_gateway
|
2273
|
+
|
2274
|
+
def initialize(**args)
|
2275
|
+
update!(**args)
|
2276
|
+
end
|
2277
|
+
|
2278
|
+
# Update properties of this object
|
2279
|
+
def update!(**args)
|
2280
|
+
@api_gateway = args[:api_gateway] if args.key?(:api_gateway)
|
2281
|
+
end
|
2282
|
+
end
|
2283
|
+
|
2284
|
+
# If Service Discovery is done through API, defines its settings.
|
2285
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscoveryApiGateway
|
2286
|
+
include Google::Apis::Core::Hashable
|
2287
|
+
|
2288
|
+
# API operation descriptor.
|
2289
|
+
# Corresponds to the JSON property `resourceOverride`
|
2290
|
+
# @return [Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscoveryApiGatewayOperationDescriptor]
|
2291
|
+
attr_accessor :resource_override
|
2292
|
+
|
2293
|
+
def initialize(**args)
|
2294
|
+
update!(**args)
|
2295
|
+
end
|
2296
|
+
|
2297
|
+
# Update properties of this object
|
2298
|
+
def update!(**args)
|
2299
|
+
@resource_override = args[:resource_override] if args.key?(:resource_override)
|
2300
|
+
end
|
2301
|
+
end
|
2302
|
+
|
2303
|
+
# API operation descriptor.
|
2304
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscoveryApiGatewayOperationDescriptor
|
2305
|
+
include Google::Apis::Core::Hashable
|
2306
|
+
|
2307
|
+
# Required. Contains uri path fragment where HTTP request is sent.
|
2308
|
+
# Corresponds to the JSON property `path`
|
2309
|
+
# @return [String]
|
2310
|
+
attr_accessor :path
|
2311
|
+
|
2312
|
+
def initialize(**args)
|
2313
|
+
update!(**args)
|
2314
|
+
end
|
2315
|
+
|
2316
|
+
# Update properties of this object
|
2317
|
+
def update!(**args)
|
2318
|
+
@path = args[:path] if args.key?(:path)
|
2319
|
+
end
|
2320
|
+
end
|
2321
|
+
|
2051
2322
|
# Represents the metadata of the long-running operation.
|
2052
2323
|
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaSecurityGatewayOperationMetadata
|
2053
2324
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module BeyondcorpV1
|
18
18
|
# Version of the google-apis-beyondcorp_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.43.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250922"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -274,18 +274,54 @@ module Google
|
|
274
274
|
include Google::Apis::Core::JsonObjectSupport
|
275
275
|
end
|
276
276
|
|
277
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
|
+
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
281
|
+
end
|
282
|
+
|
277
283
|
class GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamNetwork
|
278
284
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
285
|
|
280
286
|
include Google::Apis::Core::JsonObjectSupport
|
281
287
|
end
|
282
288
|
|
289
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
|
+
|
292
|
+
include Google::Apis::Core::JsonObjectSupport
|
293
|
+
end
|
294
|
+
|
295
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedDeviceInfo
|
296
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
|
+
|
298
|
+
include Google::Apis::Core::JsonObjectSupport
|
299
|
+
end
|
300
|
+
|
301
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedGroupInfo
|
302
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
|
+
|
304
|
+
include Google::Apis::Core::JsonObjectSupport
|
305
|
+
end
|
306
|
+
|
307
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedUserInfo
|
308
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
|
+
|
310
|
+
include Google::Apis::Core::JsonObjectSupport
|
311
|
+
end
|
312
|
+
|
283
313
|
class GoogleCloudBeyondcorpSecuritygatewaysV1EgressPolicy
|
284
314
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
315
|
|
286
316
|
include Google::Apis::Core::JsonObjectSupport
|
287
317
|
end
|
288
318
|
|
319
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1Endpoint
|
320
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
|
+
|
322
|
+
include Google::Apis::Core::JsonObjectSupport
|
323
|
+
end
|
324
|
+
|
289
325
|
class GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher
|
290
326
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
327
|
|
@@ -316,6 +352,12 @@ module Google
|
|
316
352
|
include Google::Apis::Core::JsonObjectSupport
|
317
353
|
end
|
318
354
|
|
355
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ProxyProtocolConfig
|
356
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
357
|
+
|
358
|
+
include Google::Apis::Core::JsonObjectSupport
|
359
|
+
end
|
360
|
+
|
319
361
|
class GoogleCloudBeyondcorpSecuritygatewaysV1SecurityGateway
|
320
362
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
363
|
|
@@ -328,6 +370,24 @@ module Google
|
|
328
370
|
include Google::Apis::Core::JsonObjectSupport
|
329
371
|
end
|
330
372
|
|
373
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscovery
|
374
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
|
+
|
376
|
+
include Google::Apis::Core::JsonObjectSupport
|
377
|
+
end
|
378
|
+
|
379
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscoveryApiGateway
|
380
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
381
|
+
|
382
|
+
include Google::Apis::Core::JsonObjectSupport
|
383
|
+
end
|
384
|
+
|
385
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscoveryApiGatewayOperationDescriptor
|
386
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
387
|
+
|
388
|
+
include Google::Apis::Core::JsonObjectSupport
|
389
|
+
end
|
390
|
+
|
331
391
|
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaSecurityGatewayOperationMetadata
|
332
392
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
393
|
|
@@ -870,6 +930,7 @@ module Google
|
|
870
930
|
collection :endpoint_matchers, as: 'endpointMatchers', class: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher, decorator: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher::Representation
|
871
931
|
|
872
932
|
property :name, as: 'name'
|
933
|
+
property :schema, as: 'schema'
|
873
934
|
property :update_time, as: 'updateTime'
|
874
935
|
collection :upstreams, as: 'upstreams', class: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream, decorator: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream::Representation
|
875
936
|
|
@@ -881,8 +942,20 @@ module Google
|
|
881
942
|
class Representation < Google::Apis::Core::JsonRepresentation
|
882
943
|
property :egress_policy, as: 'egressPolicy', class: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1EgressPolicy, decorator: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1EgressPolicy::Representation
|
883
944
|
|
945
|
+
property :external, as: 'external', class: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal, decorator: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal::Representation
|
946
|
+
|
884
947
|
property :network, as: 'network', class: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamNetwork, decorator: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamNetwork::Representation
|
885
948
|
|
949
|
+
property :proxy_protocol, as: 'proxyProtocol', class: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ProxyProtocolConfig, decorator: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ProxyProtocolConfig::Representation
|
950
|
+
|
951
|
+
end
|
952
|
+
end
|
953
|
+
|
954
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal
|
955
|
+
# @private
|
956
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
957
|
+
collection :endpoints, as: 'endpoints', class: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1Endpoint, decorator: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1Endpoint::Representation
|
958
|
+
|
886
959
|
end
|
887
960
|
end
|
888
961
|
|
@@ -893,6 +966,40 @@ module Google
|
|
893
966
|
end
|
894
967
|
end
|
895
968
|
|
969
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders
|
970
|
+
# @private
|
971
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
972
|
+
property :device_info, as: 'deviceInfo', class: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedDeviceInfo, decorator: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedDeviceInfo::Representation
|
973
|
+
|
974
|
+
property :group_info, as: 'groupInfo', class: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedGroupInfo, decorator: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedGroupInfo::Representation
|
975
|
+
|
976
|
+
property :output_type, as: 'outputType'
|
977
|
+
property :user_info, as: 'userInfo', class: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedUserInfo, decorator: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedUserInfo::Representation
|
978
|
+
|
979
|
+
end
|
980
|
+
end
|
981
|
+
|
982
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedDeviceInfo
|
983
|
+
# @private
|
984
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
985
|
+
property :output_type, as: 'outputType'
|
986
|
+
end
|
987
|
+
end
|
988
|
+
|
989
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedGroupInfo
|
990
|
+
# @private
|
991
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
992
|
+
property :output_type, as: 'outputType'
|
993
|
+
end
|
994
|
+
end
|
995
|
+
|
996
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedUserInfo
|
997
|
+
# @private
|
998
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
999
|
+
property :output_type, as: 'outputType'
|
1000
|
+
end
|
1001
|
+
end
|
1002
|
+
|
896
1003
|
class GoogleCloudBeyondcorpSecuritygatewaysV1EgressPolicy
|
897
1004
|
# @private
|
898
1005
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -900,6 +1007,14 @@ module Google
|
|
900
1007
|
end
|
901
1008
|
end
|
902
1009
|
|
1010
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1Endpoint
|
1011
|
+
# @private
|
1012
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1013
|
+
property :hostname, as: 'hostname'
|
1014
|
+
property :port, as: 'port'
|
1015
|
+
end
|
1016
|
+
end
|
1017
|
+
|
903
1018
|
class GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher
|
904
1019
|
# @private
|
905
1020
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -943,6 +1058,18 @@ module Google
|
|
943
1058
|
end
|
944
1059
|
end
|
945
1060
|
|
1061
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ProxyProtocolConfig
|
1062
|
+
# @private
|
1063
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1064
|
+
collection :allowed_client_headers, as: 'allowedClientHeaders'
|
1065
|
+
property :client_ip, as: 'clientIp'
|
1066
|
+
property :contextual_headers, as: 'contextualHeaders', class: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders, decorator: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders::Representation
|
1067
|
+
|
1068
|
+
property :gateway_identity, as: 'gatewayIdentity'
|
1069
|
+
hash :metadata_headers, as: 'metadataHeaders'
|
1070
|
+
end
|
1071
|
+
end
|
1072
|
+
|
946
1073
|
class GoogleCloudBeyondcorpSecuritygatewaysV1SecurityGateway
|
947
1074
|
# @private
|
948
1075
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -953,6 +1080,10 @@ module Google
|
|
953
1080
|
hash :hubs, as: 'hubs', class: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1Hub, decorator: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1Hub::Representation
|
954
1081
|
|
955
1082
|
property :name, as: 'name'
|
1083
|
+
property :proxy_protocol_config, as: 'proxyProtocolConfig', class: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ProxyProtocolConfig, decorator: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ProxyProtocolConfig::Representation
|
1084
|
+
|
1085
|
+
property :service_discovery, as: 'serviceDiscovery', class: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscovery, decorator: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscovery::Representation
|
1086
|
+
|
956
1087
|
property :state, as: 'state'
|
957
1088
|
property :update_time, as: 'updateTime'
|
958
1089
|
end
|
@@ -971,6 +1102,29 @@ module Google
|
|
971
1102
|
end
|
972
1103
|
end
|
973
1104
|
|
1105
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscovery
|
1106
|
+
# @private
|
1107
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1108
|
+
property :api_gateway, as: 'apiGateway', class: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscoveryApiGateway, decorator: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscoveryApiGateway::Representation
|
1109
|
+
|
1110
|
+
end
|
1111
|
+
end
|
1112
|
+
|
1113
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscoveryApiGateway
|
1114
|
+
# @private
|
1115
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1116
|
+
property :resource_override, as: 'resourceOverride', class: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscoveryApiGatewayOperationDescriptor, decorator: Google::Apis::BeyondcorpV1::GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscoveryApiGatewayOperationDescriptor::Representation
|
1117
|
+
|
1118
|
+
end
|
1119
|
+
end
|
1120
|
+
|
1121
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscoveryApiGatewayOperationDescriptor
|
1122
|
+
# @private
|
1123
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1124
|
+
property :path, as: 'path'
|
1125
|
+
end
|
1126
|
+
end
|
1127
|
+
|
974
1128
|
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaSecurityGatewayOperationMetadata
|
975
1129
|
# @private
|
976
1130
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-beyondcorp_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.43.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-beyondcorp_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-beyondcorp_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-beyondcorp_v1/v0.43.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-beyondcorp_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|