class Google::Apis::NotebooksV1::RegisterInstanceRequest

Request for registering a notebook instance.

Attributes

instance_id[RW]

Required. User defined unique ID of this instance. The `instance_id` must be 1 to 63 characters long and contain only lowercase letters, numeric characters, and dashes. The first character must be a lowercase letter and the last character cannot be a dash. Corresponds to the JSON property `instanceId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/notebooks_v1/classes.rb, line 1681
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 1686
def update!(**args)
  @instance_id = args[:instance_id] if args.key?(:instance_id)
end