Class: Google::Cloud::AIPlatform::V1::NotebookExecutionJob
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::NotebookExecutionJob
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/notebook_execution_job.rb
Overview
NotebookExecutionJob represents an instance of a notebook execution.
Defined Under Namespace
Classes: DataformRepositorySource, DirectNotebookSource, GcsNotebookSource, LabelsEntry
Instance Attribute Summary collapse
-
#create_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#dataform_repository_source ⇒ ::Google::Cloud::AIPlatform::V1::NotebookExecutionJob::DataformRepositorySource
The Dataform Repository pointing to a single file notebook repository.
-
#direct_notebook_source ⇒ ::Google::Cloud::AIPlatform::V1::NotebookExecutionJob::DirectNotebookSource
The contents of an input notebook file.
-
#display_name ⇒ ::String
The display name of the NotebookExecutionJob.
-
#encryption_spec ⇒ ::Google::Cloud::AIPlatform::V1::EncryptionSpec
Customer-managed encryption key spec for the notebook execution job.
-
#execution_timeout ⇒ ::Google::Protobuf::Duration
Max running time of the execution job in seconds (default 86400s / 24 hrs).
-
#execution_user ⇒ ::String
The user email to run the execution as.
-
#gcs_notebook_source ⇒ ::Google::Cloud::AIPlatform::V1::NotebookExecutionJob::GcsNotebookSource
The Cloud Storage url pointing to the ipynb file.
-
#gcs_output_uri ⇒ ::String
The Cloud Storage location to upload the result to.
-
#job_state ⇒ ::Google::Cloud::AIPlatform::V1::JobState
readonly
Output only.
-
#labels ⇒ ::Google::Protobuf::Map{::String => ::String}
The labels with user-defined metadata to organize NotebookExecutionJobs.
-
#name ⇒ ::String
readonly
Output only.
-
#notebook_runtime_template_resource_name ⇒ ::String
The NotebookRuntimeTemplate to source compute configuration from.
-
#schedule_resource_name ⇒ ::String
readonly
Output only.
-
#service_account ⇒ ::String
The service account to run the execution as.
-
#status ⇒ ::Google::Rpc::Status
readonly
Output only.
-
#update_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
Instance Attribute Details
#create_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. Timestamp when this NotebookExecutionJob was created.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_execution_job.rb', line 95 class NotebookExecutionJob include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The Dataform Repository containing the input notebook. # @!attribute [rw] dataform_repository_resource_name # @return [::String] # The resource name of the Dataform Repository. Format: # `projects/{project_id}/locations/{location}/repositories/{repository_id}` # @!attribute [rw] commit_sha # @return [::String] # The commit SHA to read repository with. If unset, the file will be read # at HEAD. class DataformRepositorySource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The Cloud Storage uri for the input notebook. # @!attribute [rw] uri # @return [::String] # The Cloud Storage uri pointing to the ipynb file. Format: # `gs://bucket/notebook_file.ipynb` # @!attribute [rw] generation # @return [::String] # The version of the Cloud Storage object to read. If unset, the current # version of the object is read. See # https://cloud.google.com/storage/docs/metadata#generation-number. class GcsNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The content of the input notebook in ipynb format. # @!attribute [rw] content # @return [::String] # The base64-encoded contents of the input notebook file. class DirectNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#dataform_repository_source ⇒ ::Google::Cloud::AIPlatform::V1::NotebookExecutionJob::DataformRepositorySource
Returns The Dataform Repository pointing to a single file notebook repository.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_execution_job.rb', line 95 class NotebookExecutionJob include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The Dataform Repository containing the input notebook. # @!attribute [rw] dataform_repository_resource_name # @return [::String] # The resource name of the Dataform Repository. Format: # `projects/{project_id}/locations/{location}/repositories/{repository_id}` # @!attribute [rw] commit_sha # @return [::String] # The commit SHA to read repository with. If unset, the file will be read # at HEAD. class DataformRepositorySource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The Cloud Storage uri for the input notebook. # @!attribute [rw] uri # @return [::String] # The Cloud Storage uri pointing to the ipynb file. Format: # `gs://bucket/notebook_file.ipynb` # @!attribute [rw] generation # @return [::String] # The version of the Cloud Storage object to read. If unset, the current # version of the object is read. See # https://cloud.google.com/storage/docs/metadata#generation-number. class GcsNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The content of the input notebook in ipynb format. # @!attribute [rw] content # @return [::String] # The base64-encoded contents of the input notebook file. class DirectNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#direct_notebook_source ⇒ ::Google::Cloud::AIPlatform::V1::NotebookExecutionJob::DirectNotebookSource
Returns The contents of an input notebook file.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_execution_job.rb', line 95 class NotebookExecutionJob include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The Dataform Repository containing the input notebook. # @!attribute [rw] dataform_repository_resource_name # @return [::String] # The resource name of the Dataform Repository. Format: # `projects/{project_id}/locations/{location}/repositories/{repository_id}` # @!attribute [rw] commit_sha # @return [::String] # The commit SHA to read repository with. If unset, the file will be read # at HEAD. class DataformRepositorySource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The Cloud Storage uri for the input notebook. # @!attribute [rw] uri # @return [::String] # The Cloud Storage uri pointing to the ipynb file. Format: # `gs://bucket/notebook_file.ipynb` # @!attribute [rw] generation # @return [::String] # The version of the Cloud Storage object to read. If unset, the current # version of the object is read. See # https://cloud.google.com/storage/docs/metadata#generation-number. class GcsNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The content of the input notebook in ipynb format. # @!attribute [rw] content # @return [::String] # The base64-encoded contents of the input notebook file. class DirectNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#display_name ⇒ ::String
Returns The display name of the NotebookExecutionJob. The name can be up to 128 characters long and can consist of any UTF-8 characters.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_execution_job.rb', line 95 class NotebookExecutionJob include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The Dataform Repository containing the input notebook. # @!attribute [rw] dataform_repository_resource_name # @return [::String] # The resource name of the Dataform Repository. Format: # `projects/{project_id}/locations/{location}/repositories/{repository_id}` # @!attribute [rw] commit_sha # @return [::String] # The commit SHA to read repository with. If unset, the file will be read # at HEAD. class DataformRepositorySource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The Cloud Storage uri for the input notebook. # @!attribute [rw] uri # @return [::String] # The Cloud Storage uri pointing to the ipynb file. Format: # `gs://bucket/notebook_file.ipynb` # @!attribute [rw] generation # @return [::String] # The version of the Cloud Storage object to read. If unset, the current # version of the object is read. See # https://cloud.google.com/storage/docs/metadata#generation-number. class GcsNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The content of the input notebook in ipynb format. # @!attribute [rw] content # @return [::String] # The base64-encoded contents of the input notebook file. class DirectNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#encryption_spec ⇒ ::Google::Cloud::AIPlatform::V1::EncryptionSpec
Returns Customer-managed encryption key spec for the notebook execution job. This field is auto-populated if the [NotebookService.NotebookRuntimeTemplate][] has an encryption spec.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_execution_job.rb', line 95 class NotebookExecutionJob include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The Dataform Repository containing the input notebook. # @!attribute [rw] dataform_repository_resource_name # @return [::String] # The resource name of the Dataform Repository. Format: # `projects/{project_id}/locations/{location}/repositories/{repository_id}` # @!attribute [rw] commit_sha # @return [::String] # The commit SHA to read repository with. If unset, the file will be read # at HEAD. class DataformRepositorySource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The Cloud Storage uri for the input notebook. # @!attribute [rw] uri # @return [::String] # The Cloud Storage uri pointing to the ipynb file. Format: # `gs://bucket/notebook_file.ipynb` # @!attribute [rw] generation # @return [::String] # The version of the Cloud Storage object to read. If unset, the current # version of the object is read. See # https://cloud.google.com/storage/docs/metadata#generation-number. class GcsNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The content of the input notebook in ipynb format. # @!attribute [rw] content # @return [::String] # The base64-encoded contents of the input notebook file. class DirectNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#execution_timeout ⇒ ::Google::Protobuf::Duration
Returns Max running time of the execution job in seconds (default 86400s / 24 hrs).
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_execution_job.rb', line 95 class NotebookExecutionJob include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The Dataform Repository containing the input notebook. # @!attribute [rw] dataform_repository_resource_name # @return [::String] # The resource name of the Dataform Repository. Format: # `projects/{project_id}/locations/{location}/repositories/{repository_id}` # @!attribute [rw] commit_sha # @return [::String] # The commit SHA to read repository with. If unset, the file will be read # at HEAD. class DataformRepositorySource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The Cloud Storage uri for the input notebook. # @!attribute [rw] uri # @return [::String] # The Cloud Storage uri pointing to the ipynb file. Format: # `gs://bucket/notebook_file.ipynb` # @!attribute [rw] generation # @return [::String] # The version of the Cloud Storage object to read. If unset, the current # version of the object is read. See # https://cloud.google.com/storage/docs/metadata#generation-number. class GcsNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The content of the input notebook in ipynb format. # @!attribute [rw] content # @return [::String] # The base64-encoded contents of the input notebook file. class DirectNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#execution_user ⇒ ::String
Returns The user email to run the execution as. Only supported by Colab runtimes.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_execution_job.rb', line 95 class NotebookExecutionJob include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The Dataform Repository containing the input notebook. # @!attribute [rw] dataform_repository_resource_name # @return [::String] # The resource name of the Dataform Repository. Format: # `projects/{project_id}/locations/{location}/repositories/{repository_id}` # @!attribute [rw] commit_sha # @return [::String] # The commit SHA to read repository with. If unset, the file will be read # at HEAD. class DataformRepositorySource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The Cloud Storage uri for the input notebook. # @!attribute [rw] uri # @return [::String] # The Cloud Storage uri pointing to the ipynb file. Format: # `gs://bucket/notebook_file.ipynb` # @!attribute [rw] generation # @return [::String] # The version of the Cloud Storage object to read. If unset, the current # version of the object is read. See # https://cloud.google.com/storage/docs/metadata#generation-number. class GcsNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The content of the input notebook in ipynb format. # @!attribute [rw] content # @return [::String] # The base64-encoded contents of the input notebook file. class DirectNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#gcs_notebook_source ⇒ ::Google::Cloud::AIPlatform::V1::NotebookExecutionJob::GcsNotebookSource
Returns The Cloud Storage url pointing to the ipynb file. Format:
gs://bucket/notebook_file.ipynb
.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_execution_job.rb', line 95 class NotebookExecutionJob include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The Dataform Repository containing the input notebook. # @!attribute [rw] dataform_repository_resource_name # @return [::String] # The resource name of the Dataform Repository. Format: # `projects/{project_id}/locations/{location}/repositories/{repository_id}` # @!attribute [rw] commit_sha # @return [::String] # The commit SHA to read repository with. If unset, the file will be read # at HEAD. class DataformRepositorySource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The Cloud Storage uri for the input notebook. # @!attribute [rw] uri # @return [::String] # The Cloud Storage uri pointing to the ipynb file. Format: # `gs://bucket/notebook_file.ipynb` # @!attribute [rw] generation # @return [::String] # The version of the Cloud Storage object to read. If unset, the current # version of the object is read. See # https://cloud.google.com/storage/docs/metadata#generation-number. class GcsNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The content of the input notebook in ipynb format. # @!attribute [rw] content # @return [::String] # The base64-encoded contents of the input notebook file. class DirectNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#gcs_output_uri ⇒ ::String
Returns The Cloud Storage location to upload the result to. Format:
gs://bucket-name
.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_execution_job.rb', line 95 class NotebookExecutionJob include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The Dataform Repository containing the input notebook. # @!attribute [rw] dataform_repository_resource_name # @return [::String] # The resource name of the Dataform Repository. Format: # `projects/{project_id}/locations/{location}/repositories/{repository_id}` # @!attribute [rw] commit_sha # @return [::String] # The commit SHA to read repository with. If unset, the file will be read # at HEAD. class DataformRepositorySource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The Cloud Storage uri for the input notebook. # @!attribute [rw] uri # @return [::String] # The Cloud Storage uri pointing to the ipynb file. Format: # `gs://bucket/notebook_file.ipynb` # @!attribute [rw] generation # @return [::String] # The version of the Cloud Storage object to read. If unset, the current # version of the object is read. See # https://cloud.google.com/storage/docs/metadata#generation-number. class GcsNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The content of the input notebook in ipynb format. # @!attribute [rw] content # @return [::String] # The base64-encoded contents of the input notebook file. class DirectNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#job_state ⇒ ::Google::Cloud::AIPlatform::V1::JobState (readonly)
Returns Output only. The state of the NotebookExecutionJob.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_execution_job.rb', line 95 class NotebookExecutionJob include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The Dataform Repository containing the input notebook. # @!attribute [rw] dataform_repository_resource_name # @return [::String] # The resource name of the Dataform Repository. Format: # `projects/{project_id}/locations/{location}/repositories/{repository_id}` # @!attribute [rw] commit_sha # @return [::String] # The commit SHA to read repository with. If unset, the file will be read # at HEAD. class DataformRepositorySource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The Cloud Storage uri for the input notebook. # @!attribute [rw] uri # @return [::String] # The Cloud Storage uri pointing to the ipynb file. Format: # `gs://bucket/notebook_file.ipynb` # @!attribute [rw] generation # @return [::String] # The version of the Cloud Storage object to read. If unset, the current # version of the object is read. See # https://cloud.google.com/storage/docs/metadata#generation-number. class GcsNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The content of the input notebook in ipynb format. # @!attribute [rw] content # @return [::String] # The base64-encoded contents of the input notebook file. class DirectNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#labels ⇒ ::Google::Protobuf::Map{::String => ::String}
Returns The labels with user-defined metadata to organize NotebookExecutionJobs.
Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed.
See https://goo.gl/xmQnxf for more information and examples of labels. System reserved label keys are prefixed with "aiplatform.googleapis.com/" and are immutable.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_execution_job.rb', line 95 class NotebookExecutionJob include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The Dataform Repository containing the input notebook. # @!attribute [rw] dataform_repository_resource_name # @return [::String] # The resource name of the Dataform Repository. Format: # `projects/{project_id}/locations/{location}/repositories/{repository_id}` # @!attribute [rw] commit_sha # @return [::String] # The commit SHA to read repository with. If unset, the file will be read # at HEAD. class DataformRepositorySource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The Cloud Storage uri for the input notebook. # @!attribute [rw] uri # @return [::String] # The Cloud Storage uri pointing to the ipynb file. Format: # `gs://bucket/notebook_file.ipynb` # @!attribute [rw] generation # @return [::String] # The version of the Cloud Storage object to read. If unset, the current # version of the object is read. See # https://cloud.google.com/storage/docs/metadata#generation-number. class GcsNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The content of the input notebook in ipynb format. # @!attribute [rw] content # @return [::String] # The base64-encoded contents of the input notebook file. class DirectNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#name ⇒ ::String (readonly)
Returns Output only. The resource name of this NotebookExecutionJob. Format:
projects/{project_id}/locations/{location}/notebookExecutionJobs/{job_id}
.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_execution_job.rb', line 95 class NotebookExecutionJob include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The Dataform Repository containing the input notebook. # @!attribute [rw] dataform_repository_resource_name # @return [::String] # The resource name of the Dataform Repository. Format: # `projects/{project_id}/locations/{location}/repositories/{repository_id}` # @!attribute [rw] commit_sha # @return [::String] # The commit SHA to read repository with. If unset, the file will be read # at HEAD. class DataformRepositorySource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The Cloud Storage uri for the input notebook. # @!attribute [rw] uri # @return [::String] # The Cloud Storage uri pointing to the ipynb file. Format: # `gs://bucket/notebook_file.ipynb` # @!attribute [rw] generation # @return [::String] # The version of the Cloud Storage object to read. If unset, the current # version of the object is read. See # https://cloud.google.com/storage/docs/metadata#generation-number. class GcsNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The content of the input notebook in ipynb format. # @!attribute [rw] content # @return [::String] # The base64-encoded contents of the input notebook file. class DirectNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#notebook_runtime_template_resource_name ⇒ ::String
Returns The NotebookRuntimeTemplate to source compute configuration from.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_execution_job.rb', line 95 class NotebookExecutionJob include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The Dataform Repository containing the input notebook. # @!attribute [rw] dataform_repository_resource_name # @return [::String] # The resource name of the Dataform Repository. Format: # `projects/{project_id}/locations/{location}/repositories/{repository_id}` # @!attribute [rw] commit_sha # @return [::String] # The commit SHA to read repository with. If unset, the file will be read # at HEAD. class DataformRepositorySource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The Cloud Storage uri for the input notebook. # @!attribute [rw] uri # @return [::String] # The Cloud Storage uri pointing to the ipynb file. Format: # `gs://bucket/notebook_file.ipynb` # @!attribute [rw] generation # @return [::String] # The version of the Cloud Storage object to read. If unset, the current # version of the object is read. See # https://cloud.google.com/storage/docs/metadata#generation-number. class GcsNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The content of the input notebook in ipynb format. # @!attribute [rw] content # @return [::String] # The base64-encoded contents of the input notebook file. class DirectNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#schedule_resource_name ⇒ ::String (readonly)
Returns Output only. The Schedule resource name if this job is triggered by one.
Format:
projects/{project_id}/locations/{location}/schedules/{schedule_id}
.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_execution_job.rb', line 95 class NotebookExecutionJob include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The Dataform Repository containing the input notebook. # @!attribute [rw] dataform_repository_resource_name # @return [::String] # The resource name of the Dataform Repository. Format: # `projects/{project_id}/locations/{location}/repositories/{repository_id}` # @!attribute [rw] commit_sha # @return [::String] # The commit SHA to read repository with. If unset, the file will be read # at HEAD. class DataformRepositorySource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The Cloud Storage uri for the input notebook. # @!attribute [rw] uri # @return [::String] # The Cloud Storage uri pointing to the ipynb file. Format: # `gs://bucket/notebook_file.ipynb` # @!attribute [rw] generation # @return [::String] # The version of the Cloud Storage object to read. If unset, the current # version of the object is read. See # https://cloud.google.com/storage/docs/metadata#generation-number. class GcsNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The content of the input notebook in ipynb format. # @!attribute [rw] content # @return [::String] # The base64-encoded contents of the input notebook file. class DirectNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#service_account ⇒ ::String
Returns The service account to run the execution as.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_execution_job.rb', line 95 class NotebookExecutionJob include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The Dataform Repository containing the input notebook. # @!attribute [rw] dataform_repository_resource_name # @return [::String] # The resource name of the Dataform Repository. Format: # `projects/{project_id}/locations/{location}/repositories/{repository_id}` # @!attribute [rw] commit_sha # @return [::String] # The commit SHA to read repository with. If unset, the file will be read # at HEAD. class DataformRepositorySource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The Cloud Storage uri for the input notebook. # @!attribute [rw] uri # @return [::String] # The Cloud Storage uri pointing to the ipynb file. Format: # `gs://bucket/notebook_file.ipynb` # @!attribute [rw] generation # @return [::String] # The version of the Cloud Storage object to read. If unset, the current # version of the object is read. See # https://cloud.google.com/storage/docs/metadata#generation-number. class GcsNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The content of the input notebook in ipynb format. # @!attribute [rw] content # @return [::String] # The base64-encoded contents of the input notebook file. class DirectNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#status ⇒ ::Google::Rpc::Status (readonly)
Returns Output only. Populated when the NotebookExecutionJob is completed. When there is an error during notebook execution, the error details are populated.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_execution_job.rb', line 95 class NotebookExecutionJob include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The Dataform Repository containing the input notebook. # @!attribute [rw] dataform_repository_resource_name # @return [::String] # The resource name of the Dataform Repository. Format: # `projects/{project_id}/locations/{location}/repositories/{repository_id}` # @!attribute [rw] commit_sha # @return [::String] # The commit SHA to read repository with. If unset, the file will be read # at HEAD. class DataformRepositorySource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The Cloud Storage uri for the input notebook. # @!attribute [rw] uri # @return [::String] # The Cloud Storage uri pointing to the ipynb file. Format: # `gs://bucket/notebook_file.ipynb` # @!attribute [rw] generation # @return [::String] # The version of the Cloud Storage object to read. If unset, the current # version of the object is read. See # https://cloud.google.com/storage/docs/metadata#generation-number. class GcsNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The content of the input notebook in ipynb format. # @!attribute [rw] content # @return [::String] # The base64-encoded contents of the input notebook file. class DirectNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#update_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. Timestamp when this NotebookExecutionJob was most recently updated.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'proto_docs/google/cloud/aiplatform/v1/notebook_execution_job.rb', line 95 class NotebookExecutionJob include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The Dataform Repository containing the input notebook. # @!attribute [rw] dataform_repository_resource_name # @return [::String] # The resource name of the Dataform Repository. Format: # `projects/{project_id}/locations/{location}/repositories/{repository_id}` # @!attribute [rw] commit_sha # @return [::String] # The commit SHA to read repository with. If unset, the file will be read # at HEAD. class DataformRepositorySource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The Cloud Storage uri for the input notebook. # @!attribute [rw] uri # @return [::String] # The Cloud Storage uri pointing to the ipynb file. Format: # `gs://bucket/notebook_file.ipynb` # @!attribute [rw] generation # @return [::String] # The version of the Cloud Storage object to read. If unset, the current # version of the object is read. See # https://cloud.google.com/storage/docs/metadata#generation-number. class GcsNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # The content of the input notebook in ipynb format. # @!attribute [rw] content # @return [::String] # The base64-encoded contents of the input notebook file. class DirectNotebookSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |