google-cloud-os_config-v1 1.0.1 → 1.2.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.
@@ -30,7 +30,8 @@ module Google
30
30
  # including transcoding, making the REST call, and deserialing the response.
31
31
  #
32
32
  class ServiceStub
33
- def initialize endpoint:, endpoint_template:, universe_domain:, credentials:
33
+ # @private
34
+ def initialize endpoint:, endpoint_template:, universe_domain:, credentials:, logger:
34
35
  # These require statements are intentionally placed here to initialize
35
36
  # the REST modules only when it's required.
36
37
  require "gapic/rest"
@@ -40,7 +41,9 @@ module Google
40
41
  universe_domain: universe_domain,
41
42
  credentials: credentials,
42
43
  numeric_enums: true,
43
- raise_faraday_errors: false
44
+ service_name: self.class,
45
+ raise_faraday_errors: false,
46
+ logger: logger
44
47
  end
45
48
 
46
49
  ##
@@ -61,6 +64,15 @@ module Google
61
64
  @client_stub.endpoint
62
65
  end
63
66
 
67
+ ##
68
+ # The logger used for request/response debug logging.
69
+ #
70
+ # @return [Logger]
71
+ #
72
+ def logger stub: false
73
+ stub ? @client_stub.stub_logger : @client_stub.logger
74
+ end
75
+
64
76
  ##
65
77
  # Baseline implementation for the create_os_policy_assignment REST call
66
78
  #
@@ -87,16 +99,18 @@ module Google
87
99
 
88
100
  response = @client_stub.make_http_request(
89
101
  verb,
90
- uri: uri,
91
- body: body || "",
92
- params: query_string_params,
102
+ uri: uri,
103
+ body: body || "",
104
+ params: query_string_params,
105
+ method_name: "create_os_policy_assignment",
93
106
  options: options
94
107
  )
95
108
  operation = ::Gapic::Rest::TransportOperation.new response
96
109
  result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
97
-
98
- yield result, operation if block_given?
99
- result
110
+ catch :response do
111
+ yield result, operation if block_given?
112
+ result
113
+ end
100
114
  end
101
115
 
102
116
  ##
@@ -125,16 +139,18 @@ module Google
125
139
 
126
140
  response = @client_stub.make_http_request(
127
141
  verb,
128
- uri: uri,
129
- body: body || "",
130
- params: query_string_params,
142
+ uri: uri,
143
+ body: body || "",
144
+ params: query_string_params,
145
+ method_name: "update_os_policy_assignment",
131
146
  options: options
132
147
  )
133
148
  operation = ::Gapic::Rest::TransportOperation.new response
134
149
  result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
135
-
136
- yield result, operation if block_given?
137
- result
150
+ catch :response do
151
+ yield result, operation if block_given?
152
+ result
153
+ end
138
154
  end
139
155
 
140
156
  ##
@@ -163,16 +179,18 @@ module Google
163
179
 
164
180
  response = @client_stub.make_http_request(
165
181
  verb,
166
- uri: uri,
167
- body: body || "",
168
- params: query_string_params,
182
+ uri: uri,
183
+ body: body || "",
184
+ params: query_string_params,
185
+ method_name: "get_os_policy_assignment",
169
186
  options: options
170
187
  )
171
188
  operation = ::Gapic::Rest::TransportOperation.new response
172
189
  result = ::Google::Cloud::OsConfig::V1::OSPolicyAssignment.decode_json response.body, ignore_unknown_fields: true
173
-
174
- yield result, operation if block_given?
175
- result
190
+ catch :response do
191
+ yield result, operation if block_given?
192
+ result
193
+ end
176
194
  end
177
195
 
178
196
  ##
@@ -201,16 +219,18 @@ module Google
201
219
 
202
220
  response = @client_stub.make_http_request(
203
221
  verb,
204
- uri: uri,
205
- body: body || "",
206
- params: query_string_params,
222
+ uri: uri,
223
+ body: body || "",
224
+ params: query_string_params,
225
+ method_name: "list_os_policy_assignments",
207
226
  options: options
208
227
  )
