google-apis-assuredworkloads_v1 0.66.0 → 0.67.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/assuredworkloads_v1/classes.rb +6 -0
- data/lib/google/apis/assuredworkloads_v1/gem_version.rb +2 -2
- data/lib/google/apis/assuredworkloads_v1/representations.rb +1 -0
- data/lib/google/apis/assuredworkloads_v1/service.rb +4 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2874b38449ae04a53f71192d0bcc4a27a89db61f7573285b75b3e5456b795dae
|
|
4
|
+
data.tar.gz: f2703320c72de83f4ecfb2be1602d707e9fd5d99c9902f7daf5625b4ef3314a0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 764b36079ae27c10c2ad7252281ea04db97aa9db28e20069ace072d8e19566f651bc7bd32db3700e6d626ceeb496bde7b43a7e9e786464490bd065ca6b2f89c6
|
|
7
|
+
data.tar.gz: 90ef71ac14d54e07dafe303cbcf012f72ce7fe78dd402b20a38104b30bcfd673459808ec5605b8b0857298a3aa86d98c4567a59e4efd533196a197b1ddec993b
|
data/CHANGELOG.md
CHANGED
|
@@ -389,6 +389,11 @@ module Google
|
|
|
389
389
|
# @return [String]
|
|
390
390
|
attr_accessor :next_page_token
|
|
391
391
|
|
|
392
|
+
# The total number of violations.
|
|
393
|
+
# Corresponds to the JSON property `totalSize`
|
|
394
|
+
# @return [Fixnum]
|
|
395
|
+
attr_accessor :total_size
|
|
396
|
+
|
|
392
397
|
# List of Violations under a Workload.
|
|
393
398
|
# Corresponds to the JSON property `violations`
|
|
394
399
|
# @return [Array<Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1Violation>]
|
|
@@ -401,6 +406,7 @@ module Google
|
|
|
401
406
|
# Update properties of this object
|
|
402
407
|
def update!(**args)
|
|
403
408
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
409
|
+
@total_size = args[:total_size] if args.key?(:total_size)
|
|
404
410
|
@violations = args[:violations] if args.key?(:violations)
|
|
405
411
|
end
|
|
406
412
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AssuredworkloadsV1
|
|
18
18
|
# Version of the google-apis-assuredworkloads_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.67.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260615"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -440,6 +440,7 @@ module Google
|
|
|
440
440
|
# @private
|
|
441
441
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
442
442
|
property :next_page_token, as: 'nextPageToken'
|
|
443
|
+
property :total_size, as: 'totalSize'
|
|
443
444
|
collection :violations, as: 'violations', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1Violation, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1Violation::Representation
|
|
444
445
|
|
|
445
446
|
end
|
|
@@ -780,6 +780,8 @@ module Google
|
|
|
780
780
|
# The end of the time window.
|
|
781
781
|
# @param [String] interval_start_time
|
|
782
782
|
# The start of the time window.
|
|
783
|
+
# @param [String] order_by
|
|
784
|
+
# Optional. Actionable sorting delegation.
|
|
783
785
|
# @param [Fixnum] page_size
|
|
784
786
|
# Optional. Page size.
|
|
785
787
|
# @param [String] page_token
|
|
@@ -801,7 +803,7 @@ module Google
|
|
|
801
803
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
802
804
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
803
805
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
804
|
-
def list_organization_location_workload_violations(parent, filter: nil, interval_end_time: nil, interval_start_time: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
806
|
+
def list_organization_location_workload_violations(parent, filter: nil, interval_end_time: nil, interval_start_time: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
805
807
|
command = make_simple_command(:get, 'v1/{+parent}/violations', options)
|
|
806
808
|
command.response_representation = Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1ListViolationsResponse::Representation
|
|
807
809
|
command.response_class = Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1ListViolationsResponse
|
|
@@ -809,6 +811,7 @@ module Google
|
|
|
809
811
|
command.query['filter'] = filter unless filter.nil?
|
|
810
812
|
command.query['interval.endTime'] = interval_end_time unless interval_end_time.nil?
|
|
811
813
|
command.query['interval.startTime'] = interval_start_time unless interval_start_time.nil?
|
|
814
|
+
command.query['orderBy'] = order_by unless order_by.nil?
|
|
812
815
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
813
816
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
814
817
|
command.query['fields'] = fields unless fields.nil?
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-assuredworkloads_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.67.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-assuredworkloads_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-assuredworkloads_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-assuredworkloads_v1/v0.67.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-assuredworkloads_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|