google-apis-osconfig_v1beta 0.3.0 → 0.8.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: 3bf4d9751f9b78a691afcc7e90f0d3aa2017face2315e317d69b1942757010e5
4
- data.tar.gz: 4642c52f0f256507e1a70953d13f62bce2ab043b738fe9bc30268d84cf2cc5f4
3
+ metadata.gz: b9e0b46e4913d3234362ff66a7c86234b6d04aa7a28396f9893ce76adca0b53e
4
+ data.tar.gz: 17e1d160272f52f821f1a3a10a715b01f0ff7165ad18e84abc9cf17e9c897e09
5
5
  SHA512:
6
- metadata.gz: ab64e34bd5daf4f390e6b3d837d54391f642e6ecdd7c0ce48104bba0246016568aa6055ab1707e7a1d0e04d239c38cd90b59d18ac985277fd19675ee67e83f70
7
- data.tar.gz: 6e13cd7e49a3763c94640913018946029ccbc9d539da555970e1bfd89f29a34c74c83a7f3358487d67430f88287c3dff1d06556f9bb60f01af342c3150962ef7
6
+ metadata.gz: dfab8f21fd4c638c06a639feaae9af6cd53ddd8466900ea2d0684e1126d0c7cd5a7d6dbccc5b982ac3e1206709d54f487fe4ca30f5f76c593aacfeaed002be61
7
+ data.tar.gz: cefc4364b4cc5480b4b3b4276bf9db2dae85bece5dc301b351c64716307290392abe2e5a457e6098b7ca9600c15805a2490011ff6bf5382baef837599f45b980
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-osconfig_v1beta
2
2
 
3
+ ### v0.8.0 (2021-06-29)
4
+
5
+ * Regenerated using generator version 0.4.0
6
+
7
+ ### v0.7.0 (2021-06-24)
8
+
9
+ * Regenerated using generator version 0.3.0
10
+
11
+ ### v0.6.0 (2021-05-19)
12
+
13
+ * Unspecified changes
14
+
15
+ ### v0.5.0 (2021-05-01)
16
+
17
+ * Regenerated from discovery document revision 20210427
18
+
19
+ ### v0.4.0 (2021-03-28)
20
+
21
+ * Regenerated from discovery document revision 20210322
22
+ * Regenerated using generator version 0.2.0
23
+
3
24
  ### v0.3.0 (2021-03-04)
4
25
 
5
26
  * Unspecified changes
data/OVERVIEW.md CHANGED
@@ -79,7 +79,7 @@ Gem names for modern clients are often of the form `google-cloud-<service_name>`
79
79
 
80
80
  **For most users, we recommend the modern client, if one is available.** Compared with simple clients, modern clients are generally much easier to use and more Ruby-like, support more advanced features such as streaming and long-running operations, and often provide much better performance. You may consider using a simple client instead, if a modern client is not yet available for the service you want to use, or if you are not able to use gRPC on your infrastructure.
81
81
 
82
- The [product documentation](https://cloud.google.com/compute/docs/manage-os) may provide guidance regarding the preferred client library to use.
82
+ The [product documentation](https://cloud.google.com/compute/docs/osconfig/rest) may provide guidance regarding the preferred client library to use.
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
@@ -24,13 +24,13 @@ module Google
24
24
  # OS management tools that can be used for patch management, patch compliance,
25
25
  # and configuration management on VM instances.
26
26
  #
27
- # @see https://cloud.google.com/compute/docs/manage-os
27
+ # @see https://cloud.google.com/compute/docs/osconfig/rest
28
28
  module OsconfigV1beta
29
29
  # Version of the OS Config API this client connects to.
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V1beta'
32
32
 
33
- # View and manage your data across Google Cloud Platform services
33
+ # See, edit, configure, and delete your Google Cloud Platform data
34
34
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
35
35
  end
36
36
  end
@@ -842,6 +842,52 @@ module Google
842
842
  end
843
843
  end
844
844
 
845
+ # OS policy assignment operation metadata provided by OS policy assignment API
846
+ # methods that return long running operations.
847
+ class OsPolicyAssignmentOperationMetadata
848
+ include Google::Apis::Core::Hashable
849
+
850
+ # The OS policy assignment API method.
851
+ # Corresponds to the JSON property `apiMethod`
852
+ # @return [String]
853
+ attr_accessor :api_method
854
+
855
+ # Reference to the `OSPolicyAssignment` API resource. Format: `projects/`
856
+ # project_number`/locations/`location`/osPolicyAssignments/`
857
+ # os_policy_assignment_id@revision_id``
858
+ # Corresponds to the JSON property `osPolicyAssignment`
859
+ # @return [String]
860
+ attr_accessor :os_policy_assignment
861
+
862
+ # Rollout start time
863
+ # Corresponds to the JSON property `rolloutStartTime`
864
+ # @return [String]
865
+ attr_accessor :rollout_start_time
866
+
867
+ # State of the rollout
868
+ # Corresponds to the JSON property `rolloutState`
869
+ # @return [String]
870
+ attr_accessor :rollout_state
871
+
872
+ # Rollout update time
873
+ # Corresponds to the JSON property `rolloutUpdateTime`
874
+ # @return [String]
875
+ attr_accessor :rollout_update_time
876
+
877
+ def initialize(**args)
878
+ update!(**args)
879
+ end
880
+
881
+ # Update properties of this object
882
+ def update!(**args)
883
+ @api_method = args[:api_method] if args.key?(:api_method)
884
+ @os_policy_assignment = args[:os_policy_assignment] if args.key?(:os_policy_assignment)
885
+ @rollout_start_time = args[:rollout_start_time] if args.key?(:rollout_start_time)
886
+ @rollout_state = args[:rollout_state] if args.key?(:rollout_state)
887
+ @rollout_update_time = args[:rollout_update_time] if args.key?(:rollout_update_time)
888
+ end
889
+ end
890
+
845
891
  # Sets the time for a one time patch deployment. Timestamp is in [RFC3339](https:
846
892
  # //www.ietf.org/rfc/rfc3339.txt) text format.
847
893
  class OneTimeSchedule
@@ -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.3.0"
19
+ GEM_VERSION = "0.8.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.2"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210122"
25
+ REVISION = "20210427"
26
26
  end
27
27
  end
28
28
  end
@@ -172,6 +172,12 @@ module Google
172
172
  include Google::Apis::Core::JsonObjectSupport
173
173
  end
174
174
 
175
+ class OsPolicyAssignmentOperationMetadata
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
175
181
  class OneTimeSchedule
176
182
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
183
 
@@ -611,6 +617,17 @@ module Google
611
617
  end
612
618
  end
613
619
 
620
+ class OsPolicyAssignmentOperationMetadata
621
+ # @private
622
+ class Representation < Google::Apis::Core::JsonRepresentation
623
+ property :api_method, as: 'apiMethod'
624
+ property :os_policy_assignment, as: 'osPolicyAssignment'
625
+ property :rollout_start_time, as: 'rolloutStartTime'
626
+ property :rollout_state, as: 'rolloutState'
627
+ property :rollout_update_time, as: 'rolloutUpdateTime'
628
+ end
629
+ end
630
+
614
631
  class OneTimeSchedule
615
632
  # @private
616
633
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -31,7 +31,7 @@ module Google
31
31
  # Osconfig = Google::Apis::OsconfigV1beta # Alias the module
32
32
  # service = Osconfig::OSConfigService.new
33
33
  #
34
- # @see https://cloud.google.com/compute/docs/manage-os
34
+ # @see https://cloud.google.com/compute/docs/osconfig/rest
35
35
  class OSConfigService < Google::Apis::Core::BaseService
36
36
  # @return [String]
37
37
  # API key. Your API key identifies your project and provides you with API access,
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-osconfig_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.8.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-03-08 00:00:00.000000000 Z
11
+ date: 2021-07-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.1'
19
+ version: '0.4'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 2.a
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '0.4'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: '0.1'
32
+ version: 2.a
27
33
  description: This is the simple REST client for OS Config API V1beta. Simple REST
28
34
  clients are Ruby client libraries that provide access to Google services via their
29
35
  HTTP REST API endpoints. These libraries are generated and updated automatically
@@ -52,7 +58,7 @@ licenses:
52
58
  metadata:
53
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-osconfig_v1beta/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-osconfig_v1beta/v0.3.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-osconfig_v1beta/v0.8.0
56
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-osconfig_v1beta
57
63
  post_install_message:
58
64
  rdoc_options: []
@@ -69,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
75
  - !ruby/object:Gem::Version
70
76
  version: '0'
71
77
  requirements: []
72
- rubygems_version: 3.2.13
78
+ rubygems_version: 3.2.17
73
79
  signing_key:
74
80
  specification_version: 4
75
81
  summary: Simple REST client for OS Config API V1beta