209
228
  operation = ::Gapic::Rest::TransportOperation.new response
210
229
  result = ::Google::Cloud::OsConfig::V1::ListOSPolicyAssignmentsResponse.decode_json response.body, ignore_unknown_fields: true
211
-
212
- yield result, operation if block_given?
213
- result
230
+ catch :response do
231
+ yield result, operation if block_given?
232
+ result
233
+ end
214
234
  end
215
235
 
216
236
  ##
@@ -239,16 +259,18 @@ module Google
239
259
 
240
260
  response = @client_stub.make_http_request(
241
261
  verb,
242
- uri: uri,
243
- body: body || "",
244
- params: query_string_params,
262
+ uri: uri,
263
+ body: body || "",
264
+ params: query_string_params,
265
+ method_name: "list_os_policy_assignment_revisions",
245
266
  options: options
246
267
  )
247
268
  operation = ::Gapic::Rest::TransportOperation.new response
248
269
  result = ::Google::Cloud::OsConfig::V1::ListOSPolicyAssignmentRevisionsResponse.decode_json response.body, ignore_unknown_fields: true
249
-
250
- yield result, operation if block_given?
251
- result
270
+ catch :response do
271
+ yield result, operation if block_given?
272
+ result
273
+ end
252
274
  end
253
275
 
254
276
  ##
@@ -277,16 +299,18 @@ module Google
277
299
 
278
300
  response = @client_stub.make_http_request(
279
301
  verb,
280
- uri: uri,
281
- body: body || "",
282
- params: query_string_params,
302
+ uri: uri,
303
+ body: body || "",
304
+ params: query_string_params,
305
+ method_name: "delete_os_policy_assignment",
283
306
  options: options
284
307
  )
285
308
  operation = ::Gapic::Rest::TransportOperation.new response
286
309
  result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true
287
-
288
- yield result, operation if block_given?
289
- result
310
+ catch :response do
311
+ yield result, operation if block_given?
312
+ result
313
+ end
290
314
  end
291
315
 
292
316
  ##
@@ -315,16 +339,18 @@ module Google
315
339
 
316
340
  response = @client_stub.make_http_request(
317
341
  verb,
318
- uri: uri,
319
- body: body || "",
320
- params: query_string_params,
342
+ uri: uri,
343
+ body: body || "",
344
+ params: query_string_params,
345
+ method_name: "get_os_policy_assignment_report",
321
346
  options: options
322
347
  )
323
348
  operation = ::Gapic::Rest::TransportOperation.new response
324
349
  result = ::Google::Cloud::OsConfig::V1::OSPolicyAssignmentReport.decode_json response.body, ignore_unknown_fields: true
325
-
326
- yield result, operation if block_given?
327
- result
350
+ catch :response do
351
+ yield result, operation if block_given?
352
+ result
353
+ end
328
354
  end
329
355
 
330
356
  ##
@@ -353,16 +379,18 @@ module Google
353
379
 
354
380
  response = @client_stub.make_http_request(
355
381
  verb,
356
- uri: uri,
357
- body: body || "",
358
- params: query_string_params,
382
+ uri: uri,
383
+ body: body || "",
384
+ params: query_string_params,
385
+ method_name: "list_os_policy_assignment_reports",
359
386
  options: options
360
387
  )
361
388
  operation = ::Gapic::Rest::TransportOperation.new response
362
389
  result = ::Google::Cloud::OsConfig::V1::ListOSPolicyAssignmentReportsResponse.decode_json response.body, ignore_unknown_fields: true
363
-
364
- yield result, operation if block_given?
365
- result
390
+ catch :response do
391
+ yield result, operation if block_given?
392
+ result
393
+ end
366
394
  end
367
395
 
368
396
  ##
