google-apis-osconfig_v1alpha 0.1.0 → 0.5.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 325411589c3bc9f7f82c40927dee880f5c7626532811dd0c92479128f43e14d2
|
4
|
+
data.tar.gz: 4b780e0b506b6a1585b92c3b4c8352de9067728f3a0095e224cb3b13206795af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1555d635c87eae5f6546f2bf3d2ab55d8e31f82533ad750f6c54586405b59c430af38ff855770f56658925b0c263be258cb28bb5a0c5ab0c25bdc1ca83771b52
|
7
|
+
data.tar.gz: 78408b93751d855e52aa75f60f46e67516da1105722d5c130a82d271c764939bc588695a8e5f550267da17f6490ab4e73ce2d749ba02cc9700523aca31c2fd32
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# Release history for google-apis-osconfig_v1alpha
|
2
2
|
|
3
|
+
### v0.5.0 (2021-08-01)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210723
|
6
|
+
|
7
|
+
### v0.4.0 (2021-06-29)
|
8
|
+
|
9
|
+
* Regenerated using generator version 0.4.0
|
10
|
+
|
11
|
+
### v0.3.0 (2021-06-24)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210614
|
14
|
+
|
15
|
+
### v0.2.0 (2021-06-05)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210527
|
18
|
+
* Regenerated using generator version 0.3.0
|
19
|
+
|
3
20
|
### v0.1.0 (2021-05-27)
|
4
21
|
|
5
22
|
* Regenerated from discovery document revision 20210507
|
@@ -127,6 +127,47 @@ module Google
|
|
127
127
|
end
|
128
128
|
end
|
129
129
|
|
130
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
131
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
132
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
133
|
+
# following: * A full date, with non-zero year, month, and day values * A month
|
134
|
+
# and day value, with a zero year, such as an anniversary * A year on its own,
|
135
|
+
# with zero month and day values * A year and month value, with a zero day, such
|
136
|
+
# as a credit card expiration date Related types are google.type.TimeOfDay and `
|
137
|
+
# google.protobuf.Timestamp`.
|
138
|
+
class Date
|
139
|
+
include Google::Apis::Core::Hashable
|
140
|
+
|
141
|
+
# Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to
|
142
|
+
# specify a year by itself or a year and month where the day isn't significant.
|
143
|
+
# Corresponds to the JSON property `day`
|
144
|
+
# @return [Fixnum]
|
145
|
+
attr_accessor :day
|
146
|
+
|
147
|
+
# Month of a year. Must be from 1 to 12, or 0 to specify a year without a month
|
148
|
+
# and day.
|
149
|
+
# Corresponds to the JSON property `month`
|
150
|
+
# @return [Fixnum]
|
151
|
+
attr_accessor :month
|
152
|
+
|
153
|
+
# Year of the date. Must be from 1 to 9999, or 0 to specify a date without a
|
154
|
+
# year.
|
155
|
+
# Corresponds to the JSON property `year`
|
156
|
+
# @return [Fixnum]
|
157
|
+
attr_accessor :year
|
158
|
+
|
159
|
+
def initialize(**args)
|
160
|
+
update!(**args)
|
161
|
+
end
|
162
|
+
|
163
|
+
# Update properties of this object
|
164
|
+
def update!(**args)
|
165
|
+
@day = args[:day] if args.key?(:day)
|
166
|
+
@month = args[:month] if args.key?(:month)
|
167
|
+
@year = args[:year] if args.key?(:year)
|
168
|
+
end
|
169
|
+
end
|
170
|
+
|
130
171
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
131
172
|
# messages in your APIs. A typical example is to use it as the request or the
|
132
173
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -481,6 +522,14 @@ module Google
|
|
481
522
|
# @return [Google::Apis::OsconfigV1alpha::InventoryWindowsQuickFixEngineeringPackage]
|
482
523
|
attr_accessor :qfe_package
|
483
524
|
|
525
|
+
# Contains information about a Windows application as retrieved from the Windows
|
526
|
+
# Registry. For more information about these fields, see [Windows Installer
|
527
|
+
# Properties for the Uninstall Registry](https://docs.microsoft.com/en-us/
|
528
|
+
# windows/win32/msi/uninstall-registry-key)`: class="external" `
|
529
|
+
# Corresponds to the JSON property `windowsApplication`
|
530
|
+
# @return [Google::Apis::OsconfigV1alpha::InventoryWindowsApplication]
|
531
|
+
attr_accessor :windows_application
|
532
|
+
|
484
533
|
# Details related to a Windows Update package. Field data and names are taken
|
485
534
|
# from Windows Update API IUpdate Interface: https://docs.microsoft.com/en-us/
|
486
535
|
# windows/win32/api/_wua/ Descriptive fields like title, and description are
|
@@ -516,6 +565,7 @@ module Google
|
|
516
565
|
@cos_package = args[:cos_package] if args.key?(:cos_package)
|
517
566
|
@googet_package = args[:googet_package] if args.key?(:googet_package)
|
518
567
|
@qfe_package = args[:qfe_package] if args.key?(:qfe_package)
|
568
|
+
@windows_application = args[:windows_application] if args.key?(:windows_application)
|
519
569
|
@wua_package = args[:wua_package] if args.key?(:wua_package)
|
520
570
|
@yum_package = args[:yum_package] if args.key?(:yum_package)
|
521
571
|
@zypper_package = args[:zypper_package] if args.key?(:zypper_package)
|
@@ -555,6 +605,59 @@ module Google
|
|
555
605
|
end
|
556
606
|
end
|
557
607
|
|
608
|
+
# Contains information about a Windows application as retrieved from the Windows
|
609
|
+
# Registry. For more information about these fields, see [Windows Installer
|
610
|
+
# Properties for the Uninstall Registry](https://docs.microsoft.com/en-us/
|
611
|
+
# windows/win32/msi/uninstall-registry-key)`: class="external" `
|
612
|
+
class InventoryWindowsApplication
|
613
|
+
include Google::Apis::Core::Hashable
|
614
|
+
|
615
|
+
# The name of the application or product.
|
616
|
+
# Corresponds to the JSON property `displayName`
|
617
|
+
# @return [String]
|
618
|
+
attr_accessor :display_name
|
619
|
+
|
620
|
+
# The version of the product or application in string format.
|
621
|
+
# Corresponds to the JSON property `displayVersion`
|
622
|
+
# @return [String]
|
623
|
+
attr_accessor :display_version
|
624
|
+
|
625
|
+
# The internet address for technical support.
|
626
|
+
# Corresponds to the JSON property `helpLink`
|
627
|
+
# @return [String]
|
628
|
+
attr_accessor :help_link
|
629
|
+
|
630
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
631
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
632
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
633
|
+
# following: * A full date, with non-zero year, month, and day values * A month
|
634
|
+
# and day value, with a zero year, such as an anniversary * A year on its own,
|
635
|
+
# with zero month and day values * A year and month value, with a zero day, such
|
636
|
+
# as a credit card expiration date Related types are google.type.TimeOfDay and `
|
637
|
+
# google.protobuf.Timestamp`.
|
638
|
+
# Corresponds to the JSON property `installDate`
|
639
|
+
# @return [Google::Apis::OsconfigV1alpha::Date]
|
640
|
+
attr_accessor :install_date
|
641
|
+
|
642
|
+
# The name of the manufacturer for the product or application.
|
643
|
+
# Corresponds to the JSON property `publisher`
|
644
|
+
# @return [String]
|
645
|
+
attr_accessor :publisher
|
646
|
+
|
647
|
+
def initialize(**args)
|
648
|
+
update!(**args)
|
649
|
+
end
|
650
|
+
|
651
|
+
# Update properties of this object
|
652
|
+
def update!(**args)
|
653
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
654
|
+
@display_version = args[:display_version] if args.key?(:display_version)
|
655
|
+
@help_link = args[:help_link] if args.key?(:help_link)
|
656
|
+
@install_date = args[:install_date] if args.key?(:install_date)
|
657
|
+
@publisher = args[:publisher] if args.key?(:publisher)
|
658
|
+
end
|
659
|
+
end
|
660
|
+
|
558
661
|
# Information related to a Quick Fix Engineering package. Fields are taken from
|
559
662
|
# Windows QuickFixEngineering Interface and match the source names: https://docs.
|
560
663
|
# microsoft.com/en-us/windows/win32/cimwin32prov/win32-quickfixengineering
|
@@ -1322,6 +1425,12 @@ module Google
|
|
1322
1425
|
class OsPolicyResourceConfigStep
|
1323
1426
|
include Google::Apis::Core::Hashable
|
1324
1427
|
|
1428
|
+
# An error message recorded during the execution of this step. Only populated
|
1429
|
+
# when outcome is FAILED.
|
1430
|
+
# Corresponds to the JSON property `errorMessage`
|
1431
|
+
# @return [String]
|
1432
|
+
attr_accessor :error_message
|
1433
|
+
|
1325
1434
|
# Outcome of the configuration step.
|
1326
1435
|
# Corresponds to the JSON property `outcome`
|
1327
1436
|
# @return [String]
|
@@ -1338,6 +1447,7 @@ module Google
|
|
1338
1447
|
|
1339
1448
|
# Update properties of this object
|
1340
1449
|
def update!(**args)
|
1450
|
+
@error_message = args[:error_message] if args.key?(:error_message)
|
1341
1451
|
@outcome = args[:outcome] if args.key?(:outcome)
|
1342
1452
|
@type = args[:type] if args.key?(:type)
|
1343
1453
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module OsconfigV1alpha
|
18
18
|
# Version of the google-apis-osconfig_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.5.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210723"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -34,6 +34,12 @@ module Google
|
|
34
34
|
include Google::Apis::Core::JsonObjectSupport
|
35
35
|
end
|
36
36
|
|
37
|
+
class Date
|
38
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
|
+
|
40
|
+
include Google::Apis::Core::JsonObjectSupport
|
41
|
+
end
|
42
|
+
|
37
43
|
class Empty
|
38
44
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
45
|
|
@@ -88,6 +94,12 @@ module Google
|
|
88
94
|
include Google::Apis::Core::JsonObjectSupport
|
89
95
|
end
|
90
96
|
|
97
|
+
class InventoryWindowsApplication
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
+
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
101
|
+
end
|
102
|
+
|
91
103
|
class InventoryWindowsQuickFixEngineeringPackage
|
92
104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
105
|
|
@@ -387,6 +399,15 @@ module Google
|
|
387
399
|
end
|
388
400
|
end
|
389
401
|
|
402
|
+
class Date
|
403
|
+
# @private
|
404
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
405
|
+
property :day, as: 'day'
|
406
|
+
property :month, as: 'month'
|
407
|
+
property :year, as: 'year'
|
408
|
+
end
|
409
|
+
end
|
410
|
+
|
390
411
|
class Empty
|
391
412
|
# @private
|
392
413
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -479,6 +500,8 @@ module Google
|
|
479
500
|
|
480
501
|
property :qfe_package, as: 'qfePackage', class: Google::Apis::OsconfigV1alpha::InventoryWindowsQuickFixEngineeringPackage, decorator: Google::Apis::OsconfigV1alpha::InventoryWindowsQuickFixEngineeringPackage::Representation
|
481
502
|
|
503
|
+
property :windows_application, as: 'windowsApplication', class: Google::Apis::OsconfigV1alpha::InventoryWindowsApplication, decorator: Google::Apis::OsconfigV1alpha::InventoryWindowsApplication::Representation
|
504
|
+
|
482
505
|
property :wua_package, as: 'wuaPackage', class: Google::Apis::OsconfigV1alpha::InventoryWindowsUpdatePackage, decorator: Google::Apis::OsconfigV1alpha::InventoryWindowsUpdatePackage::Representation
|
483
506
|
|
484
507
|
property :yum_package, as: 'yumPackage', class: Google::Apis::OsconfigV1alpha::InventoryVersionedPackage, decorator: Google::Apis::OsconfigV1alpha::InventoryVersionedPackage::Representation
|
@@ -499,6 +522,18 @@ module Google
|
|
499
522
|
end
|
500
523
|
end
|
501
524
|
|
525
|
+
class InventoryWindowsApplication
|
526
|
+
# @private
|
527
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
528
|
+
property :display_name, as: 'displayName'
|
529
|
+
property :display_version, as: 'displayVersion'
|
530
|
+
property :help_link, as: 'helpLink'
|
531
|
+
property :install_date, as: 'installDate', class: Google::Apis::OsconfigV1alpha::Date, decorator: Google::Apis::OsconfigV1alpha::Date::Representation
|
532
|
+
|
533
|
+
property :publisher, as: 'publisher'
|
534
|
+
end
|
535
|
+
end
|
536
|
+
|
502
537
|
class InventoryWindowsQuickFixEngineeringPackage
|
503
538
|
# @private
|
504
539
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -705,6 +740,7 @@ module Google
|
|
705
740
|
class OsPolicyResourceConfigStep
|
706
741
|
# @private
|
707
742
|
class Representation < Google::Apis::Core::JsonRepresentation
|
743
|
+
property :error_message, as: 'errorMessage'
|
708
744
|
property :outcome, as: 'outcome'
|
709
745
|
property :type, as: 'type'
|
710
746
|
end
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-osconfig_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 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: 2021-
|
11
|
+
date: 2021-08-02 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.
|
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:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for OS Config API V1alpha. 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_v1alpha/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-osconfig_v1alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-osconfig_v1alpha/v0.5.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-osconfig_v1alpha
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|