google-apis-beyondcorp_v1alpha 0.53.0 → 0.55.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/beyondcorp_v1alpha/classes.rb +276 -5
- data/lib/google/apis/beyondcorp_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/beyondcorp_v1alpha/representations.rb +154 -0
- data/lib/google/apis/beyondcorp_v1alpha/service.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c1cced4be2305e76ee074bf8556b5496cd56786b964d3377f4034d11a6575f0a
|
4
|
+
data.tar.gz: 72aa8d2f0ded039fda2a924752eb6c40343f2e52eab8ad71c21d647f2d92035d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7a14e27004765eb3361504e4105b56ae2d87c4fc6358b4591e4541191bc524e978a9fefdd6fba4023c24a0a29729dfcd20573f59d61a87fd3624e0b123e9123c
|
7
|
+
data.tar.gz: ade0ede150e6dcadd7bdceda6386d00e2a0e5bf1a5668ac04ce84087faca2af618db2dbf194c41d194ef09d1bb2cce40cf6e69dac4140e8163eca3ef0712403d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-beyondcorp_v1alpha
|
2
2
|
|
3
|
+
### v0.55.0 (2025-09-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250922
|
6
|
+
|
7
|
+
### v0.54.0 (2025-09-21)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250910
|
10
|
+
|
3
11
|
### v0.53.0 (2025-08-31)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250818
|
@@ -2681,10 +2681,9 @@ module Google
|
|
2681
2681
|
# hostname and ports as endpoint matchers is used to match the application.
|
2682
2682
|
# Match conditions for OR logic. An array of match conditions to allow for
|
2683
2683
|
# multiple matching criteria. The rule is considered a match if one of the
|
2684
|
-
# conditions is met. The conditions
|
2685
|
-
# Hostname
|
2686
|
-
# example.com"
|
2687
|
-
# and "22,33") etc
|
2684
|
+
# conditions is met. The conditions should be the following combination: (
|
2685
|
+
# Hostname & Ports) EXAMPLES: Hostname and Ports - ("*.example.com", "443"), ("
|
2686
|
+
# example.com" and "22"), ("example.com" and "22,33") etc
|
2688
2687
|
# Corresponds to the JSON property `endpointMatchers`
|
2689
2688
|
# @return [Array<Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaEndpointMatcher>]
|
2690
2689
|
attr_accessor :endpoint_matchers
|
@@ -2694,6 +2693,11 @@ module Google
|
|
2694
2693
|
# @return [String]
|
2695
2694
|
attr_accessor :name
|
2696
2695
|
|
2696
|
+
# Optional. Type of the external application.
|
2697
|
+
# Corresponds to the JSON property `schema`
|
2698
|
+
# @return [String]
|
2699
|
+
attr_accessor :schema
|
2700
|
+
|
2697
2701
|
# Output only. Timestamp when the resource was last modified.
|
2698
2702
|
# Corresponds to the JSON property `updateTime`
|
2699
2703
|
# @return [String]
|
@@ -2714,6 +2718,7 @@ module Google
|
|
2714
2718
|
@display_name = args[:display_name] if args.key?(:display_name)
|
2715
2719
|
@endpoint_matchers = args[:endpoint_matchers] if args.key?(:endpoint_matchers)
|
2716
2720
|
@name = args[:name] if args.key?(:name)
|
2721
|
+
@schema = args[:schema] if args.key?(:schema)
|
2717
2722
|
@update_time = args[:update_time] if args.key?(:update_time)
|
2718
2723
|
@upstreams = args[:upstreams] if args.key?(:upstreams)
|
2719
2724
|
end
|
@@ -2728,11 +2733,21 @@ module Google
|
|
2728
2733
|
# @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaEgressPolicy]
|
2729
2734
|
attr_accessor :egress_policy
|
2730
2735
|
|
2736
|
+
# Endpoints to forward traffic to.
|
2737
|
+
# Corresponds to the JSON property `external`
|
2738
|
+
# @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstreamExternal]
|
2739
|
+
attr_accessor :external
|
2740
|
+
|
2731
2741
|
# Network to forward traffic to.
|
2732
2742
|
# Corresponds to the JSON property `network`
|
2733
2743
|
# @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstreamNetwork]
|
2734
2744
|
attr_accessor :network
|
2735
2745
|
|
2746
|
+
# The configuration for the proxy.
|
2747
|
+
# Corresponds to the JSON property `proxyProtocol`
|
2748
|
+
# @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaProxyProtocolConfig]
|
2749
|
+
attr_accessor :proxy_protocol
|
2750
|
+
|
2736
2751
|
def initialize(**args)
|
2737
2752
|
update!(**args)
|
2738
2753
|
end
|
@@ -2740,7 +2755,28 @@ module Google
|
|
2740
2755
|
# Update properties of this object
|
2741
2756
|
def update!(**args)
|
2742
2757
|
@egress_policy = args[:egress_policy] if args.key?(:egress_policy)
|
2758
|
+
@external = args[:external] if args.key?(:external)
|
2743
2759
|
@network = args[:network] if args.key?(:network)
|
2760
|
+
@proxy_protocol = args[:proxy_protocol] if args.key?(:proxy_protocol)
|
2761
|
+
end
|
2762
|
+
end
|
2763
|
+
|
2764
|
+
# Endpoints to forward traffic to.
|
2765
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstreamExternal
|
2766
|
+
include Google::Apis::Core::Hashable
|
2767
|
+
|
2768
|
+
# Required. List of the endpoints to forward traffic to.
|
2769
|
+
# Corresponds to the JSON property `endpoints`
|
2770
|
+
# @return [Array<Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaEndpoint>]
|
2771
|
+
attr_accessor :endpoints
|
2772
|
+
|
2773
|
+
def initialize(**args)
|
2774
|
+
update!(**args)
|
2775
|
+
end
|
2776
|
+
|
2777
|
+
# Update properties of this object
|
2778
|
+
def update!(**args)
|
2779
|
+
@endpoints = args[:endpoints] if args.key?(:endpoints)
|
2744
2780
|
end
|
2745
2781
|
end
|
2746
2782
|
|
@@ -2764,6 +2800,100 @@ module Google
|
|
2764
2800
|
end
|
2765
2801
|
end
|
2766
2802
|
|
2803
|
+
# Contextual headers configuration.
|
2804
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeaders
|
2805
|
+
include Google::Apis::Core::Hashable
|
2806
|
+
|
2807
|
+
# Delegated device info configuration.
|
2808
|
+
# Corresponds to the JSON property `deviceInfo`
|
2809
|
+
# @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedDeviceInfo]
|
2810
|
+
attr_accessor :device_info
|
2811
|
+
|
2812
|
+
# Delegated group info configuration.
|
2813
|
+
# Corresponds to the JSON property `groupInfo`
|
2814
|
+
# @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedGroupInfo]
|
2815
|
+
attr_accessor :group_info
|
2816
|
+
|
2817
|
+
# Optional. Default output type for all enabled headers.
|
2818
|
+
# Corresponds to the JSON property `outputType`
|
2819
|
+
# @return [String]
|
2820
|
+
attr_accessor :output_type
|
2821
|
+
|
2822
|
+
# Delegated user info configuration.
|
2823
|
+
# Corresponds to the JSON property `userInfo`
|
2824
|
+
# @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedUserInfo]
|
2825
|
+
attr_accessor :user_info
|
2826
|
+
|
2827
|
+
def initialize(**args)
|
2828
|
+
update!(**args)
|
2829
|
+
end
|
2830
|
+
|
2831
|
+
# Update properties of this object
|
2832
|
+
def update!(**args)
|
2833
|
+
@device_info = args[:device_info] if args.key?(:device_info)
|
2834
|
+
@group_info = args[:group_info] if args.key?(:group_info)
|
2835
|
+
@output_type = args[:output_type] if args.key?(:output_type)
|
2836
|
+
@user_info = args[:user_info] if args.key?(:user_info)
|
2837
|
+
end
|
2838
|
+
end
|
2839
|
+
|
2840
|
+
# Delegated device info configuration.
|
2841
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedDeviceInfo
|
2842
|
+
include Google::Apis::Core::Hashable
|
2843
|
+
|
2844
|
+
# Optional. The output type of the delegated device info.
|
2845
|
+
# Corresponds to the JSON property `outputType`
|
2846
|
+
# @return [String]
|
2847
|
+
attr_accessor :output_type
|
2848
|
+
|
2849
|
+
def initialize(**args)
|
2850
|
+
update!(**args)
|
2851
|
+
end
|
2852
|
+
|
2853
|
+
# Update properties of this object
|
2854
|
+
def update!(**args)
|
2855
|
+
@output_type = args[:output_type] if args.key?(:output_type)
|
2856
|
+
end
|
2857
|
+
end
|
2858
|
+
|
2859
|
+
# Delegated group info configuration.
|
2860
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedGroupInfo
|
2861
|
+
include Google::Apis::Core::Hashable
|
2862
|
+
|
2863
|
+
# Optional. The output type of the delegated group info.
|
2864
|
+
# Corresponds to the JSON property `outputType`
|
2865
|
+
# @return [String]
|
2866
|
+
attr_accessor :output_type
|
2867
|
+
|
2868
|
+
def initialize(**args)
|
2869
|
+
update!(**args)
|
2870
|
+
end
|
2871
|
+
|
2872
|
+
# Update properties of this object
|
2873
|
+
def update!(**args)
|
2874
|
+
@output_type = args[:output_type] if args.key?(:output_type)
|
2875
|
+
end
|
2876
|
+
end
|
2877
|
+
|
2878
|
+
# Delegated user info configuration.
|
2879
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedUserInfo
|
2880
|
+
include Google::Apis::Core::Hashable
|
2881
|
+
|
2882
|
+
# Optional. The output type of the delegated user info.
|
2883
|
+
# Corresponds to the JSON property `outputType`
|
2884
|
+
# @return [String]
|
2885
|
+
attr_accessor :output_type
|
2886
|
+
|
2887
|
+
def initialize(**args)
|
2888
|
+
update!(**args)
|
2889
|
+
end
|
2890
|
+
|
2891
|
+
# Update properties of this object
|
2892
|
+
def update!(**args)
|
2893
|
+
@output_type = args[:output_type] if args.key?(:output_type)
|
2894
|
+
end
|
2895
|
+
end
|
2896
|
+
|
2767
2897
|
# Routing policy information.
|
2768
2898
|
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaEgressPolicy
|
2769
2899
|
include Google::Apis::Core::Hashable
|
@@ -2783,6 +2913,31 @@ module Google
|
|
2783
2913
|
end
|
2784
2914
|
end
|
2785
2915
|
|
2916
|
+
# Internet Gateway endpoint to forward traffic to.
|
2917
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaEndpoint
|
2918
|
+
include Google::Apis::Core::Hashable
|
2919
|
+
|
2920
|
+
# Required. Hostname of the endpoint.
|
2921
|
+
# Corresponds to the JSON property `hostname`
|
2922
|
+
# @return [String]
|
2923
|
+
attr_accessor :hostname
|
2924
|
+
|
2925
|
+
# Required. Port of the endpoint.
|
2926
|
+
# Corresponds to the JSON property `port`
|
2927
|
+
# @return [Fixnum]
|
2928
|
+
attr_accessor :port
|
2929
|
+
|
2930
|
+
def initialize(**args)
|
2931
|
+
update!(**args)
|
2932
|
+
end
|
2933
|
+
|
2934
|
+
# Update properties of this object
|
2935
|
+
def update!(**args)
|
2936
|
+
@hostname = args[:hostname] if args.key?(:hostname)
|
2937
|
+
@port = args[:port] if args.key?(:port)
|
2938
|
+
end
|
2939
|
+
end
|
2940
|
+
|
2786
2941
|
# EndpointMatcher contains the information of the endpoint that will match the
|
2787
2942
|
# application.
|
2788
2943
|
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaEndpointMatcher
|
@@ -2793,7 +2948,7 @@ module Google
|
|
2793
2948
|
# @return [String]
|
2794
2949
|
attr_accessor :hostname
|
2795
2950
|
|
2796
|
-
#
|
2951
|
+
# Required. Ports of the application.
|
2797
2952
|
# Corresponds to the JSON property `ports`
|
2798
2953
|
# @return [Array<Fixnum>]
|
2799
2954
|
attr_accessor :ports
|
@@ -2912,6 +3067,53 @@ module Google
|
|
2912
3067
|
end
|
2913
3068
|
end
|
2914
3069
|
|
3070
|
+
# The configuration for the proxy.
|
3071
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaProxyProtocolConfig
|
3072
|
+
include Google::Apis::Core::Hashable
|
3073
|
+
|
3074
|
+
# Optional. List of the allowed client header names.
|
3075
|
+
# Corresponds to the JSON property `allowedClientHeaders`
|
3076
|
+
# @return [Array<String>]
|
3077
|
+
attr_accessor :allowed_client_headers
|
3078
|
+
|
3079
|
+
# Optional. Client IP configuration. The client IP address is included if true.
|
3080
|
+
# Corresponds to the JSON property `clientIp`
|
3081
|
+
# @return [Boolean]
|
3082
|
+
attr_accessor :client_ip
|
3083
|
+
alias_method :client_ip?, :client_ip
|
3084
|
+
|
3085
|
+
# Contextual headers configuration.
|
3086
|
+
# Corresponds to the JSON property `contextualHeaders`
|
3087
|
+
# @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeaders]
|
3088
|
+
attr_accessor :contextual_headers
|
3089
|
+
|
3090
|
+
# Optional. Gateway identity configuration.
|
3091
|
+
# Corresponds to the JSON property `gatewayIdentity`
|
3092
|
+
# @return [String]
|
3093
|
+
attr_accessor :gateway_identity
|
3094
|
+
|
3095
|
+
# Optional. Custom resource specific headers along with the values. The names
|
3096
|
+
# should conform to RFC 9110: > Field names SHOULD constrain themselves to
|
3097
|
+
# alphanumeric characters, "-", and ".", and SHOULD begin with a letter. Field
|
3098
|
+
# values SHOULD contain only ASCII printable characters and tab.
|
3099
|
+
# Corresponds to the JSON property `metadataHeaders`
|
3100
|
+
# @return [Hash<String,String>]
|
3101
|
+
attr_accessor :metadata_headers
|
3102
|
+
|
3103
|
+
def initialize(**args)
|
3104
|
+
update!(**args)
|
3105
|
+
end
|
3106
|
+
|
3107
|
+
# Update properties of this object
|
3108
|
+
def update!(**args)
|
3109
|
+
@allowed_client_headers = args[:allowed_client_headers] if args.key?(:allowed_client_headers)
|
3110
|
+
@client_ip = args[:client_ip] if args.key?(:client_ip)
|
3111
|
+
@contextual_headers = args[:contextual_headers] if args.key?(:contextual_headers)
|
3112
|
+
@gateway_identity = args[:gateway_identity] if args.key?(:gateway_identity)
|
3113
|
+
@metadata_headers = args[:metadata_headers] if args.key?(:metadata_headers)
|
3114
|
+
end
|
3115
|
+
end
|
3116
|
+
|
2915
3117
|
# The information about a security gateway resource.
|
2916
3118
|
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaSecurityGateway
|
2917
3119
|
include Google::Apis::Core::Hashable
|
@@ -2950,6 +3152,16 @@ module Google
|
|
2950
3152
|
# @return [String]
|
2951
3153
|
attr_accessor :name
|
2952
3154
|
|
3155
|
+
# The configuration for the proxy.
|
3156
|
+
# Corresponds to the JSON property `proxyProtocolConfig`
|
3157
|
+
# @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaProxyProtocolConfig]
|
3158
|
+
attr_accessor :proxy_protocol_config
|
3159
|
+
|
3160
|
+
# Settings related to the Service Discovery.
|
3161
|
+
# Corresponds to the JSON property `serviceDiscovery`
|
3162
|
+
# @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaServiceDiscovery]
|
3163
|
+
attr_accessor :service_discovery
|
3164
|
+
|
2953
3165
|
# Output only. The operational state of the SecurityGateway.
|
2954
3166
|
# Corresponds to the JSON property `state`
|
2955
3167
|
# @return [String]
|
@@ -2972,6 +3184,8 @@ module Google
|
|
2972
3184
|
@external_ips = args[:external_ips] if args.key?(:external_ips)
|
2973
3185
|
@hubs = args[:hubs] if args.key?(:hubs)
|
2974
3186
|
@name = args[:name] if args.key?(:name)
|
3187
|
+
@proxy_protocol_config = args[:proxy_protocol_config] if args.key?(:proxy_protocol_config)
|
3188
|
+
@service_discovery = args[:service_discovery] if args.key?(:service_discovery)
|
2975
3189
|
@state = args[:state] if args.key?(:state)
|
2976
3190
|
@update_time = args[:update_time] if args.key?(:update_time)
|
2977
3191
|
end
|
@@ -3036,6 +3250,63 @@ module Google
|
|
3036
3250
|
end
|
3037
3251
|
end
|
3038
3252
|
|
3253
|
+
# Settings related to the Service Discovery.
|
3254
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaServiceDiscovery
|
3255
|
+
include Google::Apis::Core::Hashable
|
3256
|
+
|
3257
|
+
# If Service Discovery is done through API, defines its settings.
|
3258
|
+
# Corresponds to the JSON property `apiGateway`
|
3259
|
+
# @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaServiceDiscoveryApiGateway]
|
3260
|
+
attr_accessor :api_gateway
|
3261
|
+
|
3262
|
+
def initialize(**args)
|
3263
|
+
update!(**args)
|
3264
|
+
end
|
3265
|
+
|
3266
|
+
# Update properties of this object
|
3267
|
+
def update!(**args)
|
3268
|
+
@api_gateway = args[:api_gateway] if args.key?(:api_gateway)
|
3269
|
+
end
|
3270
|
+
end
|
3271
|
+
|
3272
|
+
# If Service Discovery is done through API, defines its settings.
|
3273
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaServiceDiscoveryApiGateway
|
3274
|
+
include Google::Apis::Core::Hashable
|
3275
|
+
|
3276
|
+
# API operation descriptor.
|
3277
|
+
# Corresponds to the JSON property `resourceOverride`
|
3278
|
+
# @return [Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaServiceDiscoveryApiGatewayOperationDescriptor]
|
3279
|
+
attr_accessor :resource_override
|
3280
|
+
|
3281
|
+
def initialize(**args)
|
3282
|
+
update!(**args)
|
3283
|
+
end
|
3284
|
+
|
3285
|
+
# Update properties of this object
|
3286
|
+
def update!(**args)
|
3287
|
+
@resource_override = args[:resource_override] if args.key?(:resource_override)
|
3288
|
+
end
|
3289
|
+
end
|
3290
|
+
|
3291
|
+
# API operation descriptor.
|
3292
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaServiceDiscoveryApiGatewayOperationDescriptor
|
3293
|
+
include Google::Apis::Core::Hashable
|
3294
|
+
|
3295
|
+
# Required. Contains uri path fragment where HTTP request is sent.
|
3296
|
+
# Corresponds to the JSON property `path`
|
3297
|
+
# @return [String]
|
3298
|
+
attr_accessor :path
|
3299
|
+
|
3300
|
+
def initialize(**args)
|
3301
|
+
update!(**args)
|
3302
|
+
end
|
3303
|
+
|
3304
|
+
# Update properties of this object
|
3305
|
+
def update!(**args)
|
3306
|
+
@path = args[:path] if args.key?(:path)
|
3307
|
+
end
|
3308
|
+
end
|
3309
|
+
|
3039
3310
|
# The response message for Locations.ListLocations.
|
3040
3311
|
class GoogleCloudLocationListLocationsResponse
|
3041
3312
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module BeyondcorpV1alpha
|
18
18
|
# Version of the google-apis-beyondcorp_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.55.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
|
@@ -418,18 +418,54 @@ module Google
|
|
418
418
|
include Google::Apis::Core::JsonObjectSupport
|
419
419
|
end
|
420
420
|
|
421
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstreamExternal
|
422
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
|
+
|
424
|
+
include Google::Apis::Core::JsonObjectSupport
|
425
|
+
end
|
426
|
+
|
421
427
|
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstreamNetwork
|
422
428
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
429
|
|
424
430
|
include Google::Apis::Core::JsonObjectSupport
|
425
431
|
end
|
426
432
|
|
433
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeaders
|
434
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
435
|
+
|
436
|
+
include Google::Apis::Core::JsonObjectSupport
|
437
|
+
end
|
438
|
+
|
439
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedDeviceInfo
|
440
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
441
|
+
|
442
|
+
include Google::Apis::Core::JsonObjectSupport
|
443
|
+
end
|
444
|
+
|
445
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedGroupInfo
|
446
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
447
|
+
|
448
|
+
include Google::Apis::Core::JsonObjectSupport
|
449
|
+
end
|
450
|
+
|
451
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedUserInfo
|
452
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
453
|
+
|
454
|
+
include Google::Apis::Core::JsonObjectSupport
|
455
|
+
end
|
456
|
+
|
427
457
|
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaEgressPolicy
|
428
458
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
429
459
|
|
430
460
|
include Google::Apis::Core::JsonObjectSupport
|
431
461
|
end
|
432
462
|
|
463
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaEndpoint
|
464
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
|
+
|
466
|
+
include Google::Apis::Core::JsonObjectSupport
|
467
|
+
end
|
468
|
+
|
433
469
|
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaEndpointMatcher
|
434
470
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
435
471
|
|
@@ -460,6 +496,12 @@ module Google
|
|
460
496
|
include Google::Apis::Core::JsonObjectSupport
|
461
497
|
end
|
462
498
|
|
499
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaProxyProtocolConfig
|
500
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
501
|
+
|
502
|
+
include Google::Apis::Core::JsonObjectSupport
|
503
|
+
end
|
504
|
+
|
463
505
|
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaSecurityGateway
|
464
506
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
507
|
|
@@ -472,6 +514,24 @@ module Google
|
|
472
514
|
include Google::Apis::Core::JsonObjectSupport
|
473
515
|
end
|
474
516
|
|
517
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaServiceDiscovery
|
518
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
519
|
+
|
520
|
+
include Google::Apis::Core::JsonObjectSupport
|
521
|
+
end
|
522
|
+
|
523
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaServiceDiscoveryApiGateway
|
524
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
525
|
+
|
526
|
+
include Google::Apis::Core::JsonObjectSupport
|
527
|
+
end
|
528
|
+
|
529
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaServiceDiscoveryApiGatewayOperationDescriptor
|
530
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
531
|
+
|
532
|
+
include Google::Apis::Core::JsonObjectSupport
|
533
|
+
end
|
534
|
+
|
475
535
|
class GoogleCloudLocationListLocationsResponse
|
476
536
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
477
537
|
|
@@ -1339,6 +1399,7 @@ module Google
|
|
1339
1399
|
collection :endpoint_matchers, as: 'endpointMatchers', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaEndpointMatcher, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaEndpointMatcher::Representation
|
1340
1400
|
|
1341
1401
|
property :name, as: 'name'
|
1402
|
+
property :schema, as: 'schema'
|
1342
1403
|
property :update_time, as: 'updateTime'
|
1343
1404
|
collection :upstreams, as: 'upstreams', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstream, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstream::Representation
|
1344
1405
|
|
@@ -1350,8 +1411,20 @@ module Google
|
|
1350
1411
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1351
1412
|
property :egress_policy, as: 'egressPolicy', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaEgressPolicy, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaEgressPolicy::Representation
|
1352
1413
|
|
1414
|
+
property :external, as: 'external', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstreamExternal, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstreamExternal::Representation
|
1415
|
+
|
1353
1416
|
property :network, as: 'network', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstreamNetwork, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstreamNetwork::Representation
|
1354
1417
|
|
1418
|
+
property :proxy_protocol, as: 'proxyProtocol', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaProxyProtocolConfig, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaProxyProtocolConfig::Representation
|
1419
|
+
|
1420
|
+
end
|
1421
|
+
end
|
1422
|
+
|
1423
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaApplicationUpstreamExternal
|
1424
|
+
# @private
|
1425
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1426
|
+
collection :endpoints, as: 'endpoints', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaEndpoint, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaEndpoint::Representation
|
1427
|
+
|
1355
1428
|
end
|
1356
1429
|
end
|
1357
1430
|
|
@@ -1362,6 +1435,40 @@ module Google
|
|
1362
1435
|
end
|
1363
1436
|
end
|
1364
1437
|
|
1438
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeaders
|
1439
|
+
# @private
|
1440
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1441
|
+
property :device_info, as: 'deviceInfo', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedDeviceInfo, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedDeviceInfo::Representation
|
1442
|
+
|
1443
|
+
property :group_info, as: 'groupInfo', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedGroupInfo, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedGroupInfo::Representation
|
1444
|
+
|
1445
|
+
property :output_type, as: 'outputType'
|
1446
|
+
property :user_info, as: 'userInfo', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedUserInfo, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedUserInfo::Representation
|
1447
|
+
|
1448
|
+
end
|
1449
|
+
end
|
1450
|
+
|
1451
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedDeviceInfo
|
1452
|
+
# @private
|
1453
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1454
|
+
property :output_type, as: 'outputType'
|
1455
|
+
end
|
1456
|
+
end
|
1457
|
+
|
1458
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedGroupInfo
|
1459
|
+
# @private
|
1460
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1461
|
+
property :output_type, as: 'outputType'
|
1462
|
+
end
|
1463
|
+
end
|
1464
|
+
|
1465
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeadersDelegatedUserInfo
|
1466
|
+
# @private
|
1467
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1468
|
+
property :output_type, as: 'outputType'
|
1469
|
+
end
|
1470
|
+
end
|
1471
|
+
|
1365
1472
|
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaEgressPolicy
|
1366
1473
|
# @private
|
1367
1474
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1369,6 +1476,14 @@ module Google
|
|
1369
1476
|
end
|
1370
1477
|
end
|
1371
1478
|
|
1479
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaEndpoint
|
1480
|
+
# @private
|
1481
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1482
|
+
property :hostname, as: 'hostname'
|
1483
|
+
property :port, as: 'port'
|
1484
|
+
end
|
1485
|
+
end
|
1486
|
+
|
1372
1487
|
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaEndpointMatcher
|
1373
1488
|
# @private
|
1374
1489
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1412,6 +1527,18 @@ module Google
|
|
1412
1527
|
end
|
1413
1528
|
end
|
1414
1529
|
|
1530
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaProxyProtocolConfig
|
1531
|
+
# @private
|
1532
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1533
|
+
collection :allowed_client_headers, as: 'allowedClientHeaders'
|
1534
|
+
property :client_ip, as: 'clientIp'
|
1535
|
+
property :contextual_headers, as: 'contextualHeaders', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeaders, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaContextualHeaders::Representation
|
1536
|
+
|
1537
|
+
property :gateway_identity, as: 'gatewayIdentity'
|
1538
|
+
hash :metadata_headers, as: 'metadataHeaders'
|
1539
|
+
end
|
1540
|
+
end
|
1541
|
+
|
1415
1542
|
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaSecurityGateway
|
1416
1543
|
# @private
|
1417
1544
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1422,6 +1549,10 @@ module Google
|
|
1422
1549
|
hash :hubs, as: 'hubs', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaHub, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaHub::Representation
|
1423
1550
|
|
1424
1551
|
property :name, as: 'name'
|
1552
|
+
property :proxy_protocol_config, as: 'proxyProtocolConfig', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaProxyProtocolConfig, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaProxyProtocolConfig::Representation
|
1553
|
+
|
1554
|
+
property :service_discovery, as: 'serviceDiscovery', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaServiceDiscovery, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaServiceDiscovery::Representation
|
1555
|
+
|
1425
1556
|
property :state, as: 'state'
|
1426
1557
|
property :update_time, as: 'updateTime'
|
1427
1558
|
end
|
@@ -1440,6 +1571,29 @@ module Google
|
|
1440
1571
|
end
|
1441
1572
|
end
|
1442
1573
|
|
1574
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaServiceDiscovery
|
1575
|
+
# @private
|
1576
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1577
|
+
property :api_gateway, as: 'apiGateway', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaServiceDiscoveryApiGateway, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaServiceDiscoveryApiGateway::Representation
|
1578
|
+
|
1579
|
+
end
|
1580
|
+
end
|
1581
|
+
|
1582
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaServiceDiscoveryApiGateway
|
1583
|
+
# @private
|
1584
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1585
|
+
property :resource_override, as: 'resourceOverride', class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaServiceDiscoveryApiGatewayOperationDescriptor, decorator: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSecuritygatewaysV1alphaServiceDiscoveryApiGatewayOperationDescriptor::Representation
|
1586
|
+
|
1587
|
+
end
|
1588
|
+
end
|
1589
|
+
|
1590
|
+
class GoogleCloudBeyondcorpSecuritygatewaysV1alphaServiceDiscoveryApiGatewayOperationDescriptor
|
1591
|
+
# @private
|
1592
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1593
|
+
property :path, as: 'path'
|
1594
|
+
end
|
1595
|
+
end
|
1596
|
+
|
1443
1597
|
class GoogleCloudLocationListLocationsResponse
|
1444
1598
|
# @private
|
1445
1599
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -808,8 +808,8 @@ module Google
|
|
808
808
|
# @param [String] name
|
809
809
|
# The resource that owns the locations collection, if applicable.
|
810
810
|
# @param [Array<String>, String] extra_location_types
|
811
|
-
# Optional.
|
812
|
-
#
|
811
|
+
# Optional. Unless explicitly documented otherwise, don't use this unsupported
|
812
|
+
# field which is primarily intended for internal usage.
|
813
813
|
# @param [String] filter
|
814
814
|
# A filter to narrow down results to a preferred subset. The filtering language
|
815
815
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-beyondcorp_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.55.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_v1alpha/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-beyondcorp_v1alpha/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-beyondcorp_v1alpha/v0.55.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-beyondcorp_v1alpha
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|