# frozen_string_literal: true # Copyright 2020 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Auto-generated by gapic-generator-ruby. DO NOT EDIT! module Google module Cloud module Notebooks module V1beta1 # Represents the metadata of the long-running operation. # @!attribute [rw] create_time # @return [::Google::Protobuf::Timestamp] # The time the operation was created. # @!attribute [rw] end_time # @return [::Google::Protobuf::Timestamp] # The time the operation finished running. # @!attribute [rw] target # @return [::String] # Server-defined resource path for the target of the operation. # @!attribute [rw] verb # @return [::String] # Name of the verb executed by the operation. # @!attribute [rw] status_message # @return [::String] # Human-readable status of the operation, if any. # @!attribute [rw] requested_cancellation # @return [::Boolean] # Identifies whether the user has requested cancellation # of the operation. Operations that have successfully been cancelled # have [Operation.error][] value with a # {::Google::Rpc::Status#code google.rpc.Status.code} of 1, corresponding to `Code.CANCELLED`. # @!attribute [rw] api_version # @return [::String] # API version used to start the operation. # @!attribute [rw] endpoint # @return [::String] # API endpoint name of this operation. class OperationMetadata include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Request for listing notebook instances. # @!attribute [rw] parent # @return [::String] # Required. Format: # `parent=projects/{project_id}/locations/{location}` # @!attribute [rw] page_size # @return [::Integer] # Maximum return size of the list call. # @!attribute [rw] page_token # @return [::String] # A previous returned page token that can be used to continue listing # from the last result. class ListInstancesRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Response for listing notebook instances. # @!attribute [rw] instances # @return [::Array<::Google::Cloud::Notebooks::V1beta1::Instance>] # A list of returned instances. # @!attribute [rw] next_page_token # @return [::String] # Page token that can be used to continue listing from the last result in the # next list call. # @!attribute [rw] unreachable # @return [::Array<::String>] # Locations that could not be reached. For example, # `['us-west1-a', 'us-central1-b']`. # A ListInstancesResponse will only contain either instances or unreachables, class ListInstancesResponse include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Request for getting a notebook instance. # @!attribute [rw] name # @return [::String] # Required. Format: # `projects/{project_id}/locations/{location}/instances/{instance_id}` class GetInstanceRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Request for creating a notebook instance. # @!attribute [rw] parent # @return [::String] # Required. Format: # `parent=projects/{project_id}/locations/{location}` # @!attribute [rw] instance_id # @return [::String] # Required. User-defined unique ID of this instance. # @!attribute [rw] instance # @return [::Google::Cloud::Notebooks::V1beta1::Instance] # Required. The instance to be created. class CreateInstanceRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Request for registering a notebook instance. # @!attribute [rw] parent # @return [::String] # Required. Format: # `parent=projects/{project_id}/locations/{location}` # @!attribute [rw] instance_id # @return [::String] # 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. class RegisterInstanceRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Request for setting instance accelerator. # @!attribute [rw] name # @return [::String] # Required. Format: # `projects/{project_id}/locations/{location}/instances/{instance_id}` # @!attribute [rw] type # @return [::Google::Cloud::Notebooks::V1beta1::Instance::AcceleratorType] # Required. Type of this accelerator. # @!attribute [rw] core_count # @return [::Integer] # Required. Count of cores of this accelerator. Note that not all combinations # of `type` and `core_count` are valid. Check [GPUs on # Compute Engine](https://cloud.google.com/compute/docs/gpus/#gpus-list) to # find a valid combination. TPUs are not supported. class SetInstanceAcceleratorRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Request for setting instance machine type. # @!attribute [rw] name # @return [::String] # Required. Format: # `projects/{project_id}/locations/{location}/instances/{instance_id}` # @!attribute [rw] machine_type # @return [::String] # Required. The [Compute Engine machine # type](https://cloud.google.com/compute/docs/machine-types). class SetInstanceMachineTypeRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Request for setting instance labels. # @!attribute [rw] name # @return [::String] # Required. Format: # `projects/{project_id}/locations/{location}/instances/{instance_id}` # @!attribute [rw] labels # @return [::Google::Protobuf::Map{::String => ::String}] # Labels to apply to this instance. # These can be later modified by the setLabels method class SetInstanceLabelsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end # Request for deleting a notebook instance. # @!attribute [rw] name # @return [::String] # Required. Format: # `projects/{project_id}/locations/{location}/instances/{instance_id}` class DeleteInstanceRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Request for starting a notebook instance # @!attribute [rw] name # @return [::String] # Required. Format: # `projects/{project_id}/locations/{location}/instances/{instance_id}` class StartInstanceRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Request for stopping a notebook instance # @!attribute [rw] name # @return [::String] # Required. Format: # `projects/{project_id}/locations/{location}/instances/{instance_id}` class StopInstanceRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Request for reseting a notebook instance # @!attribute [rw] name # @return [::String] # Required. Format: # `projects/{project_id}/locations/{location}/instances/{instance_id}` class ResetInstanceRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Request for notebook instances to report information to Notebooks API. # @!attribute [rw] name # @return [::String] # Required. Format: # `projects/{project_id}/locations/{location}/instances/{instance_id}` # @!attribute [rw] vm_id # @return [::String] # Required. The VM hardware token for authenticating the VM. # https://cloud.google.com/compute/docs/instances/verifying-instance-identity # @!attribute [rw] metadata # @return [::Google::Protobuf::Map{::String => ::String}] # The metadata reported to Notebooks API. This will be merged to the instance # metadata store class ReportInstanceInfoRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class MetadataEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end # Request for checking if a notebook instance is upgradeable. # @!attribute [rw] notebook_instance # @return [::String] # Required. Format: # `projects/{project_id}/locations/{location}/instances/{instance_id}` class IsInstanceUpgradeableRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Response for checking if a notebook instance is upgradeable. # @!attribute [rw] upgradeable # @return [::Boolean] # If an instance is upgradeable. # @!attribute [rw] upgrade_version # @return [::String] # The version this instance will be upgraded to if calling the upgrade # endpoint. This field will only be populated if field upgradeable is true. # @!attribute [rw] upgrade_info # @return [::String] # Additional information about upgrade. # @!attribute [rw] upgrade_image # @return [::String] # The new image self link this instance will be upgraded to if calling the # upgrade endpoint. This field will only be populated if field upgradeable # is true. class IsInstanceUpgradeableResponse include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Request for upgrading a notebook instance # @!attribute [rw] name # @return [::String] # Required. Format: # `projects/{project_id}/locations/{location}/instances/{instance_id}` class UpgradeInstanceRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Request for upgrading a notebook instance from within the VM # @!attribute [rw] name # @return [::String] # Required. Format: # `projects/{project_id}/locations/{location}/instances/{instance_id}` # @!attribute [rw] vm_id # @return [::String] # Required. The VM hardware token for authenticating the VM. # https://cloud.google.com/compute/docs/instances/verifying-instance-identity class UpgradeInstanceInternalRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Request for listing environments. # @!attribute [rw] parent # @return [::String] # Required. Format: `projects/{project_id}/locations/{location}` # @!attribute [rw] page_size # @return [::Integer] # Maximum return size of the list call. # @!attribute [rw] page_token # @return [::String] # A previous returned page token that can be used to continue listing from # the last result. class ListEnvironmentsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Response for listing environments. # @!attribute [rw] environments # @return [::Array<::Google::Cloud::Notebooks::V1beta1::Environment>] # A list of returned environments. # @!attribute [rw] next_page_token # @return [::String] # A page token that can be used to continue listing from the last result # in the next list call. # @!attribute [rw] unreachable # @return [::Array<::String>] # Locations that could not be reached. class ListEnvironmentsResponse include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Request for getting a notebook environment. # @!attribute [rw] name # @return [::String] # Required. Format: # `projects/{project_id}/locations/{location}/environments/{environment_id}` class GetEnvironmentRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Request for creating a notebook environment. # @!attribute [rw] parent # @return [::String] # Required. Format: `projects/{project_id}/locations/{location}` # @!attribute [rw] environment_id # @return [::String] # Required. User-defined unique ID of this environment. The `environment_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. # @!attribute [rw] environment # @return [::Google::Cloud::Notebooks::V1beta1::Environment] # Required. The environment to be created. class CreateEnvironmentRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Request for deleting a notebook environment. # @!attribute [rw] name # @return [::String] # Required. Format: # `projects/{project_id}/locations/{location}/environments/{environment_id}` class DeleteEnvironmentRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end end end end