@@ -391,16 +419,18 @@ module Google
391
419
 
392
420
  response = @client_stub.make_http_request(
393
421
  verb,
394
- uri: uri,
395
- body: body || "",
396
- params: query_string_params,
422
+ uri: uri,
423
+ body: body || "",
424
+ params: query_string_params,
425
+ method_name: "get_inventory",
397
426
  options: options
398
427
  )
399
428
  operation = ::Gapic::Rest::TransportOperation.new response
400
429
  result = ::Google::Cloud::OsConfig::V1::Inventory.decode_json response.body, ignore_unknown_fields: true
401
-
402
- yield result, operation if block_given?
403
- result
430
+ catch :response do
431
+ yield result, operation if block_given?
432
+ result
433
+ end
404
434
  end
405
435
 
406
436
  ##
@@ -429,16 +459,18 @@ module Google
429
459
 
430
460
  response = @client_stub.make_http_request(
431
461
  verb,
432
- uri: uri,
433
- body: body || "",
434
- params: query_string_params,
462
+ uri: uri,
463
+ body: body || "",
464
+ params: query_string_params,
465
+ method_name: "list_inventories",
435
466
  options: options
436
467
  )
437
468
  operation = ::Gapic::Rest::TransportOperation.new response
438
469
  result = ::Google::Cloud::OsConfig::V1::ListInventoriesResponse.decode_json response.body, ignore_unknown_fields: true
439
-
440
- yield result, operation if block_given?
441
- result
470
+ catch :response do
471
+ yield result, operation if block_given?
472
+ result
473
+ end
442
474
  end
443
475
 
444
476
  ##
@@ -467,16 +499,18 @@ module Google
467
499
 
468
500
  response = @client_stub.make_http_request(
469
501
  verb,
470
- uri: uri,
471
- body: body || "",
472
- params: query_string_params,
502
+ uri: uri,
503
+ body: body || "",
504
+ params: query_string_params,
505
+ method_name: "get_vulnerability_report",
473
506
  options: options
474
507
  )
475
508
  operation = ::Gapic::Rest::TransportOperation.new response
476
509
  result = ::Google::Cloud::OsConfig::V1::VulnerabilityReport.decode_json response.body, ignore_unknown_fields: true
477
-
478
- yield result, operation if block_given?
479
- result
510
+ catch :response do
511
+ yield result, operation if block_given?
512
+ result
513
+ end
480
514
  end
481
515
 
482
516
  ##
@@ -505,16 +539,18 @@ module Google
505
539
 
506
540
  response = @client_stub.make_http_request(
507
541
  verb,
508
- uri: uri,
509
- body: body || "",
510
- params: query_string_params,
542
+ uri: uri,
543
+ body: body || "",
544
+ params: query_string_params,
545
+ method_name: "list_vulnerability_reports",
511
546
  options: options
512
547
  )
513
548
  operation = ::Gapic::Rest::TransportOperation.new response
514
549
  result = ::Google::Cloud::OsConfig::V1::ListVulnerabilityReportsResponse.decode_json response.body, ignore_unknown_fields: true
515
-
516
- yield result, operation if block_given?
517
- result
550
+ catch :response do
551
+ yield result, operation if block_given?
552
+ result
553
+ end
518
554
  end
519
555
 
520
556
  ##
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module OsConfig
23
23
  module V1
24
- VERSION = "1.0.1"
24
+ VERSION = "1.2.0"
25
25
  end
26
26
  end
27
27
  end
@@ -28,6 +28,9 @@ module Google
28
28
  # @!attribute [rw] destinations
29
29
  # @return [::Array<::Google::Api::ClientLibraryDestination>]
30
30
  # The destination where API teams want this client library to be published.
31
+ # @!attribute [rw] selective_gapic_generation
32
+ # @return [::Google::Api::SelectiveGapicGeneration]
33
+ # Configuration for which RPCs should be generated in the GAPIC client.
31
34
  class CommonLanguageSettings
