google-apis-osconfig_v1beta 0.24.0 → 0.26.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: 3002f972a55c10a054e51b217f6ba2cd48e117e6a0ba62ec0066666d5a766e85
4
- data.tar.gz: 260f261f6dd27a200ba8f4ebaf8295aae6ef4dc50ec3e658384a16ae0aef0032
3
+ metadata.gz: de4c9cc2bcb8f0d2336d9e741ccf3921b5c44043273a9381e4c4d9831b229af3
4
+ data.tar.gz: 301abc7754358ba57acd679b595d0e7b311f4db5a6eb354f6ecfd48118382ced
5
5
  SHA512:
6
- metadata.gz: b592f438c19628b5b37033703b194ff7287e56115e6757642515f6b2dc5b504ea0b42d94b0ab2af5f3122c785d952006d41ac0e12cfb29eed2c866d0ba8280c3
7
- data.tar.gz: 71cc83e6b560ae1c9ce6dd9b5ecc93c8de6a98de6c7cc995ec03721785683544bacc17654844ba9c1240487ffd5b4d8d0c152593a7e8c065c8501ddada3292bd
6
+ metadata.gz: 710babf13fd522381ffa0e7254e9d54477e6a9e0c66ba9f8e5273bc5eecece29b43e7bdf293a34893c07409a02fd2ac033ef54cb92577ee1503979523bd74cab
7
+ data.tar.gz: 1d6fc4d4348d3a711c7743a4a68fcb61759313cf06a6840131b62fe407f156e2670905db4ec1011dae7180554d2436e5f1ed4b096647a6f6a2043f39413e3db9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-osconfig_v1beta
2
2
 
3
+ ### v0.26.0 (2024-12-02)
4
+
5
+ * Regenerated from discovery document revision 20241126
6
+ * Regenerated using generator version 0.15.1
7
+
8
+ ### v0.25.0 (2024-05-19)
9
+
10
+ * Regenerated using generator version 0.15.0
11
+
3
12
  ### v0.24.0 (2024-02-24)
4
13
 
5
14
  * Regenerated using generator version 0.14.0
@@ -643,6 +643,65 @@ module Google
643
643
  end
644
644
  end
645
645
 
646
+ # Represents the metadata of the long-running operation.
647
+ class GoogleCloudOsconfigV2betaOperationMetadata
648
+ include Google::Apis::Core::Hashable
649
+
650
+ # Output only. API version used to start the operation.
651
+ # Corresponds to the JSON property `apiVersion`
652
+ # @return [String]
653
+ attr_accessor :api_version
654
+
655
+ # Output only. The time the operation was created.
656
+ # Corresponds to the JSON property `createTime`
657
+ # @return [String]
658
+ attr_accessor :create_time
659
+
660
+ # Output only. The time the operation finished running.
661
+ # Corresponds to the JSON property `endTime`
662
+ # @return [String]
663
+ attr_accessor :end_time
664
+
665
+ # Output only. Identifies whether the user has requested cancellation of the
666
+ # operation. Operations that have been cancelled successfully have Operation.
667
+ # error value with a google.rpc.Status.code of 1, corresponding to `Code.
668
+ # CANCELLED`.
669
+ # Corresponds to the JSON property `requestedCancellation`
670
+ # @return [Boolean]
671
+ attr_accessor :requested_cancellation
672
+ alias_method :requested_cancellation?, :requested_cancellation
673
+
674
+ # Output only. Human-readable status of the operation, if any.
675
+ # Corresponds to the JSON property `statusMessage`
676
+ # @return [String]
677
+ attr_accessor :status_message
678
+
679
+ # Output only. Server-defined resource path for the target of the operation.
680
+ # Corresponds to the JSON property `target`
681
+ # @return [String]
682
+ attr_accessor :target
683
+
684
+ # Output only. Name of the verb executed by the operation.
685
+ # Corresponds to the JSON property `verb`
686
+ # @return [String]
687
+ attr_accessor :verb
688
+
689
+ def initialize(**args)
690
+ update!(**args)
691
+ end
692
+
693
+ # Update properties of this object
694
+ def update!(**args)
695
+ @api_version = args[:api_version] if args.key?(:api_version)
696
+ @create_time = args[:create_time] if args.key?(:create_time)
697
+ @end_time = args[:end_time] if args.key?(:end_time)
698
+ @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
699
+ @status_message = args[:status_message] if args.key?(:status_message)
700
+ @target = args[:target] if args.key?(:target)
701
+ @verb = args[:verb] if args.key?(:verb)
702
+ end
703
+ end
704
+
646
705
  # An OS Config resource representing a guest configuration policy. These
