class Google::Apis::NotebooksV1::RuntimeAccessConfig
Specifies the login configuration for Runtime
Attributes
access_type[RW]
The type of access mode this instance. Corresponds to the JSON property `accessType` @return [String]
proxy_uri[RW]
Output only. The proxy endpoint that is used to access the runtime. Corresponds to the JSON property `proxyUri` @return [String]
runtime_owner[RW]
The owner of this runtime after creation. Format: `alias@example.com` Currently supports one owner only. Corresponds to the JSON property `runtimeOwner` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/notebooks_v1/classes.rb, line 1942 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/notebooks_v1/classes.rb, line 1947 def update!(**args) @access_type = args[:access_type] if args.key?(:access_type) @proxy_uri = args[:proxy_uri] if args.key?(:proxy_uri) @runtime_owner = args[:runtime_owner] if args.key?(:runtime_owner) end