google-apis-securitycenter_v1beta2 0.89.0 → 0.90.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: 1ccfe853603768c998b0c11ff00a7d3738ea5b42be33f6f3da5d4dc7b0d4f318
|
4
|
+
data.tar.gz: e6637d12c8e6d7620ddb4748bb7f35e76625e99d07aa150c2ffd5281e44c86b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5ac4747c9f2271f3a2702a7345156c91cb26ab232054138106143a1e641f4d197f382035082b203d0366f774355f1fe2ad77bf940724ef5a5dd3537580c19e2d
|
7
|
+
data.tar.gz: e5b90057c3fdf03002867ed2a39ba748d817ca39d9e7c4471721edd39fdf5c4478beba916a7b57a3a52af639be3d729bd3e2db201f8e6d18bf2108ef0646c1ba
|
data/CHANGELOG.md
CHANGED
@@ -6249,14 +6249,11 @@ module Google
|
|
6249
6249
|
attr_accessor :backup_disaster_recovery
|
6250
6250
|
|
6251
6251
|
# Output only. The canonical name of the finding. The following list shows some
|
6252
|
-
# examples: + `organizations/`organization_id`/sources/`source_id`/
|
6253
|
-
# finding_id`` + `organizations/`organization_id`/sources/`source_id`/locations/`
|
6252
|
+
# examples: + `organizations/`organization_id`/sources/`source_id`/locations/`
|
6254
6253
|
# location_id`/findings/`finding_id`` + `folders/`folder_id`/sources/`source_id`/
|
6255
|
-
# findings/`finding_id`` + `
|
6256
|
-
# location_id`/findings/`finding_id``
|
6257
|
-
#
|
6258
|
-
# locations/`location_id`/findings/`finding_id`` The prefix is the closest CRM
|
6259
|
-
# ancestor of the resource associated with the finding.
|
6254
|
+
# locations/`location_id`/findings/`finding_id`` + `projects/`project_id`/
|
6255
|
+
# sources/`source_id`/locations/`location_id`/findings/`finding_id`` The prefix
|
6256
|
+
# is the closest CRM ancestor of the resource associated with the finding.
|
6260
6257
|
# Corresponds to the JSON property `canonicalName`
|
6261
6258
|
# @return [String]
|
6262
6259
|
attr_accessor :canonical_name
|
@@ -7218,6 +7215,11 @@ module Google
|
|
7218
7215
|
class GoogleCloudSecuritycenterV2IssueResource
|
7219
7216
|
include Google::Apis::Core::Hashable
|
7220
7217
|
|
7218
|
+
# The AppHub application associated with the resource, if any.
|
7219
|
+
# Corresponds to the JSON property `application`
|
7220
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplication]
|
7221
|
+
attr_accessor :application
|
7222
|
+
|
7221
7223
|
# The AWS metadata of a resource associated with an issue.
|
7222
7224
|
# Corresponds to the JSON property `awsMetadata`
|
7223
7225
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata]
|
@@ -7260,6 +7262,7 @@ module Google
|
|
7260
7262
|
|
7261
7263
|
# Update properties of this object
|
7262
7264
|
def update!(**args)
|
7265
|
+
@application = args[:application] if args.key?(:application)
|
7263
7266
|
@aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
|
7264
7267
|
@azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
|
7265
7268
|
@cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
|
@@ -7270,6 +7273,26 @@ module Google
|
|
7270
7273
|
end
|
7271
7274
|
end
|
7272
7275
|
|
7276
|
+
# The AppHub application associated with the resource, if any.
|
7277
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
7278
|
+
include Google::Apis::Core::Hashable
|
7279
|
+
|
7280
|
+
# The resource name of an Application. Format: `projects/`host-project-id`/
|
7281
|
+
# locations/`location`/applications/`application-id``
|
7282
|
+
# Corresponds to the JSON property `name`
|
7283
|
+
# @return [String]
|
7284
|
+
attr_accessor :name
|
7285
|
+
|
7286
|
+
def initialize(**args)
|
7287
|
+
update!(**args)
|
7288
|
+
end
|
7289
|
+
|
7290
|
+
# Update properties of this object
|
7291
|
+
def update!(**args)
|
7292
|
+
@name = args[:name] if args.key?(:name)
|
7293
|
+
end
|
7294
|
+
end
|
7295
|
+
|
7273
7296
|
# The AWS metadata of a resource associated with an issue.
|
7274
7297
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
7275
7298
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module SecuritycenterV1beta2
|
18
18
|
# Version of the google-apis-securitycenter_v1beta2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.90.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250905"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -958,6 +958,12 @@ module Google
|
|
958
958
|
include Google::Apis::Core::JsonObjectSupport
|
959
959
|
end
|
960
960
|
|
961
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
962
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
963
|
+
|
964
|
+
include Google::Apis::Core::JsonObjectSupport
|
965
|
+
end
|
966
|
+
|
961
967
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
962
968
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
963
969
|
|
@@ -3410,6 +3416,8 @@ module Google
|
|
3410
3416
|
class GoogleCloudSecuritycenterV2IssueResource
|
3411
3417
|
# @private
|
3412
3418
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3419
|
+
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplication, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplication::Representation
|
3420
|
+
|
3413
3421
|
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata::Representation
|
3414
3422
|
|
3415
3423
|
property :azure_metadata, as: 'azureMetadata', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAzureMetadata, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAzureMetadata::Representation
|
@@ -3423,6 +3431,13 @@ module Google
|
|
3423
3431
|
end
|
3424
3432
|
end
|
3425
3433
|
|
3434
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
3435
|
+
# @private
|
3436
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3437
|
+
property :name, as: 'name'
|
3438
|
+
end
|
3439
|
+
end
|
3440
|
+
|
3426
3441
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
3427
3442
|
# @private
|
3428
3443
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-securitycenter_v1beta2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.90.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-securitycenter_v1beta2/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.90.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|