Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NotebookExecutionJobDataformRepositorySource
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NotebookExecutionJobDataformRepositorySource
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
The Dataform Repository containing the input notebook.
Instance Attribute Summary collapse
-
#commit_sha ⇒ String
The commit SHA to read repository with.
-
#dataform_repository_resource_name ⇒ String
The resource name of the Dataform Repository.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1NotebookExecutionJobDataformRepositorySource
constructor
A new instance of GoogleCloudAiplatformV1NotebookExecutionJobDataformRepositorySource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1NotebookExecutionJobDataformRepositorySource
Returns a new instance of GoogleCloudAiplatformV1NotebookExecutionJobDataformRepositorySource.
17174 17175 17176 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17174 def initialize(**args) update!(**args) end |
Instance Attribute Details
#commit_sha ⇒ String
The commit SHA to read repository with. If unset, the file will be read at
HEAD.
Corresponds to the JSON property commitSha
17166 17167 17168 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17166 def commit_sha @commit_sha end |
#dataform_repository_resource_name ⇒ String
The resource name of the Dataform Repository. Format: projects/project_id/
locations/location/repositories/repository_id`
Corresponds to the JSON propertydataformRepositoryResourceName`
17172 17173 17174 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17172 def dataform_repository_resource_name @dataform_repository_resource_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
17179 17180 17181 17182 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 17179 def update!(**args) @commit_sha = args[:commit_sha] if args.key?(:commit_sha) @dataform_repository_resource_name = args[:dataform_repository_resource_name] if args.key?(:dataform_repository_resource_name) end |