32
35
  include ::Google::Protobuf::MessageExts
33
36
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -212,6 +215,12 @@ module Google
212
215
  # enabled. By default, asynchronous REST clients will not be generated.
213
216
  # This feature will be enabled by default 1 month after launching the
214
217
  # feature in preview packages.
218
+ # @!attribute [rw] protobuf_pythonic_types_enabled
219
+ # @return [::Boolean]
220
+ # Enables generation of protobuf code using new types that are more
221
+ # Pythonic which are included in `protobuf>=5.29.x`. This feature will be
222
+ # enabled by default 1 month after launching the feature in preview
223
+ # packages.
215
224
  class ExperimentalFeatures
216
225
  include ::Google::Protobuf::MessageExts
217
226
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -297,9 +306,28 @@ module Google
297
306
  # @!attribute [rw] common
298
307
  # @return [::Google::Api::CommonLanguageSettings]
299
308
  # Some settings.
309
+ # @!attribute [rw] renamed_services
310
+ # @return [::Google::Protobuf::Map{::String => ::String}]
311
+ # Map of service names to renamed services. Keys are the package relative
312
+ # service names and values are the name to be used for the service client
313
+ # and call options.
314
+ #
315
+ # publishing:
316
+ # go_settings:
317
+ # renamed_services:
318
+ # Publisher: TopicAdmin
300
319
  class GoSettings
301
320
  include ::Google::Protobuf::MessageExts
302
321
  extend ::Google::Protobuf::MessageExts::ClassMethods
322
+
323
+ # @!attribute [rw] key
324
+ # @return [::String]
325
+ # @!attribute [rw] value
326
+ # @return [::String]
327
+ class RenamedServicesEntry
328
+ include ::Google::Protobuf::MessageExts
329
+ extend ::Google::Protobuf::MessageExts::ClassMethods
330
+ end
303
331
  end
304
332
 
305
333
  # Describes the generator configuration for a method.
@@ -375,6 +403,17 @@ module Google
375
403
  end
376
404
  end
377
405
 
406
+ # This message is used to configure the generation of a subset of the RPCs in
407
+ # a service for client libraries.
408
+ # @!attribute [rw] methods
409
+ # @return [::Array<::String>]
410
+ # An allowlist of the fully qualified names of RPCs that should be included
411
+ # on public client surfaces.
412
+ class SelectiveGapicGeneration
413
+ include ::Google::Protobuf::MessageExts
414
+ extend ::Google::Protobuf::MessageExts::ClassMethods
415
+ end
416
+
378
417
  # The organization for which the client libraries are being published.
379
418
  # Affects the url where generated docs are published, etc.
380
419
  module ClientLibraryOrganization
@@ -102,9 +102,13 @@ module Google
102
102
  # @!attribute [rw] installed_package
103
103
  # @return [::Google::Cloud::OsConfig::V1::Inventory::SoftwarePackage]
104
104
  # Software package present on the VM instance.
105
+ #
106
+ # Note: The following fields are mutually exclusive: `installed_package`, `available_package`. If a field in that set is populated, all other fields in the set will automatically be cleared.
105
107
  # @!attribute [rw] available_package
106
108
  # @return [::Google::Cloud::OsConfig::V1::Inventory::SoftwarePackage]
107
109
  # Software package available to be installed on the VM instance.
110
+ #
111
+ # Note: The following fields are mutually exclusive: `available_package`, `installed_package`. If a field in that set is populated, all other fields in the set will automatically be cleared.
108
112
  class Item
109
113
  include ::Google::Protobuf::MessageExts
110
114
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -138,43 +142,61 @@ module Google
138
142
  # Yum package info.
139
143
  # For details about the yum package manager, see
140
144
  # https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/6/html/deployment_guide/ch-yum.
