google-apis-osconfig_v1 0.13.0 → 0.14.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: 951dc433eff753b3f1365301eb2afc73f3ea4a9b93b4e08173948c6584fe6cc1
4
- data.tar.gz: 2462a37ada5f865a6988d37d3df83c3618bbd133873addfc8e385a8db9c356c1
3
+ metadata.gz: 7497c91738aa723c2f799e838f8fd1e8f7cbfc5f3ca0dd15edf6b482867c41a5
4
+ data.tar.gz: 7b92623e314506172adf46b00806e7ff3438a9bc25d243621a3924f27944660f
5
5
  SHA512:
6
- metadata.gz: bffd5986c495330b181e243667d2b88f31c2edb3bdef721e8789c3d4975f1b44f1530b0090f1c5a4cfed00b9b865a97026d2fa304155ae6225205d9dc6fe518a
7
- data.tar.gz: 1f9bafef3bc9b0cadbc9b515517dcc85a5b867bc5bbb12abbccd52bc9c38ebad316ad872f45d97f754154efcfce17e16ac779e1b0e31e3c77dbd8bbeb841fda4
6
+ metadata.gz: edb5c16dc0eaaf39c64565cc2e3e9af9942db70f9eaa216825d585173f594036808335465bf7245c39a6e62a97c9525b8e6a7e7d799b70c5ae107424b25ed0a2
7
+ data.tar.gz: 70e13cfde599c18e1d00605039a5f0305aaecdf51b7198a0d8f1df14803108bd4e94ee1973979541383d2873749eec60bf23868508250d48192ad1ac65320a16
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-osconfig_v1
2
2
 
3
+ ### v0.14.0 (2021-11-06)
4
+
5
+ * Regenerated from discovery document revision 20211029
6
+
3
7
  ### v0.13.0 (2021-10-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20211018
@@ -432,6 +432,52 @@ module Google
432
432
  end
433
433
  end
434
434
 
435
+ # OS policy assignment operation metadata provided by OS policy assignment API
436
+ # methods that return long running operations.
437
+ class GoogleCloudOsconfigV1OsPolicyAssignmentOperationMetadata
438
+ include Google::Apis::Core::Hashable
439
+
440
+ # The OS policy assignment API method.
441
+ # Corresponds to the JSON property `apiMethod`
442
+ # @return [String]
443
+ attr_accessor :api_method
444
+
445
+ # Reference to the `OSPolicyAssignment` API resource. Format: `projects/`
446
+ # project_number`/locations/`location`/osPolicyAssignments/`
447
+ # os_policy_assignment_id@revision_id``
448
+ # Corresponds to the JSON property `osPolicyAssignment`
449
+ # @return [String]
450
+ attr_accessor :os_policy_assignment
451
+
452
+ # Rollout start time
453
+ # Corresponds to the JSON property `rolloutStartTime`
454
+ # @return [String]
455
+ attr_accessor :rollout_start_time
456
+
457
+ # State of the rollout
458
+ # Corresponds to the JSON property `rolloutState`
459
+ # @return [String]
460
+ attr_accessor :rollout_state
461
+
462
+ # Rollout update time
463
+ # Corresponds to the JSON property `rolloutUpdateTime`
464
+ # @return [String]
465
+ attr_accessor :rollout_update_time
466
+
467
+ def initialize(**args)
468
+ update!(**args)
469
+ end
470
+
471
+ # Update properties of this object
472
+ def update!(**args)
473
+ @api_method = args[:api_method] if args.key?(:api_method)
474
+ @os_policy_assignment = args[:os_policy_assignment] if args.key?(:os_policy_assignment)
475
+ @rollout_start_time = args[:rollout_start_time] if args.key?(:rollout_start_time)
476
+ @rollout_state = args[:rollout_state] if args.key?(:rollout_state)
477
+ @rollout_update_time = args[:rollout_update_time] if args.key?(:rollout_update_time)
478
+ end
479
+ end
480
+
435
481
  # This API resource represents the available inventory data for a Compute Engine
436
482
  # virtual machine (VM) instance at a given point in time. You can use this API
437
483
  # resource to determine the inventory data of your VM. For more information, see
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module OsconfigV1
18
18
  # Version of the google-apis-osconfig_v1 gem
19
- GEM_VERSION = "0.13.0"
19
+ GEM_VERSION = "0.14.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211018"
25
+ REVISION = "20211029"
26
26
  end
27
27
  end
28
28
  end
@@ -94,6 +94,12 @@ module Google
94
94
  include Google::Apis::Core::JsonObjectSupport
95
95
  end
96
96
 
97
+ class GoogleCloudOsconfigV1OsPolicyAssignmentOperationMetadata
98
+ class Representation < Google::Apis::Core::JsonRepresentation; end
99
+
100
+ include Google::Apis::Core::JsonObjectSupport
101
+ end
102
+
97
103
  class Inventory
98
104
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
105
 
@@ -663,6 +669,17 @@ module Google
663
669
  end
664
670
  end
665
671
 
672
+ class GoogleCloudOsconfigV1OsPolicyAssignmentOperationMetadata
673
+ # @private
674
+ class Representation < Google::Apis::Core::JsonRepresentation
675
+ property :api_method, as: 'apiMethod'
676
+ property :os_policy_assignment, as: 'osPolicyAssignment'
677
+ property :rollout_start_time, as: 'rolloutStartTime'
678
+ property :rollout_state, as: 'rolloutState'
679
+ property :rollout_update_time, as: 'rolloutUpdateTime'
680
+ end
681
+ end
682
+
666
683
  class Inventory
667
684
  # @private
668
685
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-osconfig_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.14.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-10-27 00:00:00.000000000 Z
11
+ date: 2021-11-08 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-osconfig_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-osconfig_v1/v0.13.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-osconfig_v1/v0.14.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-osconfig_v1
63
63
  post_install_message:
64
64
  rdoc_options: []