Class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig
- Inherits:
-
Object
- Object
- Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/beyondcorp_v1alpha/classes.rb,
lib/google/apis/beyondcorp_v1alpha/representations.rb,
lib/google/apis/beyondcorp_v1alpha/representations.rb
Overview
Proxy Configuration of a PartnerTenant.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#display_name ⇒ String
Optional.
-
#encryption_info ⇒ Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfo
Message contains the JWT encryption information for the proxy server.
-
#name ⇒ String
Output only.
-
#proxy_protocol_config ⇒ Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaProxyProtocolConfig
The protocol data that specifies how to communicate with Partner's Proxy.
-
#proxy_uri ⇒ String
Required.
-
#routing_info ⇒ Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfo
Message contains the routing information to direct traffic to the proxy server.
-
#transport_info ⇒ Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfo
Message contains the transport layer information to verify the proxy server.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig
constructor
A new instance of GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig
Returns a new instance of GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig.
2191 2192 2193 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2191 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Timestamp when the resource was created.
Corresponds to the JSON property createTime
2148 2149 2150 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2148 def create_time @create_time end |
#display_name ⇒ String
Optional. An arbitrary caller-provided name for the ProxyConfig. Cannot exceed
64 characters.
Corresponds to the JSON property displayName
2154 2155 2156 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2154 def display_name @display_name end |
#encryption_info ⇒ Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfo
Message contains the JWT encryption information for the proxy server.
Corresponds to the JSON property encryptionInfo
2159 2160 2161 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2159 def encryption_info @encryption_info end |
#name ⇒ String
Output only. ProxyConfig resource name.
Corresponds to the JSON property name
2164 2165 2166 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2164 def name @name end |
#proxy_protocol_config ⇒ Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaProxyProtocolConfig
The protocol data that specifies how to communicate with Partner's Proxy.
Corresponds to the JSON property proxyProtocolConfig
2169 2170 2171 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2169 def proxy_protocol_config @proxy_protocol_config end |
#proxy_uri ⇒ String
Required. The URI of the proxy server.
Corresponds to the JSON property proxyUri
2174 2175 2176 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2174 def proxy_uri @proxy_uri end |
#routing_info ⇒ Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfo
Message contains the routing information to direct traffic to the proxy server.
Corresponds to the JSON property routingInfo
2179 2180 2181 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2179 def routing_info @routing_info end |
#transport_info ⇒ Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfo
Message contains the transport layer information to verify the proxy server.
Corresponds to the JSON property transportInfo
2184 2185 2186 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2184 def transport_info @transport_info end |
#update_time ⇒ String
Output only. Timestamp when the resource was last modified.
Corresponds to the JSON property updateTime
2189 2190 2191 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2189 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2196 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @display_name = args[:display_name] if args.key?(:display_name) @encryption_info = args[:encryption_info] if args.key?(:encryption_info) @name = args[:name] if args.key?(:name) @proxy_protocol_config = args[:proxy_protocol_config] if args.key?(:proxy_protocol_config) @proxy_uri = args[:proxy_uri] if args.key?(:proxy_uri) @routing_info = args[:routing_info] if args.key?(:routing_info) @transport_info = args[:transport_info] if args.key?(:transport_info) @update_time = args[:update_time] if args.key?(:update_time) end |