145
+ #
146
+ # Note: The following fields are mutually exclusive: `yum_package`, `apt_package`, `zypper_package`, `googet_package`, `zypper_patch`, `wua_package`, `qfe_package`, `cos_package`, `windows_application`. If a field in that set is populated, all other fields in the set will automatically be cleared.
141
147
  # @!attribute [rw] apt_package
142
148
  # @return [::Google::Cloud::OsConfig::V1::Inventory::VersionedPackage]
143
149
  # Details of an APT package.
144
150
  # For details about the apt package manager, see
145
151
  # https://wiki.debian.org/Apt.
152
+ #
153
+ # Note: The following fields are mutually exclusive: `apt_package`, `yum_package`, `zypper_package`, `googet_package`, `zypper_patch`, `wua_package`, `qfe_package`, `cos_package`, `windows_application`. If a field in that set is populated, all other fields in the set will automatically be cleared.
146
154
  # @!attribute [rw] zypper_package
147
155
  # @return [::Google::Cloud::OsConfig::V1::Inventory::VersionedPackage]
148
156
  # Details of a Zypper package.
149
157
  # For details about the Zypper package manager, see
150
158
  # https://en.opensuse.org/SDB:Zypper_manual.
159
+ #
160
+ # Note: The following fields are mutually exclusive: `zypper_package`, `yum_package`, `apt_package`, `googet_package`, `zypper_patch`, `wua_package`, `qfe_package`, `cos_package`, `windows_application`. If a field in that set is populated, all other fields in the set will automatically be cleared.
151
161
  # @!attribute [rw] googet_package
152
162
  # @return [::Google::Cloud::OsConfig::V1::Inventory::VersionedPackage]
153
163
  # Details of a Googet package.
154
164
  # For details about the googet package manager, see
155
165
  # https://github.com/google/googet.
166
+ #
167
+ # Note: The following fields are mutually exclusive: `googet_package`, `yum_package`, `apt_package`, `zypper_package`, `zypper_patch`, `wua_package`, `qfe_package`, `cos_package`, `windows_application`. If a field in that set is populated, all other fields in the set will automatically be cleared.
156
168
  # @!attribute [rw] zypper_patch
157
169
  # @return [::Google::Cloud::OsConfig::V1::Inventory::ZypperPatch]
158
170
  # Details of a Zypper patch.
159
171
  # For details about the Zypper package manager, see
160
172
  # https://en.opensuse.org/SDB:Zypper_manual.
173
+ #
174
+ # Note: The following fields are mutually exclusive: `zypper_patch`, `yum_package`, `apt_package`, `zypper_package`, `googet_package`, `wua_package`, `qfe_package`, `cos_package`, `windows_application`. If a field in that set is populated, all other fields in the set will automatically be cleared.
161
175
  # @!attribute [rw] wua_package
162
176
  # @return [::Google::Cloud::OsConfig::V1::Inventory::WindowsUpdatePackage]
163
177
  # Details of a Windows Update package.
164
178
  # See https://docs.microsoft.com/en-us/windows/win32/api/_wua/ for
165
179
  # information about Windows Update.
180
+ #
181
+ # Note: The following fields are mutually exclusive: `wua_package`, `yum_package`, `apt_package`, `zypper_package`, `googet_package`, `zypper_patch`, `qfe_package`, `cos_package`, `windows_application`. If a field in that set is populated, all other fields in the set will automatically be cleared.
166
182
  # @!attribute [rw] qfe_package
167
183
  # @return [::Google::Cloud::OsConfig::V1::Inventory::WindowsQuickFixEngineeringPackage]
168
184
  # Details of a Windows Quick Fix engineering package.
169
185
  # See
170
186
  # https://docs.microsoft.com/en-us/windows/win32/cimwin32prov/win32-quickfixengineering
171
187
  # for info in Windows Quick Fix Engineering.
