File tree Expand file tree Collapse file tree 5 files changed +19
-3
lines changed
generated/google-apis-dataform_v1beta1
lib/google/apis/dataform_v1beta1 Expand file tree Collapse file tree 5 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -143870,6 +143870,7 @@
143870143870"/dataform:v1beta1/NotebookAction/contents": contents
143871143871"/dataform:v1beta1/NotebookAction/jobId": job_id
143872143872"/dataform:v1beta1/NotebookRuntimeOptions": notebook_runtime_options
143873+ "/dataform:v1beta1/NotebookRuntimeOptions/aiPlatformNotebookRuntimeTemplate": ai_platform_notebook_runtime_template
143873143874"/dataform:v1beta1/NotebookRuntimeOptions/gcsOutputBucket": gcs_output_bucket
143874143875"/dataform:v1beta1/OperationMetadata": operation_metadata
143875143876"/dataform:v1beta1/OperationMetadata/apiVersion": api_version
Original file line number Diff line number Diff line change 11# Release history for google-apis-dataform_v1beta1
22
3+ ### v0.44.0 (2025-05-25)
4+
5+ * Regenerated from discovery document revision 20250518
6+ * Regenerated using generator version 0.18.0
7+
38### v0.43.0 (2025-05-04)
49
510* Regenerated using generator version 0.17.0
Original file line number Diff line number Diff line change @@ -2042,6 +2042,14 @@ def update!(**args)
20422042 class NotebookRuntimeOptions
20432043 include Google ::Apis ::Core ::Hashable
20442044
2045+ # Optional. The resource name of the [Colab runtime template] (https://cloud.
2046+ # google.com/colab/docs/runtimes), from which a runtime is created for notebook
2047+ # executions. If not specified, a runtime is created with Colab's default
2048+ # specifications.
2049+ # Corresponds to the JSON property `aiPlatformNotebookRuntimeTemplate`
2050+ # @return [String]
2051+ attr_accessor :ai_platform_notebook_runtime_template
2052+
20452053 # Optional. The Google Cloud Storage location to upload the result to. Format: `
20462054 # gs://bucket-name`.
20472055 # Corresponds to the JSON property `gcsOutputBucket`
@@ -2054,6 +2062,7 @@ def initialize(**args)
20542062
20552063 # Update properties of this object
20562064 def update! ( **args )
2065+ @ai_platform_notebook_runtime_template = args [ :ai_platform_notebook_runtime_template ] if args . key? ( :ai_platform_notebook_runtime_template )
20572066 @gcs_output_bucket = args [ :gcs_output_bucket ] if args . key? ( :gcs_output_bucket )
20582067 end
20592068 end
Original file line number Diff line number Diff line change @@ -16,13 +16,13 @@ module Google
1616 module Apis
1717 module DataformV1beta1
1818 # Version of the google-apis-dataform_v1beta1 gem
19- GEM_VERSION = "0.43 .0"
19+ GEM_VERSION = "0.44 .0"
2020
2121 # Version of the code generator used to generate this client
22- GENERATOR_VERSION = "0.17 .0"
22+ GENERATOR_VERSION = "0.18 .0"
2323
2424 # Revision of the discovery document this client was generated from
25- REVISION = "20250420 "
25+ REVISION = "20250518 "
2626 end
2727 end
2828end
Original file line number Diff line number Diff line change @@ -1294,6 +1294,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
12941294 class NotebookRuntimeOptions
12951295 # @private
12961296 class Representation < Google ::Apis ::Core ::JsonRepresentation
1297+ property :ai_platform_notebook_runtime_template , as : 'aiPlatformNotebookRuntimeTemplate'
12971298 property :gcs_output_bucket , as : 'gcsOutputBucket'
12981299 end
12991300 end
You can’t perform that action at this time.
0 commit comments