Class: Google::Apis::BeyondcorpV1alpha::ClientConnectorService
- Inherits:
-
Object
- Object
- Google::Apis::BeyondcorpV1alpha::ClientConnectorService
- 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
Message describing ClientConnectorService object.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#display_name ⇒ String
Optional.
-
#egress ⇒ Google::Apis::BeyondcorpV1alpha::Egress
The details of the egress info.
-
#ingress ⇒ Google::Apis::BeyondcorpV1alpha::Ingress
Settings of how to connect to the ClientGateway.
-
#name ⇒ String
Required.
-
#state ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ClientConnectorService
constructor
A new instance of ClientConnectorService.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ClientConnectorService
Returns a new instance of ClientConnectorService.
260 261 262 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 260 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. [Output only] Create time stamp.
Corresponds to the JSON property createTime
225 226 227 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 225 def create_time @create_time end |
#display_name ⇒ String
Optional. User-provided name. The display name should follow certain format. *
Must be 6 to 30 characters in length. * Can only contain lowercase letters,
numbers, and hyphens. * Must start with a letter.
Corresponds to the JSON property displayName
232 233 234 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 232 def display_name @display_name end |
#egress ⇒ Google::Apis::BeyondcorpV1alpha::Egress
The details of the egress info. One of the following options should be set.
Corresponds to the JSON property egress
237 238 239 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 237 def egress @egress end |
#ingress ⇒ Google::Apis::BeyondcorpV1alpha::Ingress
Settings of how to connect to the ClientGateway. One of the following options
should be set.
Corresponds to the JSON property ingress
243 244 245 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 243 def ingress @ingress end |
#name ⇒ String
Required. Name of resource. The name is ignored during creation.
Corresponds to the JSON property name
248 249 250 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 248 def name @name end |
#state ⇒ String
Output only. The operational state of the ClientConnectorService.
Corresponds to the JSON property state
253 254 255 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 253 def state @state end |
#update_time ⇒ String
Output only. [Output only] Update time stamp.
Corresponds to the JSON property updateTime
258 259 260 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 258 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
265 266 267 268 269 270 271 272 273 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 265 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @display_name = args[:display_name] if args.key?(:display_name) @egress = args[:egress] if args.key?(:egress) @ingress = args[:ingress] if args.key?(:ingress) @name = args[:name] if args.key?(:name) @state = args[:state] if args.key?(:state) @update_time = args[:update_time] if args.key?(:update_time) end |