188
+ #
189
+ # Note: The following fields are mutually exclusive: `qfe_package`, `yum_package`, `apt_package`, `zypper_package`, `googet_package`, `zypper_patch`, `wua_package`, `cos_package`, `windows_application`. If a field in that set is populated, all other fields in the set will automatically be cleared.
172
190
  # @!attribute [rw] cos_package
173
191
  # @return [::Google::Cloud::OsConfig::V1::Inventory::VersionedPackage]
174
192
  # Details of a COS package.
193
+ #
194
+ # Note: The following fields are mutually exclusive: `cos_package`, `yum_package`, `apt_package`, `zypper_package`, `googet_package`, `zypper_patch`, `wua_package`, `qfe_package`, `windows_application`. If a field in that set is populated, all other fields in the set will automatically be cleared.
175
195
  # @!attribute [rw] windows_application
176
196
  # @return [::Google::Cloud::OsConfig::V1::Inventory::WindowsApplication]
177
197
  # Details of Windows Application.
198
+ #
199
+ # Note: The following fields are mutually exclusive: `windows_application`, `yum_package`, `apt_package`, `zypper_package`, `googet_package`, `zypper_patch`, `wua_package`, `qfe_package`, `cos_package`. If a field in that set is populated, all other fields in the set will automatically be cleared.
178
200
  class SoftwarePackage
179
201
  include ::Google::Protobuf::MessageExts
180
202
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -94,15 +94,23 @@ module Google
94
94
  # @!attribute [rw] pkg
95
95
  # @return [::Google::Cloud::OsConfig::V1::OSPolicy::Resource::PackageResource]
96
96
  # Package resource
97
+ #
98
+ # Note: The following fields are mutually exclusive: `pkg`, `repository`, `exec`, `file`. If a field in that set is populated, all other fields in the set will automatically be cleared.
97
99
  # @!attribute [rw] repository
98
100
  # @return [::Google::Cloud::OsConfig::V1::OSPolicy::Resource::RepositoryResource]
99
101
  # Package repository resource
102
+ #
103
+ # Note: The following fields are mutually exclusive: `repository`, `pkg`, `exec`, `file`. If a field in that set is populated, all other fields in the set will automatically be cleared.
100
104
  # @!attribute [rw] exec
101
105
  # @return [::Google::Cloud::OsConfig::V1::OSPolicy::Resource::ExecResource]
102
106
  # Exec resource
107
+ #
108
+ # Note: The following fields are mutually exclusive: `exec`, `pkg`, `repository`, `file`. If a field in that set is populated, all other fields in the set will automatically be cleared.
103
109
  # @!attribute [rw] file
104
110
  # @return [::Google::Cloud::OsConfig::V1::OSPolicy::Resource::FileResource]
105
111
  # File resource
112
+ #
113
+ # Note: The following fields are mutually exclusive: `file`, `pkg`, `repository`, `exec`. If a field in that set is populated, all other fields in the set will automatically be cleared.
106
114
  class Resource
107
115
  include ::Google::Protobuf::MessageExts
108
116
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -111,12 +119,18 @@ module Google
111
119
  # @!attribute [rw] remote
112
120
  # @return [::Google::Cloud::OsConfig::V1::OSPolicy::Resource::File::Remote]
113
121
  # A generic remote file.
122
+ #
123
+ # Note: The following fields are mutually exclusive: `remote`, `gcs`, `local_path`. If a field in that set is populated, all other fields in the set will automatically be cleared.
114
124
  # @!attribute [rw] gcs
115
125
  # @return [::Google::Cloud::OsConfig::V1::OSPolicy::Resource::File::Gcs]
116
126
  # A Cloud Storage object.
127
+ #
128
+ # Note: The following fields are mutually exclusive: `gcs`, `remote`, `local_path`. If a field in that set is populated, all other fields in the set will automatically be cleared.
117
129
  # @!attribute [rw] local_path
118
130
  # @return [::String]
119
131
  # A local path within the VM to use.
