google-apis-batch_v1 0.4.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e632ec21f8b0277559df56eb49b0e90698473c303e8d677b5740563b67c145fb
4
- data.tar.gz: f33a47f93a6909988d1a051f5560b2af513f3708431d00974d7fb6fceaeb921d
3
+ metadata.gz: 965d9a141454d1bb19060ad7ce67428f8a9aa3be2e3fb96eb4968bd7ed7cf6aa
4
+ data.tar.gz: a7567caba355ef4969816fe6f4a67751d5dff54a39d4e6b3ee5d09f2588313fb
5
5
  SHA512:
6
- metadata.gz: 54d82bcd14d90c77de26ea76ad10d0a5cc7b2ad709da10dddcc116b8fe29f2cf58810218b5df607d488875a19d6746dced5d06ff2183a0fe1d9db26295e533a0
7
- data.tar.gz: 6052595e2d20b5b489ccd411a0d041a44fe72d2de549ef7e7400d063a650fa48686770afa95439e4e46271601a68b0fad59ec8daf0976ee4b976236a4ca5b25f
6
+ metadata.gz: 5c15776a11fd1fa3932a266055cac9ef4ca964d6bab19e2a6f0bf9f774841cc9b0a96cc09dd61f17cb6c82e03cf57c360596a0bb0f03976172889bae3e263228
7
+ data.tar.gz: d8c25e398e0a119b249c8569b8b1112a603282232fd4091a52be1945f4ee8a325c4cfcbc229158a0595a512bf218f22e748ac264cda9a6f3e1170c9359ac32cf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-batch_v1
2
2
 
3
+ ### v0.5.0 (2023-01-29)
4
+
5
+ * Regenerated from discovery document revision 20230118
6
+
3
7
  ### v0.4.0 (2023-01-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20230105
@@ -945,6 +945,13 @@ module Google
945
945
  class InstanceStatus
946
946
  include Google::Apis::Core::Hashable
947
947
 
948
+ # A new persistent disk or a local ssd. A VM can only have one local SSD setting
949
+ # but multiple local SSD partitions. https://cloud.google.com/compute/docs/disks#
950
+ # pdspecs. https://cloud.google.com/compute/docs/disks#localssds.
951
+ # Corresponds to the JSON property `bootDisk`
952
+ # @return [Google::Apis::BatchV1::Disk]
953
+ attr_accessor :boot_disk
954
+
948
955
  # The Compute Engine machine type.
949
956
  # Corresponds to the JSON property `machineType`
950
957
  # @return [String]
@@ -966,6 +973,7 @@ module Google
966
973
 
967
974
  # Update properties of this object
968
975
  def update!(**args)
976
+ @boot_disk = args[:boot_disk] if args.key?(:boot_disk)
969
977
  @machine_type = args[:machine_type] if args.key?(:machine_type)
970
978
  @provisioning_model = args[:provisioning_model] if args.key?(:provisioning_model)
971
979
  @task_pack = args[:task_pack] if args.key?(:task_pack)
@@ -1900,6 +1908,12 @@ module Google
1900
1908
  # @return [String]
1901
1909
  attr_accessor :email
1902
1910
 
1911
+ # List of scopes to be enabled for this service account on the VM, in addition
1912
+ # to the cloud-platform API scope that will be added by default.
1913
+ # Corresponds to the JSON property `scopes`
1914
+ # @return [Array<String>]
1915
+ attr_accessor :scopes
1916
+
1903
1917
  def initialize(**args)
1904
1918
  update!(**args)
1905
1919
  end
@@ -1907,6 +1921,7 @@ module Google
1907
1921
  # Update properties of this object
1908
1922
  def update!(**args)
1909
1923
  @email = args[:email] if args.key?(:email)
1924
+ @scopes = args[:scopes] if args.key?(:scopes)
1910
1925
  end
1911
1926
  end
1912
1927
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module BatchV1
18
18
  # Version of the google-apis-batch_v1 gem
19
- GEM_VERSION = "0.4.0"
19
+ GEM_VERSION = "0.5.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230105"
25
+ REVISION = "20230118"
26
26
  end
27
27
  end
28
28
  end
@@ -617,6 +617,8 @@ module Google
617
617
  class InstanceStatus
618
618
  # @private
619
619
  class Representation < Google::Apis::Core::JsonRepresentation
620
+ property :boot_disk, as: 'bootDisk', class: Google::Apis::BatchV1::Disk, decorator: Google::Apis::BatchV1::Disk::Representation
621
+
620
622
  property :machine_type, as: 'machineType'
621
623
  property :provisioning_model, as: 'provisioningModel'
622
624
  property :task_pack, :numeric_string => true, as: 'taskPack'
@@ -870,6 +872,7 @@ module Google
870
872
  # @private
871
873
  class Representation < Google::Apis::Core::JsonRepresentation
872
874
  property :email, as: 'email'
875
+ collection :scopes, as: 'scopes'
873
876
  end
874
877
  end
875
878
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-batch_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.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: 2023-01-15 00:00:00.000000000 Z
11
+ date: 2023-01-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-batch_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-batch_v1/v0.4.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-batch_v1/v0.5.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-batch_v1
63
63
  post_install_message:
64
64
  rdoc_options: []