google-apis-securitycenter_v1 0.111.0 → 0.112.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: 81e06fa196995ffa50f7d29451f4592a204f3e65fb64ce9196ff3bf401bb288b
|
|
4
|
+
data.tar.gz: b57cce8a0225949ba7e10c157f5dbe81226074a693c8f9b19282c4354eb2b7ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 99fcfcccbbfef5be9f43a9f8947a0923fa2f1c2e2df7a37e10b37c52a104717914a6c88dc8a8bfadfd91a23b14bdf814ac1d0ade8aabc690d7a2959d7ba816da
|
|
7
|
+
data.tar.gz: 591965b15c3128a23bfc10cf00cf91fbbe354ccb1f505ed6ac064e7026dcb5f6e9237ddcca475f476033585c0ed3c0cd795066ff9a96406c359a1b09323bfda2
|
data/CHANGELOG.md
CHANGED
|
@@ -337,6 +337,64 @@ module Google
|
|
|
337
337
|
end
|
|
338
338
|
end
|
|
339
339
|
|
|
340
|
+
# Represents the result of evaluating artifact guard policies.
|
|
341
|
+
class ArtifactGuardPolicies
|
|
342
|
+
include Google::Apis::Core::Hashable
|
|
343
|
+
|
|
344
|
+
# A list of failing policies.
|
|
345
|
+
# Corresponds to the JSON property `failingPolicies`
|
|
346
|
+
# @return [Array<Google::Apis::SecuritycenterV1::ArtifactGuardPolicy>]
|
|
347
|
+
attr_accessor :failing_policies
|
|
348
|
+
|
|
349
|
+
# The ID of the resource that has policies configured for it.
|
|
350
|
+
# Corresponds to the JSON property `resourceId`
|
|
351
|
+
# @return [String]
|
|
352
|
+
attr_accessor :resource_id
|
|
353
|
+
|
|
354
|
+
def initialize(**args)
|
|
355
|
+
update!(**args)
|
|
356
|
+
end
|
|
357
|
+
|
|
358
|
+
# Update properties of this object
|
|
359
|
+
def update!(**args)
|
|
360
|
+
@failing_policies = args[:failing_policies] if args.key?(:failing_policies)
|
|
361
|
+
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
|
362
|
+
end
|
|
363
|
+
end
|
|
364
|
+
|
|
365
|
+
# Represents an artifact guard policy.
|
|
366
|
+
class ArtifactGuardPolicy
|
|
367
|
+
include Google::Apis::Core::Hashable
|
|
368
|
+
|
|
369
|
+
# The reason for the policy failure, for example, "severity=HIGH AND
|
|
370
|
+
# max_vuln_count=2".
|
|
371
|
+
# Corresponds to the JSON property `failureReason`
|
|
372
|
+
# @return [String]
|
|
373
|
+
attr_accessor :failure_reason
|
|
374
|
+
|
|
375
|
+
# The ID of the failing policy, for example, "organizations/3392779/locations/
|
|
376
|
+
# global/policies/prod-policy".
|
|
377
|
+
# Corresponds to the JSON property `policyId`
|
|
378
|
+
# @return [String]
|
|
379
|
+
attr_accessor :policy_id
|
|
380
|
+
|
|
381
|
+
# The type of the policy evaluation.
|
|
382
|
+
# Corresponds to the JSON property `type`
|
|
383
|
+
# @return [String]
|
|
384
|
+
attr_accessor :type
|
|
385
|
+
|
|
386
|
+
def initialize(**args)
|
|
387
|
+
update!(**args)
|
|
388
|
+
end
|
|
389
|
+
|
|
390
|
+
# Update properties of this object
|
|
391
|
+
def update!(**args)
|
|
392
|
+
@failure_reason = args[:failure_reason] if args.key?(:failure_reason)
|
|
393
|
+
@policy_id = args[:policy_id] if args.key?(:policy_id)
|
|
394
|
+
@type = args[:type] if args.key?(:type)
|
|
395
|
+
end
|
|
396
|
+
end
|
|
397
|
+
|
|
340
398
|
# Security Command Center representation of a Google Cloud resource. The Asset
|
|
341
399
|
# is a Security Command Center resource that captures information about a single
|
|
342
400
|
# Google Cloud resource. All modifications to an Asset are only within the
|
|
@@ -2773,6 +2831,11 @@ module Google
|
|
|
2773
2831
|
# @return [Google::Apis::SecuritycenterV1::DiskPath]
|
|
2774
2832
|
attr_accessor :disk_path
|
|
2775
2833
|
|
|
2834
|
+
# The load state of the file.
|
|
2835
|
+
# Corresponds to the JSON property `fileLoadState`
|
|
2836
|
+
# @return [String]
|
|
2837
|
+
attr_accessor :file_load_state
|
|
2838
|
+
|
|
2776
2839
|
# The length in bytes of the file prefix that was hashed. If hashed_size == size,
|
|
2777
2840
|
# any hashes reported represent the entire file.
|
|
2778
2841
|
# Corresponds to the JSON property `hashedSize`
|
|
@@ -2814,6 +2877,7 @@ module Google
|
|
|
2814
2877
|
def update!(**args)
|
|
2815
2878
|
@contents = args[:contents] if args.key?(:contents)
|
|
2816
2879
|
@disk_path = args[:disk_path] if args.key?(:disk_path)
|
|
2880
|
+
@file_load_state = args[:file_load_state] if args.key?(:file_load_state)
|
|
2817
2881
|
@hashed_size = args[:hashed_size] if args.key?(:hashed_size)
|
|
2818
2882
|
@operations = args[:operations] if args.key?(:operations)
|
|
2819
2883
|
@partially_hashed = args[:partially_hashed] if args.key?(:partially_hashed)
|
|
@@ -2870,6 +2934,11 @@ module Google
|
|
|
2870
2934
|
# @return [Google::Apis::SecuritycenterV1::Application]
|
|
2871
2935
|
attr_accessor :application
|
|
2872
2936
|
|
|
2937
|
+
# Represents the result of evaluating artifact guard policies.
|
|
2938
|
+
# Corresponds to the JSON property `artifactGuardPolicies`
|
|
2939
|
+
# @return [Google::Apis::SecuritycenterV1::ArtifactGuardPolicies]
|
|
2940
|
+
attr_accessor :artifact_guard_policies
|
|
2941
|
+
|
|
2873
2942
|
# An attack exposure contains the results of an attack path simulation run.
|
|
2874
2943
|
# Corresponds to the JSON property `attackExposure`
|
|
2875
2944
|
# @return [Google::Apis::SecuritycenterV1::AttackExposure]
|
|
@@ -3182,6 +3251,11 @@ module Google
|
|
|
3182
3251
|
# @return [String]
|
|
3183
3252
|
attr_accessor :resource_name
|
|
3184
3253
|
|
|
3254
|
+
# Details about a secret or credential associated with the finding.
|
|
3255
|
+
# Corresponds to the JSON property `secret`
|
|
3256
|
+
# @return [Google::Apis::SecuritycenterV1::Secret]
|
|
3257
|
+
attr_accessor :secret
|
|
3258
|
+
|
|
3185
3259
|
# User specified security marks that are attached to the parent Security Command
|
|
3186
3260
|
# Center resource. Security marks are scoped within a Security Command Center
|
|
3187
3261
|
# organization -- they can be modified and viewed by all users who have proper
|
|
@@ -3244,6 +3318,7 @@ module Google
|
|
|
3244
3318
|
@affected_resources = args[:affected_resources] if args.key?(:affected_resources)
|
|
3245
3319
|
@ai_model = args[:ai_model] if args.key?(:ai_model)
|
|
3246
3320
|
@application = args[:application] if args.key?(:application)
|
|
3321
|
+
@artifact_guard_policies = args[:artifact_guard_policies] if args.key?(:artifact_guard_policies)
|
|
3247
3322
|
@attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
|
|
3248
3323
|
@backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
|
|
3249
3324
|
@canonical_name = args[:canonical_name] if args.key?(:canonical_name)
|
|
@@ -3294,6 +3369,7 @@ module Google
|
|
|
3294
3369
|
@parent_display_name = args[:parent_display_name] if args.key?(:parent_display_name)
|
|
3295
3370
|
@processes = args[:processes] if args.key?(:processes)
|
|
3296
3371
|
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
|
3372
|
+
@secret = args[:secret] if args.key?(:secret)
|
|
3297
3373
|
@security_marks = args[:security_marks] if args.key?(:security_marks)
|
|
3298
3374
|
@security_posture = args[:security_posture] if args.key?(:security_posture)
|
|
3299
3375
|
@severity = args[:severity] if args.key?(:severity)
|
|
@@ -5179,6 +5255,64 @@ module Google
|
|
|
5179
5255
|
end
|
|
5180
5256
|
end
|
|
5181
5257
|
|
|
5258
|
+
# Represents the result of evaluating artifact guard policies.
|
|
5259
|
+
class GoogleCloudSecuritycenterV2ArtifactGuardPolicies
|
|
5260
|
+
include Google::Apis::Core::Hashable
|
|
5261
|
+
|
|
5262
|
+
# A list of failing policies.
|
|
5263
|
+
# Corresponds to the JSON property `failingPolicies`
|
|
5264
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ArtifactGuardPolicy>]
|
|
5265
|
+
attr_accessor :failing_policies
|
|
5266
|
+
|
|
5267
|
+
# The ID of the resource that has policies configured for it.
|
|
5268
|
+
# Corresponds to the JSON property `resourceId`
|
|
5269
|
+
# @return [String]
|
|
5270
|
+
attr_accessor :resource_id
|
|
5271
|
+
|
|
5272
|
+
def initialize(**args)
|
|
5273
|
+
update!(**args)
|
|
5274
|
+
end
|
|
5275
|
+
|
|
5276
|
+
# Update properties of this object
|
|
5277
|
+
def update!(**args)
|
|
5278
|
+
@failing_policies = args[:failing_policies] if args.key?(:failing_policies)
|
|
5279
|
+
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
|
5280
|
+
end
|
|
5281
|
+
end
|
|
5282
|
+
|
|
5283
|
+
# Represents an artifact guard policy.
|
|
5284
|
+
class GoogleCloudSecuritycenterV2ArtifactGuardPolicy
|
|
5285
|
+
include Google::Apis::Core::Hashable
|
|
5286
|
+
|
|
5287
|
+
# The reason for the policy failure, for example, "severity=HIGH AND
|
|
5288
|
+
# max_vuln_count=2".
|
|
5289
|
+
# Corresponds to the JSON property `failureReason`
|
|
5290
|
+
# @return [String]
|
|
5291
|
+
attr_accessor :failure_reason
|
|
5292
|
+
|
|
5293
|
+
# The ID of the failing policy, for example, "organizations/3392779/locations/
|
|
5294
|
+
# global/policies/prod-policy".
|
|
5295
|
+
# Corresponds to the JSON property `policyId`
|
|
5296
|
+
# @return [String]
|
|
5297
|
+
attr_accessor :policy_id
|
|
5298
|
+
|
|
5299
|
+
# The type of the policy evaluation.
|
|
5300
|
+
# Corresponds to the JSON property `type`
|
|
5301
|
+
# @return [String]
|
|
5302
|
+
attr_accessor :type
|
|
5303
|
+
|
|
5304
|
+
def initialize(**args)
|
|
5305
|
+
update!(**args)
|
|
5306
|
+
end
|
|
5307
|
+
|
|
5308
|
+
# Update properties of this object
|
|
5309
|
+
def update!(**args)
|
|
5310
|
+
@failure_reason = args[:failure_reason] if args.key?(:failure_reason)
|
|
5311
|
+
@policy_id = args[:policy_id] if args.key?(:policy_id)
|
|
5312
|
+
@type = args[:type] if args.key?(:type)
|
|
5313
|
+
end
|
|
5314
|
+
end
|
|
5315
|
+
|
|
5182
5316
|
# Information about DDoS attack volume and classification.
|
|
5183
5317
|
class GoogleCloudSecuritycenterV2Attack
|
|
5184
5318
|
include Google::Apis::Core::Hashable
|
|
@@ -6965,6 +7099,11 @@ module Google
|
|
|
6965
7099
|
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DiskPath]
|
|
6966
7100
|
attr_accessor :disk_path
|
|
6967
7101
|
|
|
7102
|
+
# The load state of the file.
|
|
7103
|
+
# Corresponds to the JSON property `fileLoadState`
|
|
7104
|
+
# @return [String]
|
|
7105
|
+
attr_accessor :file_load_state
|
|
7106
|
+
|
|
6968
7107
|
# The length in bytes of the file prefix that was hashed. If hashed_size == size,
|
|
6969
7108
|
# any hashes reported represent the entire file.
|
|
6970
7109
|
# Corresponds to the JSON property `hashedSize`
|
|
@@ -7006,6 +7145,7 @@ module Google
|
|
|
7006
7145
|
def update!(**args)
|
|
7007
7146
|
@contents = args[:contents] if args.key?(:contents)
|
|
7008
7147
|
@disk_path = args[:disk_path] if args.key?(:disk_path)
|
|
7148
|
+
@file_load_state = args[:file_load_state] if args.key?(:file_load_state)
|
|
7009
7149
|
@hashed_size = args[:hashed_size] if args.key?(:hashed_size)
|
|
7010
7150
|
@operations = args[:operations] if args.key?(:operations)
|
|
7011
7151
|
@partially_hashed = args[:partially_hashed] if args.key?(:partially_hashed)
|
|
@@ -7062,6 +7202,11 @@ module Google
|
|
|
7062
7202
|
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Application]
|
|
7063
7203
|
attr_accessor :application
|
|
7064
7204
|
|
|
7205
|
+
# Represents the result of evaluating artifact guard policies.
|
|
7206
|
+
# Corresponds to the JSON property `artifactGuardPolicies`
|
|
7207
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ArtifactGuardPolicies]
|
|
7208
|
+
attr_accessor :artifact_guard_policies
|
|
7209
|
+
|
|
7065
7210
|
# An attack exposure contains the results of an attack path simulation run.
|
|
7066
7211
|
# Corresponds to the JSON property `attackExposure`
|
|
7067
7212
|
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AttackExposure]
|
|
@@ -7391,6 +7536,11 @@ module Google
|
|
|
7391
7536
|
# @return [String]
|
|
7392
7537
|
attr_accessor :resource_name
|
|
7393
7538
|
|
|
7539
|
+
# Details about a secret or credential associated with the finding.
|
|
7540
|
+
# Corresponds to the JSON property `secret`
|
|
7541
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Secret]
|
|
7542
|
+
attr_accessor :secret
|
|
7543
|
+
|
|
7394
7544
|
# User specified security marks that are attached to the parent Security Command
|
|
7395
7545
|
# Center resource. Security marks are scoped within a Security Command Center
|
|
7396
7546
|
# organization -- they can be modified and viewed by all users who have proper
|
|
@@ -7453,6 +7603,7 @@ module Google
|
|
|
7453
7603
|
@affected_resources = args[:affected_resources] if args.key?(:affected_resources)
|
|
7454
7604
|
@ai_model = args[:ai_model] if args.key?(:ai_model)
|
|
7455
7605
|
@application = args[:application] if args.key?(:application)
|
|
7606
|
+
@artifact_guard_policies = args[:artifact_guard_policies] if args.key?(:artifact_guard_policies)
|
|
7456
7607
|
@attack_exposure = args[:attack_exposure] if args.key?(:attack_exposure)
|
|
7457
7608
|
@backup_disaster_recovery = args[:backup_disaster_recovery] if args.key?(:backup_disaster_recovery)
|
|
7458
7609
|
@canonical_name = args[:canonical_name] if args.key?(:canonical_name)
|
|
@@ -7504,6 +7655,7 @@ module Google
|
|
|
7504
7655
|
@parent_display_name = args[:parent_display_name] if args.key?(:parent_display_name)
|
|
7505
7656
|
@processes = args[:processes] if args.key?(:processes)
|
|
7506
7657
|
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
|
7658
|
+
@secret = args[:secret] if args.key?(:secret)
|
|
7507
7659
|
@security_marks = args[:security_marks] if args.key?(:security_marks)
|
|
7508
7660
|
@security_posture = args[:security_posture] if args.key?(:security_posture)
|
|
7509
7661
|
@severity = args[:severity] if args.key?(:severity)
|
|
@@ -9838,6 +9990,108 @@ module Google
|
|
|
9838
9990
|
end
|
|
9839
9991
|
end
|
|
9840
9992
|
|
|
9993
|
+
# Details about a secret or credential associated with the finding.
|
|
9994
|
+
class GoogleCloudSecuritycenterV2Secret
|
|
9995
|
+
include Google::Apis::Core::Hashable
|
|
9996
|
+
|
|
9997
|
+
# Environment variable containing the secret.
|
|
9998
|
+
# Corresponds to the JSON property `environmentVariable`
|
|
9999
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2SecretEnvironmentVariable]
|
|
10000
|
+
attr_accessor :environment_variable
|
|
10001
|
+
|
|
10002
|
+
# File path containing the secret.
|
|
10003
|
+
# Corresponds to the JSON property `filePath`
|
|
10004
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2SecretFilePath]
|
|
10005
|
+
attr_accessor :file_path
|
|
10006
|
+
|
|
10007
|
+
# The status of the secret.
|
|
10008
|
+
# Corresponds to the JSON property `status`
|
|
10009
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2SecretStatus]
|
|
10010
|
+
attr_accessor :status
|
|
10011
|
+
|
|
10012
|
+
# The type of secret, for example, GCP_API_KEY.
|
|
10013
|
+
# Corresponds to the JSON property `type`
|
|
10014
|
+
# @return [String]
|
|
10015
|
+
attr_accessor :type
|
|
10016
|
+
|
|
10017
|
+
def initialize(**args)
|
|
10018
|
+
update!(**args)
|
|
10019
|
+
end
|
|
10020
|
+
|
|
10021
|
+
# Update properties of this object
|
|
10022
|
+
def update!(**args)
|
|
10023
|
+
@environment_variable = args[:environment_variable] if args.key?(:environment_variable)
|
|
10024
|
+
@file_path = args[:file_path] if args.key?(:file_path)
|
|
10025
|
+
@status = args[:status] if args.key?(:status)
|
|
10026
|
+
@type = args[:type] if args.key?(:type)
|
|
10027
|
+
end
|
|
10028
|
+
end
|
|
10029
|
+
|
|
10030
|
+
# Environment variable containing the secret.
|
|
10031
|
+
class GoogleCloudSecuritycenterV2SecretEnvironmentVariable
|
|
10032
|
+
include Google::Apis::Core::Hashable
|
|
10033
|
+
|
|
10034
|
+
# Environment variable name as a JSON encoded string. Note that value is not
|
|
10035
|
+
# included since the value contains the secret data, which is sensitive core
|
|
10036
|
+
# content.
|
|
10037
|
+
# Corresponds to the JSON property `key`
|
|
10038
|
+
# @return [String]
|
|
10039
|
+
attr_accessor :key
|
|
10040
|
+
|
|
10041
|
+
def initialize(**args)
|
|
10042
|
+
update!(**args)
|
|
10043
|
+
end
|
|
10044
|
+
|
|
10045
|
+
# Update properties of this object
|
|
10046
|
+
def update!(**args)
|
|
10047
|
+
@key = args[:key] if args.key?(:key)
|
|
10048
|
+
end
|
|
10049
|
+
end
|
|
10050
|
+
|
|
10051
|
+
# File path containing the secret.
|
|
10052
|
+
class GoogleCloudSecuritycenterV2SecretFilePath
|
|
10053
|
+
include Google::Apis::Core::Hashable
|
|
10054
|
+
|
|
10055
|
+
# Path to the file.
|
|
10056
|
+
# Corresponds to the JSON property `path`
|
|
10057
|
+
# @return [String]
|
|
10058
|
+
attr_accessor :path
|
|
10059
|
+
|
|
10060
|
+
def initialize(**args)
|
|
10061
|
+
update!(**args)
|
|
10062
|
+
end
|
|
10063
|
+
|
|
10064
|
+
# Update properties of this object
|
|
10065
|
+
def update!(**args)
|
|
10066
|
+
@path = args[:path] if args.key?(:path)
|
|
10067
|
+
end
|
|
10068
|
+
end
|
|
10069
|
+
|
|
10070
|
+
# The status of the secret.
|
|
10071
|
+
class GoogleCloudSecuritycenterV2SecretStatus
|
|
10072
|
+
include Google::Apis::Core::Hashable
|
|
10073
|
+
|
|
10074
|
+
# Time that the secret was found.
|
|
10075
|
+
# Corresponds to the JSON property `lastUpdatedTime`
|
|
10076
|
+
# @return [String]
|
|
10077
|
+
attr_accessor :last_updated_time
|
|
10078
|
+
|
|
10079
|
+
# The validity of the secret.
|
|
10080
|
+
# Corresponds to the JSON property `validity`
|
|
10081
|
+
# @return [String]
|
|
10082
|
+
attr_accessor :validity
|
|
10083
|
+
|
|
10084
|
+
def initialize(**args)
|
|
10085
|
+
update!(**args)
|
|
10086
|
+
end
|
|
10087
|
+
|
|
10088
|
+
# Update properties of this object
|
|
10089
|
+
def update!(**args)
|
|
10090
|
+
@last_updated_time = args[:last_updated_time] if args.key?(:last_updated_time)
|
|
10091
|
+
@validity = args[:validity] if args.key?(:validity)
|
|
10092
|
+
end
|
|
10093
|
+
end
|
|
10094
|
+
|
|
9841
10095
|
# SecurityBulletin are notifications of vulnerabilities of Google products.
|
|
9842
10096
|
class GoogleCloudSecuritycenterV2SecurityBulletin
|
|
9843
10097
|
include Google::Apis::Core::Hashable
|
|
@@ -12848,6 +13102,108 @@ module Google
|
|
|
12848
13102
|
end
|
|
12849
13103
|
end
|
|
12850
13104
|
|
|
13105
|
+
# Details about a secret or credential associated with the finding.
|
|
13106
|
+
class Secret
|
|
13107
|
+
include Google::Apis::Core::Hashable
|
|
13108
|
+
|
|
13109
|
+
# Environment variable containing the secret.
|
|
13110
|
+
# Corresponds to the JSON property `environmentVariable`
|
|
13111
|
+
# @return [Google::Apis::SecuritycenterV1::SecretEnvironmentVariable]
|
|
13112
|
+
attr_accessor :environment_variable
|
|
13113
|
+
|
|
13114
|
+
# File path containing the secret.
|
|
13115
|
+
# Corresponds to the JSON property `filePath`
|
|
13116
|
+
# @return [Google::Apis::SecuritycenterV1::SecretFilePath]
|
|
13117
|
+
attr_accessor :file_path
|
|
13118
|
+
|
|
13119
|
+
# The status of the secret.
|
|
13120
|
+
# Corresponds to the JSON property `status`
|
|
13121
|
+
# @return [Google::Apis::SecuritycenterV1::SecretStatus]
|
|
13122
|
+
attr_accessor :status
|
|
13123
|
+
|
|
13124
|
+
# The type of secret, for example, GCP_API_KEY.
|
|
13125
|
+
# Corresponds to the JSON property `type`
|
|
13126
|
+
# @return [String]
|
|
13127
|
+
attr_accessor :type
|
|
13128
|
+
|
|
13129
|
+
def initialize(**args)
|
|
13130
|
+
update!(**args)
|
|
13131
|
+
end
|
|
13132
|
+
|
|
13133
|
+
# Update properties of this object
|
|
13134
|
+
def update!(**args)
|
|
13135
|
+
@environment_variable = args[:environment_variable] if args.key?(:environment_variable)
|
|
13136
|
+
@file_path = args[:file_path] if args.key?(:file_path)
|
|
13137
|
+
@status = args[:status] if args.key?(:status)
|
|
13138
|
+
@type = args[:type] if args.key?(:type)
|
|
13139
|
+
end
|
|
13140
|
+
end
|
|
13141
|
+
|
|
13142
|
+
# Environment variable containing the secret.
|
|
13143
|
+
class SecretEnvironmentVariable
|
|
13144
|
+
include Google::Apis::Core::Hashable
|
|
13145
|
+
|
|
13146
|
+
# Environment variable name as a JSON encoded string. Note that value is not
|
|
13147
|
+
# included since the value contains the secret data, which is sensitive core
|
|
13148
|
+
# content.
|
|
13149
|
+
# Corresponds to the JSON property `key`
|
|
13150
|
+
# @return [String]
|
|
13151
|
+
attr_accessor :key
|
|
13152
|
+
|
|
13153
|
+
def initialize(**args)
|
|
13154
|
+
update!(**args)
|
|
13155
|
+
end
|
|
13156
|
+
|
|
13157
|
+
# Update properties of this object
|
|
13158
|
+
def update!(**args)
|
|
13159
|
+
@key = args[:key] if args.key?(:key)
|
|
13160
|
+
end
|
|
13161
|
+
end
|
|
13162
|
+
|
|
13163
|
+
# File path containing the secret.
|
|
13164
|
+
class SecretFilePath
|
|
13165
|
+
include Google::Apis::Core::Hashable
|
|
13166
|
+
|
|
13167
|
+
# Path to the file.
|
|
13168
|
+
# Corresponds to the JSON property `path`
|
|
13169
|
+
# @return [String]
|
|
13170
|
+
attr_accessor :path
|
|
13171
|
+
|
|
13172
|
+
def initialize(**args)
|
|
13173
|
+
update!(**args)
|
|
13174
|
+
end
|
|
13175
|
+
|
|
13176
|
+
# Update properties of this object
|
|
13177
|
+
def update!(**args)
|
|
13178
|
+
@path = args[:path] if args.key?(:path)
|
|
13179
|
+
end
|
|
13180
|
+
end
|
|
13181
|
+
|
|
13182
|
+
# The status of the secret.
|
|
13183
|
+
class SecretStatus
|
|
13184
|
+
include Google::Apis::Core::Hashable
|
|
13185
|
+
|
|
13186
|
+
# Time that the secret was found.
|
|
13187
|
+
# Corresponds to the JSON property `lastUpdatedTime`
|
|
13188
|
+
# @return [String]
|
|
13189
|
+
attr_accessor :last_updated_time
|
|
13190
|
+
|
|
13191
|
+
# The validity of the secret.
|
|
13192
|
+
# Corresponds to the JSON property `validity`
|
|
13193
|
+
# @return [String]
|
|
13194
|
+
attr_accessor :validity
|
|
13195
|
+
|
|
13196
|
+
def initialize(**args)
|
|
13197
|
+
update!(**args)
|
|
13198
|
+
end
|
|
13199
|
+
|
|
13200
|
+
# Update properties of this object
|
|
13201
|
+
def update!(**args)
|
|
13202
|
+
@last_updated_time = args[:last_updated_time] if args.key?(:last_updated_time)
|
|
13203
|
+
@validity = args[:validity] if args.key?(:validity)
|
|
13204
|
+
end
|
|
13205
|
+
end
|
|
13206
|
+
|
|
12851
13207
|
# SecurityBulletin are notifications of vulnerabilities of Google products.
|
|
12852
13208
|
class SecurityBulletin
|
|
12853
13209
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module SecuritycenterV1
|
|
18
18
|
# Version of the google-apis-securitycenter_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.112.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 = "20260105"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -64,6 +64,18 @@ module Google
|
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
|
65
65
|
end
|
|
66
66
|
|
|
67
|
+
class ArtifactGuardPolicies
|
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
69
|
+
|
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
class ArtifactGuardPolicy
|
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
75
|
+
|
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
77
|
+
end
|
|
78
|
+
|
|
67
79
|
class Asset
|
|
68
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
69
81
|
|
|
@@ -706,6 +718,18 @@ module Google
|
|
|
706
718
|
include Google::Apis::Core::JsonObjectSupport
|
|
707
719
|
end
|
|
708
720
|
|
|
721
|
+
class GoogleCloudSecuritycenterV2ArtifactGuardPolicies
|
|
722
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
723
|
+
|
|
724
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
725
|
+
end
|
|
726
|
+
|
|
727
|
+
class GoogleCloudSecuritycenterV2ArtifactGuardPolicy
|
|
728
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
729
|
+
|
|
730
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
731
|
+
end
|
|
732
|
+
|
|
709
733
|
class GoogleCloudSecuritycenterV2Attack
|
|
710
734
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
711
735
|
|
|
@@ -1384,6 +1408,30 @@ module Google
|
|
|
1384
1408
|
include Google::Apis::Core::JsonObjectSupport
|
|
1385
1409
|
end
|
|
1386
1410
|
|
|
1411
|
+
class GoogleCloudSecuritycenterV2Secret
|
|
1412
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1413
|
+
|
|
1414
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1415
|
+
end
|
|
1416
|
+
|
|
1417
|
+
class GoogleCloudSecuritycenterV2SecretEnvironmentVariable
|
|
1418
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1419
|
+
|
|
1420
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1421
|
+
end
|
|
1422
|
+
|
|
1423
|
+
class GoogleCloudSecuritycenterV2SecretFilePath
|
|
1424
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1425
|
+
|
|
1426
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1427
|
+
end
|
|
1428
|
+
|
|
1429
|
+
class GoogleCloudSecuritycenterV2SecretStatus
|
|
1430
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1431
|
+
|
|
1432
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1433
|
+
end
|
|
1434
|
+
|
|
1387
1435
|
class GoogleCloudSecuritycenterV2SecurityBulletin
|
|
1388
1436
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1389
1437
|
|
|
@@ -1864,6 +1912,30 @@ module Google
|
|
|
1864
1912
|
include Google::Apis::Core::JsonObjectSupport
|
|
1865
1913
|
end
|
|
1866
1914
|
|
|
1915
|
+
class Secret
|
|
1916
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1917
|
+
|
|
1918
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1919
|
+
end
|
|
1920
|
+
|
|
1921
|
+
class SecretEnvironmentVariable
|
|
1922
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1923
|
+
|
|
1924
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1925
|
+
end
|
|
1926
|
+
|
|
1927
|
+
class SecretFilePath
|
|
1928
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1929
|
+
|
|
1930
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1931
|
+
end
|
|
1932
|
+
|
|
1933
|
+
class SecretStatus
|
|
1934
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1935
|
+
|
|
1936
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1937
|
+
end
|
|
1938
|
+
|
|
1867
1939
|
class SecurityBulletin
|
|
1868
1940
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1869
1941
|
|
|
@@ -2132,6 +2204,24 @@ module Google
|
|
|
2132
2204
|
end
|
|
2133
2205
|
end
|
|
2134
2206
|
|
|
2207
|
+
class ArtifactGuardPolicies
|
|
2208
|
+
# @private
|
|
2209
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2210
|
+
collection :failing_policies, as: 'failingPolicies', class: Google::Apis::SecuritycenterV1::ArtifactGuardPolicy, decorator: Google::Apis::SecuritycenterV1::ArtifactGuardPolicy::Representation
|
|
2211
|
+
|
|
2212
|
+
property :resource_id, as: 'resourceId'
|
|
2213
|
+
end
|
|
2214
|
+
end
|
|
2215
|
+
|
|
2216
|
+
class ArtifactGuardPolicy
|
|
2217
|
+
# @private
|
|
2218
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2219
|
+
property :failure_reason, as: 'failureReason'
|
|
2220
|
+
property :policy_id, as: 'policyId'
|
|
2221
|
+
property :type, as: 'type'
|
|
2222
|
+
end
|
|
2223
|
+
end
|
|
2224
|
+
|
|
2135
2225
|
class Asset
|
|
2136
2226
|
# @private
|
|
2137
2227
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2766,6 +2856,7 @@ module Google
|
|
|
2766
2856
|
property :contents, as: 'contents'
|
|
2767
2857
|
property :disk_path, as: 'diskPath', class: Google::Apis::SecuritycenterV1::DiskPath, decorator: Google::Apis::SecuritycenterV1::DiskPath::Representation
|
|
2768
2858
|
|
|
2859
|
+
property :file_load_state, as: 'fileLoadState'
|
|
2769
2860
|
property :hashed_size, :numeric_string => true, as: 'hashedSize'
|
|
2770
2861
|
collection :operations, as: 'operations', class: Google::Apis::SecuritycenterV1::FileOperation, decorator: Google::Apis::SecuritycenterV1::FileOperation::Representation
|
|
2771
2862
|
|
|
@@ -2794,6 +2885,8 @@ module Google
|
|
|
2794
2885
|
|
|
2795
2886
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1::Application, decorator: Google::Apis::SecuritycenterV1::Application::Representation
|
|
2796
2887
|
|
|
2888
|
+
property :artifact_guard_policies, as: 'artifactGuardPolicies', class: Google::Apis::SecuritycenterV1::ArtifactGuardPolicies, decorator: Google::Apis::SecuritycenterV1::ArtifactGuardPolicies::Representation
|
|
2889
|
+
|
|
2797
2890
|
property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1::AttackExposure, decorator: Google::Apis::SecuritycenterV1::AttackExposure::Representation
|
|
2798
2891
|
|
|
2799
2892
|
property :backup_disaster_recovery, as: 'backupDisasterRecovery', class: Google::Apis::SecuritycenterV1::BackupDisasterRecovery, decorator: Google::Apis::SecuritycenterV1::BackupDisasterRecovery::Representation
|
|
@@ -2878,6 +2971,8 @@ module Google
|
|
|
2878
2971
|
collection :processes, as: 'processes', class: Google::Apis::SecuritycenterV1::Process, decorator: Google::Apis::SecuritycenterV1::Process::Representation
|
|
2879
2972
|
|
|
2880
2973
|
property :resource_name, as: 'resourceName'
|
|
2974
|
+
property :secret, as: 'secret', class: Google::Apis::SecuritycenterV1::Secret, decorator: Google::Apis::SecuritycenterV1::Secret::Representation
|
|
2975
|
+
|
|
2881
2976
|
property :security_marks, as: 'securityMarks', class: Google::Apis::SecuritycenterV1::SecurityMarks, decorator: Google::Apis::SecuritycenterV1::SecurityMarks::Representation
|
|
2882
2977
|
|
|
2883
2978
|
property :security_posture, as: 'securityPosture', class: Google::Apis::SecuritycenterV1::SecurityPosture, decorator: Google::Apis::SecuritycenterV1::SecurityPosture::Representation
|
|
@@ -3351,6 +3446,24 @@ module Google
|
|
|
3351
3446
|
end
|
|
3352
3447
|
end
|
|
3353
3448
|
|
|
3449
|
+
class GoogleCloudSecuritycenterV2ArtifactGuardPolicies
|
|
3450
|
+
# @private
|
|
3451
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3452
|
+
collection :failing_policies, as: 'failingPolicies', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ArtifactGuardPolicy, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ArtifactGuardPolicy::Representation
|
|
3453
|
+
|
|
3454
|
+
property :resource_id, as: 'resourceId'
|
|
3455
|
+
end
|
|
3456
|
+
end
|
|
3457
|
+
|
|
3458
|
+
class GoogleCloudSecuritycenterV2ArtifactGuardPolicy
|
|
3459
|
+
# @private
|
|
3460
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3461
|
+
property :failure_reason, as: 'failureReason'
|
|
3462
|
+
property :policy_id, as: 'policyId'
|
|
3463
|
+
property :type, as: 'type'
|
|
3464
|
+
end
|
|
3465
|
+
end
|
|
3466
|
+
|
|
3354
3467
|
class GoogleCloudSecuritycenterV2Attack
|
|
3355
3468
|
# @private
|
|
3356
3469
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3818,6 +3931,7 @@ module Google
|
|
|
3818
3931
|
property :contents, as: 'contents'
|
|
3819
3932
|
property :disk_path, as: 'diskPath', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DiskPath, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DiskPath::Representation
|
|
3820
3933
|
|
|
3934
|
+
property :file_load_state, as: 'fileLoadState'
|
|
3821
3935
|
property :hashed_size, :numeric_string => true, as: 'hashedSize'
|
|
3822
3936
|
collection :operations, as: 'operations', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2FileOperation, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2FileOperation::Representation
|
|
3823
3937
|
|
|
@@ -3846,6 +3960,8 @@ module Google
|
|
|
3846
3960
|
|
|
3847
3961
|
property :application, as: 'application', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Application, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Application::Representation
|
|
3848
3962
|
|
|
3963
|
+
property :artifact_guard_policies, as: 'artifactGuardPolicies', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ArtifactGuardPolicies, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2ArtifactGuardPolicies::Representation
|
|
3964
|
+
|
|
3849
3965
|
property :attack_exposure, as: 'attackExposure', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AttackExposure, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2AttackExposure::Representation
|
|
3850
3966
|
|
|
3851
3967
|
property :backup_disaster_recovery, as: 'backupDisasterRecovery', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2BackupDisasterRecovery, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2BackupDisasterRecovery::Representation
|
|
@@ -3931,6 +4047,8 @@ module Google
|
|
|
3931
4047
|
collection :processes, as: 'processes', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Process, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Process::Representation
|
|
3932
4048
|
|
|
3933
4049
|
property :resource_name, as: 'resourceName'
|
|
4050
|
+
property :secret, as: 'secret', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Secret, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Secret::Representation
|
|
4051
|
+
|
|
3934
4052
|
property :security_marks, as: 'securityMarks', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2SecurityMarks, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2SecurityMarks::Representation
|
|
3935
4053
|
|
|
3936
4054
|
property :security_posture, as: 'securityPosture', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2SecurityPosture, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2SecurityPosture::Representation
|
|
@@ -4621,6 +4739,41 @@ module Google
|
|
|
4621
4739
|
end
|
|
4622
4740
|
end
|
|
4623
4741
|
|
|
4742
|
+
class GoogleCloudSecuritycenterV2Secret
|
|
4743
|
+
# @private
|
|
4744
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4745
|
+
property :environment_variable, as: 'environmentVariable', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2SecretEnvironmentVariable, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2SecretEnvironmentVariable::Representation
|
|
4746
|
+
|
|
4747
|
+
property :file_path, as: 'filePath', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2SecretFilePath, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2SecretFilePath::Representation
|
|
4748
|
+
|
|
4749
|
+
property :status, as: 'status', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2SecretStatus, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2SecretStatus::Representation
|
|
4750
|
+
|
|
4751
|
+
property :type, as: 'type'
|
|
4752
|
+
end
|
|
4753
|
+
end
|
|
4754
|
+
|
|
4755
|
+
class GoogleCloudSecuritycenterV2SecretEnvironmentVariable
|
|
4756
|
+
# @private
|
|
4757
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4758
|
+
property :key, as: 'key'
|
|
4759
|
+
end
|
|
4760
|
+
end
|
|
4761
|
+
|
|
4762
|
+
class GoogleCloudSecuritycenterV2SecretFilePath
|
|
4763
|
+
# @private
|
|
4764
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4765
|
+
property :path, as: 'path'
|
|
4766
|
+
end
|
|
4767
|
+
end
|
|
4768
|
+
|
|
4769
|
+
class GoogleCloudSecuritycenterV2SecretStatus
|
|
4770
|
+
# @private
|
|
4771
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4772
|
+
property :last_updated_time, as: 'lastUpdatedTime'
|
|
4773
|
+
property :validity, as: 'validity'
|
|
4774
|
+
end
|
|
4775
|
+
end
|
|
4776
|
+
|
|
4624
4777
|
class GoogleCloudSecuritycenterV2SecurityBulletin
|
|
4625
4778
|
# @private
|
|
4626
4779
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -5427,6 +5580,41 @@ module Google
|
|
|
5427
5580
|
end
|
|
5428
5581
|
end
|
|
5429
5582
|
|
|
5583
|
+
class Secret
|
|
5584
|
+
# @private
|
|
5585
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5586
|
+
property :environment_variable, as: 'environmentVariable', class: Google::Apis::SecuritycenterV1::SecretEnvironmentVariable, decorator: Google::Apis::SecuritycenterV1::SecretEnvironmentVariable::Representation
|
|
5587
|
+
|
|
5588
|
+
property :file_path, as: 'filePath', class: Google::Apis::SecuritycenterV1::SecretFilePath, decorator: Google::Apis::SecuritycenterV1::SecretFilePath::Representation
|
|
5589
|
+
|
|
5590
|
+
property :status, as: 'status', class: Google::Apis::SecuritycenterV1::SecretStatus, decorator: Google::Apis::SecuritycenterV1::SecretStatus::Representation
|
|
5591
|
+
|
|
5592
|
+
property :type, as: 'type'
|
|
5593
|
+
end
|
|
5594
|
+
end
|
|
5595
|
+
|
|
5596
|
+
class SecretEnvironmentVariable
|
|
5597
|
+
# @private
|
|
5598
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5599
|
+
property :key, as: 'key'
|
|
5600
|
+
end
|
|
5601
|
+
end
|
|
5602
|
+
|
|
5603
|
+
class SecretFilePath
|
|
5604
|
+
# @private
|
|
5605
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5606
|
+
property :path, as: 'path'
|
|
5607
|
+
end
|
|
5608
|
+
end
|
|
5609
|
+
|
|
5610
|
+
class SecretStatus
|
|
5611
|
+
# @private
|
|
5612
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5613
|
+
property :last_updated_time, as: 'lastUpdatedTime'
|
|
5614
|
+
property :validity, as: 'validity'
|
|
5615
|
+
end
|
|
5616
|
+
end
|
|
5617
|
+
|
|
5430
5618
|
class SecurityBulletin
|
|
5431
5619
|
# @private
|
|
5432
5620
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-securitycenter_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.112.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_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.112.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|