132
+ #
133
+ # Note: The following fields are mutually exclusive: `local_path`, `remote`, `gcs`. If a field in that set is populated, all other fields in the set will automatically be cleared.
120
134
  # @!attribute [rw] allow_insecure
121
135
  # @return [::Boolean]
122
136
  # Defaults to false. When false, files are subject to validations
@@ -164,24 +178,38 @@ module Google
164
178
  # @!attribute [rw] apt
165
179
  # @return [::Google::Cloud::OsConfig::V1::OSPolicy::Resource::PackageResource::APT]
166
180
  # A package managed by Apt.
181
+ #
182
+ # Note: The following fields are mutually exclusive: `apt`, `deb`, `yum`, `zypper`, `rpm`, `googet`, `msi`. If a field in that set is populated, all other fields in the set will automatically be cleared.
167
183
  # @!attribute [rw] deb
168
184
  # @return [::Google::Cloud::OsConfig::V1::OSPolicy::Resource::PackageResource::Deb]
169
185
  # A deb package file.
186
+ #
187
+ # Note: The following fields are mutually exclusive: `deb`, `apt`, `yum`, `zypper`, `rpm`, `googet`, `msi`. If a field in that set is populated, all other fields in the set will automatically be cleared.
170
188
  # @!attribute [rw] yum
171
189
  # @return [::Google::Cloud::OsConfig::V1::OSPolicy::Resource::PackageResource::YUM]
172
190
  # A package managed by YUM.
191
+ #
192
+ # Note: The following fields are mutually exclusive: `yum`, `apt`, `deb`, `zypper`, `rpm`, `googet`, `msi`. If a field in that set is populated, all other fields in the set will automatically be cleared.
173
193
  # @!attribute [rw] zypper
174
194
  # @return [::Google::Cloud::OsConfig::V1::OSPolicy::Resource::PackageResource::Zypper]
175
195
  # A package managed by Zypper.
196
+ #
197
+ # Note: The following fields are mutually exclusive: `zypper`, `apt`, `deb`, `yum`, `rpm`, `googet`, `msi`. If a field in that set is populated, all other fields in the set will automatically be cleared.
176
198
  # @!attribute [rw] rpm
177
199
  # @return [::Google::Cloud::OsConfig::V1::OSPolicy::Resource::PackageResource::RPM]
178
200
  # An rpm package file.
201
+ #
202
+ # Note: The following fields are mutually exclusive: `rpm`, `apt`, `deb`, `yum`, `zypper`, `googet`, `msi`. If a field in that set is populated, all other fields in the set will automatically be cleared.
179
203
  # @!attribute [rw] googet
180
204
  # @return [::Google::Cloud::OsConfig::V1::OSPolicy::Resource::PackageResource::GooGet]
181
205
  # A package managed by GooGet.
206
+ #
207
+ # Note: The following fields are mutually exclusive: `googet`, `apt`, `deb`, `yum`, `zypper`, `rpm`, `msi`. If a field in that set is populated, all other fields in the set will automatically be cleared.
182
208
  # @!attribute [rw] msi
183
209
  # @return [::Google::Cloud::OsConfig::V1::OSPolicy::Resource::PackageResource::MSI]
184
210
  # An MSI package.
211
+ #
212
+ # Note: The following fields are mutually exclusive: `msi`, `apt`, `deb`, `yum`, `zypper`, `rpm`, `googet`. If a field in that set is populated, all other fields in the set will automatically be cleared.
185
213
  class PackageResource
186
214
  include ::Google::Protobuf::MessageExts
187
215
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -293,15 +321,23 @@ module Google
293
321
  # @!attribute [rw] apt
294
322
  # @return [::Google::Cloud::OsConfig::V1::OSPolicy::Resource::RepositoryResource::AptRepository]
295
323
  # An Apt Repository.
324
+ #
325
+ # Note: The following fields are mutually exclusive: `apt`, `yum`, `zypper`, `goo`. If a field in that set is populated, all other fields in the set will automatically be cleared.
296
326
  # @!attribute [rw] yum
