google-apis-notebooks_v1 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1ae0e28d6a695f4e2ee606d13bb18c82f801666d2b8205e6430883844eb68592
4
- data.tar.gz: 555e56c20131a8a8323d31c73346c9b8cf12c36d7ad468d92fd3871fb89bb24e
3
+ metadata.gz: 9037ccf65d1ffcf977a9d078221805a2eabf8f7c3d938719a4c5f184800b648b
4
+ data.tar.gz: 2f840261259ea87f2da7ca843fd89ab77a7919825993822c97873ff99d126ea4
5
5
  SHA512:
6
- metadata.gz: 865152f617f95e63810ee9915315f55434ef8d370de8a0afc9226c685707323c53c1532d1b42f9ddfc7053b26be22fe6f1378afb995614055e1e768bf0762c5c
7
- data.tar.gz: ea790ec632e657ddc8e7feb3cb507ba03d69601257a0ca98a25f6e2f6e315627ce1af31c28d3a731f58719645100fc5b4b11897d5360687ece2c48f198a28b2d
6
+ metadata.gz: 9b614ca50ddfae80a671ed0a4b0659a20c31522042c508677ebed17a63a5b2098425e83ddaa04fa819da499f970bf43e35b7ad90587871c28f910af4092bf3a0
7
+ data.tar.gz: 3843f77a3f85e3629dca5d49c4c1f635f0ce010d6797471ec4181c42ac8c8a6a7b56a2233a8ad3671d26828d850f62092cc84b92f5d7850a62fa0543dacaf653
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-notebooks_v1
2
2
 
3
+ ### v0.3.0 (2021-02-24)
4
+
5
+ * Regenerated from discovery document revision 20210219
6
+
3
7
  ### v0.2.0 (2021-01-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20210122
@@ -468,6 +468,11 @@ module Google
468
468
  # @return [String]
469
469
  attr_accessor :output_notebook_folder
470
470
 
471
+ # Parameters used within the 'input_notebook_file' notebook.
472
+ # Corresponds to the JSON property `parameters`
473
+ # @return [String]
474
+ attr_accessor :parameters
475
+
471
476
  # Parameters to be overridden in the notebook during execution. Ref https://
472
477
  # papermill.readthedocs.io/en/latest/usage-parameterize.html on how to
473
478
  # specifying parameters in the input notebook and pass them here in an YAML file.
@@ -493,6 +498,7 @@ module Google
493
498
  @labels = args[:labels] if args.key?(:labels)
494
499
  @master_type = args[:master_type] if args.key?(:master_type)
495
500
  @output_notebook_folder = args[:output_notebook_folder] if args.key?(:output_notebook_folder)
501
+ @parameters = args[:parameters] if args.key?(:parameters)
496
502
  @params_yaml_file = args[:params_yaml_file] if args.key?(:params_yaml_file)
497
503
  @scale_tier = args[:scale_tier] if args.key?(:scale_tier)
498
504
  end
@@ -1422,6 +1428,12 @@ module Google
1422
1428
  # @return [String]
1423
1429
  attr_accessor :name
1424
1430
 
1431
+ # Output only. The most recent execution names triggered from this schedule and
1432
+ # their corresponding states.
1433
+ # Corresponds to the JSON property `recentExecutions`
1434
+ # @return [Array<Google::Apis::NotebooksV1::Execution>]
1435
+ attr_accessor :recent_executions
1436
+
1425
1437
  #
1426
1438
  # Corresponds to the JSON property `state`
1427
1439
  # @return [String]
@@ -1437,7 +1449,7 @@ module Google
1437
1449
  # @return [String]
1438
1450
  attr_accessor :time_zone
1439
1451
 
1440
- # Output only. TIme the schedule was last updated.
1452
+ # Output only. Time the schedule was last updated.
1441
1453
  # Corresponds to the JSON property `updateTime`
1442
1454
  # @return [String]
1443
1455
  attr_accessor :update_time
@@ -1454,6 +1466,7 @@ module Google
1454
1466
  @display_name = args[:display_name] if args.key?(:display_name)
1455
1467
  @execution_template = args[:execution_template] if args.key?(:execution_template)
1456
1468
  @name = args[:name] if args.key?(:name)
1469
+ @recent_executions = args[:recent_executions] if args.key?(:recent_executions)
1457
1470
  @state = args[:state] if args.key?(:state)
1458
1471
  @time_zone = args[:time_zone] if args.key?(:time_zone)
1459
1472
  @update_time = args[:update_time] if args.key?(:update_time)
@@ -1799,6 +1812,11 @@ module Google
1799
1812
  # @return [String]
1800
1813
  attr_accessor :target_image
1801
1814
 
1815
+ # Target VM Version, like m63.
1816
+ # Corresponds to the JSON property `targetVersion`
1817
+ # @return [String]
1818
+ attr_accessor :target_version
1819
+
1802
1820
  # The version of the notebook instance before this upgrade.
1803
1821
  # Corresponds to the JSON property `version`
1804
1822
  # @return [String]
@@ -1822,6 +1840,7 @@ module Google
1822
1840
  @snapshot = args[:snapshot] if args.key?(:snapshot)
1823
1841
  @state = args[:state] if args.key?(:state)
1824
1842
  @target_image = args[:target_image] if args.key?(:target_image)
1843
+ @target_version = args[:target_version] if args.key?(:target_version)
1825
1844
  @version = args[:version] if args.key?(:version)
1826
1845
  @vm_image = args[:vm_image] if args.key?(:vm_image)
1827
1846
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module NotebooksV1
18
18
  # Version of the google-apis-notebooks_v1 gem
19
- GEM_VERSION = "0.2.0"
19
+ GEM_VERSION = "0.3.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.1.2"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210122"
25
+ REVISION = "20210219"
26
26
  end
27
27
  end
28
28
  end
@@ -383,6 +383,7 @@ module Google
383
383
  hash :labels, as: 'labels'
384
384
  property :master_type, as: 'masterType'
385
385
  property :output_notebook_folder, as: 'outputNotebookFolder'
386
+ property :parameters, as: 'parameters'
386
387
  property :params_yaml_file, as: 'paramsYamlFile'
387
388
  property :scale_tier, as: 'scaleTier'
388
389
  end
@@ -602,6 +603,8 @@ module Google
602
603
  property :execution_template, as: 'executionTemplate', class: Google::Apis::NotebooksV1::ExecutionTemplate, decorator: Google::Apis::NotebooksV1::ExecutionTemplate::Representation
603
604
 
604
605
  property :name, as: 'name'
606
+ collection :recent_executions, as: 'recentExecutions', class: Google::Apis::NotebooksV1::Execution, decorator: Google::Apis::NotebooksV1::Execution::Representation
607
+
605
608
  property :state, as: 'state'
606
609
  property :time_zone, as: 'timeZone'
607
610
  property :update_time, as: 'updateTime'
@@ -706,6 +709,7 @@ module Google
706
709
  property :snapshot, as: 'snapshot'
707
710
  property :state, as: 'state'
708
711
  property :target_image, as: 'targetImage'
712
+ property :target_version, as: 'targetVersion'
709
713
  property :version, as: 'version'
710
714
  property :vm_image, as: 'vmImage'
711
715
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-notebooks_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-08 00:00:00.000000000 Z
11
+ date: 2021-03-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-notebooks_v1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v1/v0.2.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v1/v0.3.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-notebooks_v1
57
57
  post_install_message:
58
58
  rdoc_options: []
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.6
72
+ rubygems_version: 3.2.11
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Notebooks API V1