Class: Google::Apis::NotebooksV1::RuntimeAccessConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/notebooks_v1/classes.rb,
lib/google/apis/notebooks_v1/representations.rb,
lib/google/apis/notebooks_v1/representations.rb

Overview

Specifies the login configuration for Runtime

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RuntimeAccessConfig

Returns a new instance of RuntimeAccessConfig.



1963
1964
1965
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1963

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#access_typeString

The type of access mode this instance. Corresponds to the JSON property accessType

Returns:

  • (String)


1950
1951
1952
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1950

def access_type
  @access_type
end

#proxy_uriString

Output only. The proxy endpoint that is used to access the runtime. Corresponds to the JSON property proxyUri

Returns:

  • (String)


1955
1956
1957
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1955

def proxy_uri
  @proxy_uri
end

#runtime_ownerString

The owner of this runtime after creation. Format: alias@example.com Currently supports one owner only. Corresponds to the JSON property runtimeOwner

Returns:

  • (String)


1961
1962
1963
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1961

def runtime_owner
  @runtime_owner
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1968
1969
1970
1971
1972
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1968

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