297
327
  # @return [::Google::Cloud::OsConfig::V1::OSPolicy::Resource::RepositoryResource::YumRepository]
298
328
  # A Yum Repository.
329
+ #
330
+ # Note: The following fields are mutually exclusive: `yum`, `apt`, `zypper`, `goo`. If a field in that set is populated, all other fields in the set will automatically be cleared.
299
331
  # @!attribute [rw] zypper
300
332
  # @return [::Google::Cloud::OsConfig::V1::OSPolicy::Resource::RepositoryResource::ZypperRepository]
301
333
  # A Zypper Repository.
334
+ #
335
+ # Note: The following fields are mutually exclusive: `zypper`, `apt`, `yum`, `goo`. If a field in that set is populated, all other fields in the set will automatically be cleared.
302
336
  # @!attribute [rw] goo
303
337
  # @return [::Google::Cloud::OsConfig::V1::OSPolicy::Resource::RepositoryResource::GooRepository]
304
338
  # A Goo Repository.
339
+ #
340
+ # Note: The following fields are mutually exclusive: `goo`, `apt`, `yum`, `zypper`. If a field in that set is populated, all other fields in the set will automatically be cleared.
305
341
  class RepositoryResource
306
342
  include ::Google::Protobuf::MessageExts
307
343
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -449,10 +485,14 @@ module Google
449
485
  # @!attribute [rw] file
450
486
  # @return [::Google::Cloud::OsConfig::V1::OSPolicy::Resource::File]
451
487
  # A remote or local file.
488
+ #
489
+ # Note: The following fields are mutually exclusive: `file`, `script`. If a field in that set is populated, all other fields in the set will automatically be cleared.
452
490
  # @!attribute [rw] script
453
491
  # @return [::String]
454
492
  # An inline script.
455
493
  # The size of the script is limited to 1024 characters.
494
+ #
495
+ # Note: The following fields are mutually exclusive: `script`, `file`. If a field in that set is populated, all other fields in the set will automatically be cleared.
456
496
  # @!attribute [rw] args
457
497
  # @return [::Array<::String>]
458
498
  # Optional arguments to pass to the source during execution.
@@ -497,10 +537,14 @@ module Google
497
537
  # @!attribute [rw] file
498
538
  # @return [::Google::Cloud::OsConfig::V1::OSPolicy::Resource::File]
499
539
  # A remote or local source.
540
+ #
541
+ # Note: The following fields are mutually exclusive: `file`, `content`. If a field in that set is populated, all other fields in the set will automatically be cleared.
500
542
  # @!attribute [rw] content
501
543
  # @return [::String]
502
544
  # A a file with this content.
503
545
  # The size of the content is limited to 1024 characters.
546
+ #
547
+ # Note: The following fields are mutually exclusive: `content`, `file`. If a field in that set is populated, all other fields in the set will automatically be cleared.
504
548
  # @!attribute [rw] path
505
549
  # @return [::String]
506
550
  # Required. The absolute path of the file within the VM.
@@ -26,10 +26,14 @@ module Google
26
26
  # @!attribute [rw] fixed
27
27
  # @return [::Integer]
28
28
  # Specifies a fixed value.
29
+ #
30
+ # Note: The following fields are mutually exclusive: `fixed`, `percent`. If a field in that set is populated, all other fields in the set will automatically be cleared.
29
31
  # @!attribute [rw] percent
30
32
  # @return [::Integer]
31
33
  # Specifies the relative value defined as a percentage, which will be
32
34
  # multiplied by a reference value.
35
+ #
36
+ # Note: The following fields are mutually exclusive: `percent`, `fixed`. If a field in that set is populated, all other fields in the set will automatically be cleared.
33
37
  class FixedOrPercent
34
38
  include ::Google::Protobuf::MessageExts
35
39
  extend ::Google::Protobuf::MessageExts::ClassMethods