google-apis-threatintelligence_v1beta 0.12.0 → 0.13.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: 1854f4ca06e4f984ad8e50fe3667d4e093be1b14dfda2218072c2bdd035cdce4
|
|
4
|
+
data.tar.gz: 146d745fa8300dff472905b66aa55174cdca30c3153590f5aad778cfec8ecbcd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9a63d20b2a026988be4a486723d5b23beee01a2fa6f57f23fff6ddef5a2df2970d8ffd6c188540a413a4b42cfb540bf4ac55caef6b5670bbffec6fe710466d75
|
|
7
|
+
data.tar.gz: 80c702adb13455be5a30b35bf7590dc2b76ba55ba09e16113f10da049b138b25ef37de8a3befcac4db6433c5718824d5803f6d1bffd674c0acb986ec47ec48b8
|
data/CHANGELOG.md
CHANGED
|
@@ -442,6 +442,12 @@ module Google
|
|
|
442
442
|
class ConfigurationDetail
|
|
443
443
|
include Google::Apis::Core::Hashable
|
|
444
444
|
|
|
445
|
+
# CustomThreatScenarioConfig represents a user-defined threat scenario
|
|
446
|
+
# configuration.
|
|
447
|
+
# Corresponds to the JSON property `customThreatScenario`
|
|
448
|
+
# @return [Google::Apis::ThreatintelligenceV1beta::CustomThreatScenarioConfig]
|
|
449
|
+
attr_accessor :custom_threat_scenario
|
|
450
|
+
|
|
445
451
|
# CustomerProfileConfig is the configuration for the customer profile.
|
|
446
452
|
# Corresponds to the JSON property `customerProfile`
|
|
447
453
|
# @return [Google::Apis::ThreatintelligenceV1beta::CustomerProfileConfig]
|
|
@@ -464,6 +470,7 @@ module Google
|
|
|
464
470
|
|
|
465
471
|
# Update properties of this object
|
|
466
472
|
def update!(**args)
|
|
473
|
+
@custom_threat_scenario = args[:custom_threat_scenario] if args.key?(:custom_threat_scenario)
|
|
467
474
|
@customer_profile = args[:customer_profile] if args.key?(:customer_profile)
|
|
468
475
|
@detail_type = args[:detail_type] if args.key?(:detail_type)
|
|
469
476
|
@technology_watchlist = args[:technology_watchlist] if args.key?(:technology_watchlist)
|
|
@@ -504,6 +511,27 @@ module Google
|
|
|
504
511
|
end
|
|
505
512
|
end
|
|
506
513
|
|
|
514
|
+
# CustomThreatScenarioConfig represents a user-defined threat scenario
|
|
515
|
+
# configuration.
|
|
516
|
+
class CustomThreatScenarioConfig
|
|
517
|
+
include Google::Apis::Core::Hashable
|
|
518
|
+
|
|
519
|
+
# Required. The condition driving the scenario, stored as a stringified JSON.
|
|
520
|
+
# This is used to query/filter documents.
|
|
521
|
+
# Corresponds to the JSON property `documentCondition`
|
|
522
|
+
# @return [String]
|
|
523
|
+
attr_accessor :document_condition
|
|
524
|
+
|
|
525
|
+
def initialize(**args)
|
|
526
|
+
update!(**args)
|
|
527
|
+
end
|
|
528
|
+
|
|
529
|
+
# Update properties of this object
|
|
530
|
+
def update!(**args)
|
|
531
|
+
@document_condition = args[:document_condition] if args.key?(:document_condition)
|
|
532
|
+
end
|
|
533
|
+
end
|
|
534
|
+
|
|
507
535
|
# Citation information for the customer profile.
|
|
508
536
|
class CustomerProfileCitation
|
|
509
537
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ThreatintelligenceV1beta
|
|
18
18
|
# Version of the google-apis-threatintelligence_v1beta gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.13.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 = "20260803"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -76,6 +76,12 @@ module Google
|
|
|
76
76
|
include Google::Apis::Core::JsonObjectSupport
|
|
77
77
|
end
|
|
78
78
|
|
|
79
|
+
class CustomThreatScenarioConfig
|
|
80
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
81
|
+
|
|
82
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
83
|
+
end
|
|
84
|
+
|
|
79
85
|
class CustomerProfileCitation
|
|
80
86
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
81
87
|
|
|
@@ -496,6 +502,8 @@ module Google
|
|
|
496
502
|
class ConfigurationDetail
|
|
497
503
|
# @private
|
|
498
504
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
505
|
+
property :custom_threat_scenario, as: 'customThreatScenario', class: Google::Apis::ThreatintelligenceV1beta::CustomThreatScenarioConfig, decorator: Google::Apis::ThreatintelligenceV1beta::CustomThreatScenarioConfig::Representation
|
|
506
|
+
|
|
499
507
|
property :customer_profile, as: 'customerProfile', class: Google::Apis::ThreatintelligenceV1beta::CustomerProfileConfig, decorator: Google::Apis::ThreatintelligenceV1beta::CustomerProfileConfig::Representation
|
|
500
508
|
|
|
501
509
|
property :detail_type, as: 'detailType'
|
|
@@ -514,6 +522,13 @@ module Google
|
|
|
514
522
|
end
|
|
515
523
|
end
|
|
516
524
|
|
|
525
|
+
class CustomThreatScenarioConfig
|
|
526
|
+
# @private
|
|
527
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
528
|
+
property :document_condition, as: 'documentCondition'
|
|
529
|
+
end
|
|
530
|
+
end
|
|
531
|
+
|
|
517
532
|
class CustomerProfileCitation
|
|
518
533
|
# @private
|
|
519
534
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-threatintelligence_v1beta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.13.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-threatintelligence_v1beta/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-threatintelligence_v1beta/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-threatintelligence_v1beta/v0.13.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-threatintelligence_v1beta
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|