google-apis-osconfig_v1beta 0.27.0 → 0.28.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: 219a1ae61abf8e39e57cacb1a7534af2c2bb27132aae9162dc8e23ca95212b78
4
- data.tar.gz: ab22385d4121ded96dc5ad9dfa839ca7c65cdb2a297ec976560cac252c49f922
3
+ metadata.gz: ccc238f9d56d589704381a4615dcefe1fd83694220c1796eea80492a12352a78
4
+ data.tar.gz: 93ec5b57ca3cb95f196fd2e28fdb5682dd2801d641f60112bf292488e1d0b414
5
5
  SHA512:
6
- metadata.gz: 661eb5d7185e46ef11e114de7405ce9eddfb0836d72441d7201a335f1f169253bd06a275135f703618b1f324ea62b1e29b65f3d2cf9bd69d334964b3cf64076e
7
- data.tar.gz: 848283af719f8d9404c1b41dc9f9f5783ee93a91fd42133cfb7fffc7b0afb63e8b52874146f2e98a99593a254f7d7dafb248271f2fc5202d0ad286e930b1cb04
6
+ metadata.gz: 044a0bb9c9931335f327516598d2762ca16407b6a1aeff468a5a64b329c5f00d3f782b0ce8c434eb0b7b273a0b5527d4db5d3e3c32ad1bc8d45508c8fd576fc2
7
+ data.tar.gz: 7d8393ec9d4f13803da3aaded1e0a66b4c9f03c1b9718d2f5cecac0dc2e690677430561110d66dbb61ad01f267bd26d04035201fbeaa667dfeba42406c76c275
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-osconfig_v1beta
2
2
 
3
+ ### v0.28.0 (2025-03-30)
4
+
5
+ * Regenerated from discovery document revision 20250323
6
+ * Regenerated using generator version 0.16.0
7
+
3
8
  ### v0.27.0 (2024-12-08)
4
9
 
5
10
  * Regenerated from discovery document revision 20241201
@@ -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 GoogleCloudOsconfigV2OperationMetadata
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
  # Represents the metadata of the long-running operation.
647
706
  class GoogleCloudOsconfigV2betaOperationMetadata
648
707
  include Google::Apis::Core::Hashable
@@ -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.27.0"
19
+ GEM_VERSION = "0.28.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.1"
22
+ GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241201"
25
+ REVISION = "20250323"
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 GoogleCloudOsconfigV2OperationMetadata
140
+ class Representation < Google::Apis::Core::JsonRepresentation; end
141
+
142
+ include Google::Apis::Core::JsonObjectSupport
143
+ end
144
+
139
145
  class GoogleCloudOsconfigV2betaOperationMetadata
140
146
  class Representation < Google::Apis::Core::JsonRepresentation; end
141
147
 
@@ -579,6 +585,19 @@ module Google
579
585
  end
580
586
  end
581
587
 
588
+ class GoogleCloudOsconfigV2OperationMetadata
589
+ # @private
590
+ class Representation < Google::Apis::Core::JsonRepresentation
591
+ property :api_version, as: 'apiVersion'
592
+ property :create_time, as: 'createTime'
593
+ property :end_time, as: 'endTime'
594
+ property :requested_cancellation, as: 'requestedCancellation'
595
+ property :status_message, as: 'statusMessage'
596
+ property :target, as: 'target'
597
+ property :verb, as: 'verb'
598
+ end
599
+ end
600
+
582
601
  class GoogleCloudOsconfigV2betaOperationMetadata
583
602
  # @private
584
603
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-osconfig_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.27.0
4
+ version: 0.28.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-08 00:00:00.000000000 Z
10
+ date: 2025-03-30 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: google-apis-core
@@ -58,9 +57,8 @@ licenses:
58
57
  metadata:
59
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
59
  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.27.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-osconfig_v1beta/v0.28.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-osconfig_v1beta
63
- post_install_message:
64
62
  rdoc_options: []
65
63
  require_paths:
66
64
  - lib
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
73
  - !ruby/object:Gem::Version
76
74
  version: '0'
77
75
  requirements: []
78
- rubygems_version: 3.5.23
79
- signing_key:
76
+ rubygems_version: 3.6.5
80
77
  specification_version: 4
81
78
  summary: Simple REST client for OS Config API V1beta
82
79
  test_files: []