647
706
  # policies represent the desired state for VM instance guest environments
648
707
  # including packages to install or remove, package repository configurations,
@@ -2157,24 +2216,28 @@ module Google
2157
2216
  class TimeOfDay
2158
2217
  include Google::Apis::Core::Hashable
2159
2218
 
2160
- # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to
2161
- # allow the value "24:00:00" for scenarios like business closing time.
2219
+ # Hours of a day in 24 hour format. Must be greater than or equal to 0 and
2220
+ # typically must be less than or equal to 23. An API may choose to allow the
2221
+ # value "24:00:00" for scenarios like business closing time.
2162
2222
  # Corresponds to the JSON property `hours`
2163
2223
  # @return [Fixnum]
2164
2224
  attr_accessor :hours
2165
2225
 
2166
- # Minutes of hour of day. Must be from 0 to 59.
2226
+ # Minutes of an hour. Must be greater than or equal to 0 and less than or equal
2227
+ # to 59.
2167
2228
  # Corresponds to the JSON property `minutes`
2168
2229
  # @return [Fixnum]
2169
2230
  attr_accessor :minutes
2170
2231
 
2171
- # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
2232
+ # Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and
2233
+ # less than or equal to 999,999,999.
2172
2234
  # Corresponds to the JSON property `nanos`
2173
2235
  # @return [Fixnum]
2174
2236
  attr_accessor :nanos
2175
2237
 
2176
- # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
2177
- # allow the value 60 if it allows leap-seconds.
2238
+ # Seconds of a minute. Must be greater than or equal to 0 and typically must be
2239
+ # less than or equal to 59. An API may allow the value 60 if it allows leap-
2240
+ # seconds.
2178
2241
  # Corresponds to the JSON property `seconds`
2179
2242
  # @return [Fixnum]
2180
2243
  attr_accessor :seconds
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module OsconfigV1beta
18
18
  # Version of the google-apis-osconfig_v1beta gem
19
- GEM_VERSION = "0.24.0"
19
+ GEM_VERSION = "0.26.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220319"
25
+ REVISION = "20241126"
26
26
  end
27
27
  end
28
28
  end
@@ -136,6 +136,12 @@ module Google
136
136
  include Google::Apis::Core::JsonObjectSupport
137
137
  end
138
138
 
139
+ class GoogleCloudOsconfigV2betaOperationMetadata
140
+ class Representation < Google::Apis::Core::JsonRepresentation; end
141
+
142
+ include Google::Apis::Core::JsonObjectSupport
143
+ end
144
+
139
145
  class GuestPolicy
140
146
  class Representation < Google::Apis::Core::JsonRepresentation; end
141
147
 
@@ -573,6 +579,19 @@ module Google
573
579
  end
574
580
  end
575
581
 
582
+ class GoogleCloudOsconfigV2betaOperationMetadata
583
+ # @private
584
+ class Representation < Google::Apis::Core::JsonRepresentation
585
+ property :api_version, as: 'apiVersion'
586
+ property :create_time, as: 'createTime'
587
+ property :end_time, as: 'endTime'
588
+ property :requested_cancellation, as: 'requestedCancellation'
589
+ property :status_message, as: 'statusMessage'
590
+ property :target, as: 'target'
591
+ property :verb, as: 'verb'
592
+ end
593
+ end
594
+
576
595
  class GuestPolicy
577
596
  # @private
578
597
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-osconfig_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.0
4
+ version: 0.26.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: 2024-02-25 00:00:00.000000000 Z
11
+ date: 2024-12-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.14.0
19
+ version: 0.15.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.14.0
29
+ version: 0.15.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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-osconfig_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-osconfig_v1beta/v0.24.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-osconfig_v1beta/v0.26.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-osconfig_v1beta
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.6
78
+ rubygems_version: 3.5.22
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for OS Config API V1beta