google-apis-threatintelligence_v1beta 0.14.0 → 0.15.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: 22ecde48867ebb3934923ea9a5a1542ba65922d38023ebe2ca4e938a0e7b5cee
|
|
4
|
+
data.tar.gz: eeec8f1217f64bb75472708b4cc1393727f0632869d25220476405e40b9af66d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0b023529733575526f69010b79d2d32d56880e23580e0d59965f9c6fe43fe05a6d40bff073561a13561736f8ede17696c1b7646959c4be2b7f735a4abedbb7b0
|
|
7
|
+
data.tar.gz: 43c5e9f16816177791cda76836596cfc20719b1ec0c48e33fc22d94b7f93b6a7dafc40a1b8cbd6a584f6550e734cd97530ac5d9fefc38b342ace239b653e2dac
|
data/CHANGELOG.md
CHANGED
|
@@ -459,6 +459,11 @@ module Google
|
|
|
459
459
|
# @return [String]
|
|
460
460
|
attr_accessor :detail_type
|
|
461
461
|
|
|
462
|
+
# Configuration holding settings for one or more monitored domains.
|
|
463
|
+
# Corresponds to the JSON property `domainConfiguration`
|
|
464
|
+
# @return [Google::Apis::ThreatintelligenceV1beta::DomainConfiguration]
|
|
465
|
+
attr_accessor :domain_configuration
|
|
466
|
+
|
|
462
467
|
# TechnologyWatchListConfig is the configuration for the technology watchlist.
|
|
463
468
|
# Corresponds to the JSON property `technologyWatchlist`
|
|
464
469
|
# @return [Google::Apis::ThreatintelligenceV1beta::TechnologyWatchListConfig]
|
|
@@ -473,6 +478,7 @@ module Google
|
|
|
473
478
|
@custom_threat_scenario = args[:custom_threat_scenario] if args.key?(:custom_threat_scenario)
|
|
474
479
|
@customer_profile = args[:customer_profile] if args.key?(:customer_profile)
|
|
475
480
|
@detail_type = args[:detail_type] if args.key?(:detail_type)
|
|
481
|
+
@domain_configuration = args[:domain_configuration] if args.key?(:domain_configuration)
|
|
476
482
|
@technology_watchlist = args[:technology_watchlist] if args.key?(:technology_watchlist)
|
|
477
483
|
end
|
|
478
484
|
end
|
|
@@ -527,6 +533,11 @@ module Google
|
|
|
527
533
|
# @return [String]
|
|
528
534
|
attr_accessor :document_condition
|
|
529
535
|
|
|
536
|
+
# Represents a query to match documents.
|
|
537
|
+
# Corresponds to the JSON property `documentQuery`
|
|
538
|
+
# @return [Google::Apis::ThreatintelligenceV1beta::DocumentQuery]
|
|
539
|
+
attr_accessor :document_query
|
|
540
|
+
|
|
530
541
|
# Legacy metadata associated with this scenario/monitor.
|
|
531
542
|
# Corresponds to the JSON property `legacyMonitorMetadata`
|
|
532
543
|
# @return [Google::Apis::ThreatintelligenceV1beta::LegacyMetadata]
|
|
@@ -540,6 +551,7 @@ module Google
|
|
|
540
551
|
def update!(**args)
|
|
541
552
|
@compiled_lucene_query = args[:compiled_lucene_query] if args.key?(:compiled_lucene_query)
|
|
542
553
|
@document_condition = args[:document_condition] if args.key?(:document_condition)
|
|
554
|
+
@document_query = args[:document_query] if args.key?(:document_query)
|
|
543
555
|
@legacy_monitor_metadata = args[:legacy_monitor_metadata] if args.key?(:legacy_monitor_metadata)
|
|
544
556
|
end
|
|
545
557
|
end
|
|
@@ -1101,6 +1113,107 @@ module Google
|
|
|
1101
1113
|
end
|
|
1102
1114
|
end
|
|
1103
1115
|
|
|
1116
|
+
# Represents a query to match documents.
|
|
1117
|
+
class DocumentQuery
|
|
1118
|
+
include Google::Apis::Core::Hashable
|
|
1119
|
+
|
|
1120
|
+
# Required. The data model to query against.
|
|
1121
|
+
# Corresponds to the JSON property `dataModel`
|
|
1122
|
+
# @return [String]
|
|
1123
|
+
attr_accessor :data_model
|
|
1124
|
+
|
|
1125
|
+
# Required. The query string.
|
|
1126
|
+
# Corresponds to the JSON property `query`
|
|
1127
|
+
# @return [String]
|
|
1128
|
+
attr_accessor :query
|
|
1129
|
+
|
|
1130
|
+
# Required. The type of query.
|
|
1131
|
+
# Corresponds to the JSON property `queryType`
|
|
1132
|
+
# @return [String]
|
|
1133
|
+
attr_accessor :query_type
|
|
1134
|
+
|
|
1135
|
+
def initialize(**args)
|
|
1136
|
+
update!(**args)
|
|
1137
|
+
end
|
|
1138
|
+
|
|
1139
|
+
# Update properties of this object
|
|
1140
|
+
def update!(**args)
|
|
1141
|
+
@data_model = args[:data_model] if args.key?(:data_model)
|
|
1142
|
+
@query = args[:query] if args.key?(:query)
|
|
1143
|
+
@query_type = args[:query_type] if args.key?(:query_type)
|
|
1144
|
+
end
|
|
1145
|
+
end
|
|
1146
|
+
|
|
1147
|
+
# Configuration holding settings for one or more monitored domains.
|
|
1148
|
+
class DomainConfiguration
|
|
1149
|
+
include Google::Apis::Core::Hashable
|
|
1150
|
+
|
|
1151
|
+
# Optional. A list of settings for individual domains.
|
|
1152
|
+
# Corresponds to the JSON property `domainSettings`
|
|
1153
|
+
# @return [Array<Google::Apis::ThreatintelligenceV1beta::DomainSetting>]
|
|
1154
|
+
attr_accessor :domain_settings
|
|
1155
|
+
|
|
1156
|
+
def initialize(**args)
|
|
1157
|
+
update!(**args)
|
|
1158
|
+
end
|
|
1159
|
+
|
|
1160
|
+
# Update properties of this object
|
|
1161
|
+
def update!(**args)
|
|
1162
|
+
@domain_settings = args[:domain_settings] if args.key?(:domain_settings)
|
|
1163
|
+
end
|
|
1164
|
+
end
|
|
1165
|
+
|
|
1166
|
+
# Specific configuration for the Domain Monitoring feature.
|
|
1167
|
+
class DomainMonitoringFeatureConfig
|
|
1168
|
+
include Google::Apis::Core::Hashable
|
|
1169
|
+
|
|
1170
|
+
# Optional. Whether the Domain Monitoring feature is disabled for the domain.
|
|
1171
|
+
# Corresponds to the JSON property `disabled`
|
|
1172
|
+
# @return [Boolean]
|
|
1173
|
+
attr_accessor :disabled
|
|
1174
|
+
alias_method :disabled?, :disabled
|
|
1175
|
+
|
|
1176
|
+
def initialize(**args)
|
|
1177
|
+
update!(**args)
|
|
1178
|
+
end
|
|
1179
|
+
|
|
1180
|
+
# Update properties of this object
|
|
1181
|
+
def update!(**args)
|
|
1182
|
+
@disabled = args[:disabled] if args.key?(:disabled)
|
|
1183
|
+
end
|
|
1184
|
+
end
|
|
1185
|
+
|
|
1186
|
+
# Feature settings and toggles for a single specific domain.
|
|
1187
|
+
class DomainSetting
|
|
1188
|
+
include Google::Apis::Core::Hashable
|
|
1189
|
+
|
|
1190
|
+
# Required. The domain name to match against.
|
|
1191
|
+
# Corresponds to the JSON property `domain`
|
|
1192
|
+
# @return [String]
|
|
1193
|
+
attr_accessor :domain
|
|
1194
|
+
|
|
1195
|
+
# Specific configuration for the Domain Monitoring feature.
|
|
1196
|
+
# Corresponds to the JSON property `domainMonitoringConfig`
|
|
1197
|
+
# @return [Google::Apis::ThreatintelligenceV1beta::DomainMonitoringFeatureConfig]
|
|
1198
|
+
attr_accessor :domain_monitoring_config
|
|
1199
|
+
|
|
1200
|
+
# Output only. The verification state of the domain.
|
|
1201
|
+
# Corresponds to the JSON property `state`
|
|
1202
|
+
# @return [String]
|
|
1203
|
+
attr_accessor :state
|
|
1204
|
+
|
|
1205
|
+
def initialize(**args)
|
|
1206
|
+
update!(**args)
|
|
1207
|
+
end
|
|
1208
|
+
|
|
1209
|
+
# Update properties of this object
|
|
1210
|
+
def update!(**args)
|
|
1211
|
+
@domain = args[:domain] if args.key?(:domain)
|
|
1212
|
+
@domain_monitoring_config = args[:domain_monitoring_config] if args.key?(:domain_monitoring_config)
|
|
1213
|
+
@state = args[:state] if args.key?(:state)
|
|
1214
|
+
end
|
|
1215
|
+
end
|
|
1216
|
+
|
|
1104
1217
|
# Response message for EnumerateAlertFacets.
|
|
1105
1218
|
class EnumerateAlertFacetsResponse
|
|
1106
1219
|
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.15.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 = "20260823"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -166,6 +166,30 @@ module Google
|
|
|
166
166
|
include Google::Apis::Core::JsonObjectSupport
|
|
167
167
|
end
|
|
168
168
|
|
|
169
|
+
class DocumentQuery
|
|
170
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
171
|
+
|
|
172
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
173
|
+
end
|
|
174
|
+
|
|
175
|
+
class DomainConfiguration
|
|
176
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
177
|
+
|
|
178
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
179
|
+
end
|
|
180
|
+
|
|
181
|
+
class DomainMonitoringFeatureConfig
|
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
183
|
+
|
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
185
|
+
end
|
|
186
|
+
|
|
187
|
+
class DomainSetting
|
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
189
|
+
|
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
191
|
+
end
|
|
192
|
+
|
|
169
193
|
class EnumerateAlertFacetsResponse
|
|
170
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
171
195
|
|
|
@@ -519,6 +543,8 @@ module Google
|
|
|
519
543
|
property :customer_profile, as: 'customerProfile', class: Google::Apis::ThreatintelligenceV1beta::CustomerProfileConfig, decorator: Google::Apis::ThreatintelligenceV1beta::CustomerProfileConfig::Representation
|
|
520
544
|
|
|
521
545
|
property :detail_type, as: 'detailType'
|
|
546
|
+
property :domain_configuration, as: 'domainConfiguration', class: Google::Apis::ThreatintelligenceV1beta::DomainConfiguration, decorator: Google::Apis::ThreatintelligenceV1beta::DomainConfiguration::Representation
|
|
547
|
+
|
|
522
548
|
property :technology_watchlist, as: 'technologyWatchlist', class: Google::Apis::ThreatintelligenceV1beta::TechnologyWatchListConfig, decorator: Google::Apis::ThreatintelligenceV1beta::TechnologyWatchListConfig::Representation
|
|
523
549
|
|
|
524
550
|
end
|
|
@@ -539,6 +565,8 @@ module Google
|
|
|
539
565
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
540
566
|
property :compiled_lucene_query, as: 'compiledLuceneQuery'
|
|
541
567
|
property :document_condition, as: 'documentCondition'
|
|
568
|
+
property :document_query, as: 'documentQuery', class: Google::Apis::ThreatintelligenceV1beta::DocumentQuery, decorator: Google::Apis::ThreatintelligenceV1beta::DocumentQuery::Representation
|
|
569
|
+
|
|
542
570
|
property :legacy_monitor_metadata, as: 'legacyMonitorMetadata', class: Google::Apis::ThreatintelligenceV1beta::LegacyMetadata, decorator: Google::Apis::ThreatintelligenceV1beta::LegacyMetadata::Representation
|
|
543
571
|
|
|
544
572
|
end
|
|
@@ -711,6 +739,40 @@ module Google
|
|
|
711
739
|
end
|
|
712
740
|
end
|
|
713
741
|
|
|
742
|
+
class DocumentQuery
|
|
743
|
+
# @private
|
|
744
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
745
|
+
property :data_model, as: 'dataModel'
|
|
746
|
+
property :query, as: 'query'
|
|
747
|
+
property :query_type, as: 'queryType'
|
|
748
|
+
end
|
|
749
|
+
end
|
|
750
|
+
|
|
751
|
+
class DomainConfiguration
|
|
752
|
+
# @private
|
|
753
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
754
|
+
collection :domain_settings, as: 'domainSettings', class: Google::Apis::ThreatintelligenceV1beta::DomainSetting, decorator: Google::Apis::ThreatintelligenceV1beta::DomainSetting::Representation
|
|
755
|
+
|
|
756
|
+
end
|
|
757
|
+
end
|
|
758
|
+
|
|
759
|
+
class DomainMonitoringFeatureConfig
|
|
760
|
+
# @private
|
|
761
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
762
|
+
property :disabled, as: 'disabled'
|
|
763
|
+
end
|
|
764
|
+
end
|
|
765
|
+
|
|
766
|
+
class DomainSetting
|
|
767
|
+
# @private
|
|
768
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
769
|
+
property :domain, as: 'domain'
|
|
770
|
+
property :domain_monitoring_config, as: 'domainMonitoringConfig', class: Google::Apis::ThreatintelligenceV1beta::DomainMonitoringFeatureConfig, decorator: Google::Apis::ThreatintelligenceV1beta::DomainMonitoringFeatureConfig::Representation
|
|
771
|
+
|
|
772
|
+
property :state, as: 'state'
|
|
773
|
+
end
|
|
774
|
+
end
|
|
775
|
+
|
|
714
776
|
class EnumerateAlertFacetsResponse
|
|
715
777
|
# @private
|
|
716
778
|
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.15.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.15.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:
|