google-apis-threatintelligence_v1beta 0.14.0 → 0.16.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: 5191ec5793722ddc9dbbc4199d86d5948934bc1aa217557fe4617deb5744264c
|
|
4
|
+
data.tar.gz: 30f64b9e1c8b4e51af4502efd1833e09176bbae642e3a4d591bf3006ec4c0eec
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 97a7a46d5d605cb4047159b14291ae6b12f18c43b1023d03128e121b39dd3d3ed6708a7d28d0f7be60f269672ded2130d7b55634d4748f213b3c6d8022ef2a33
|
|
7
|
+
data.tar.gz: dcf0fd5f41d7fb91121be42ff6a4801cc2198cea1b2430bdf04b92e0efc22de1d5971d9ab4fc57017ff92284e1c21eed258ee6d691f77127b55d2d9d348f31b8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-threatintelligence_v1beta
|
|
2
2
|
|
|
3
|
+
### v0.16.0 (2026-09-06)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260830
|
|
6
|
+
|
|
7
|
+
### v0.15.0 (2026-08-30)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260823
|
|
10
|
+
|
|
3
11
|
### v0.14.0 (2026-08-23)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260816
|
|
@@ -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
|
|
@@ -1537,85 +1650,88 @@ module Google
|
|
|
1537
1650
|
class LegacyMetadata
|
|
1538
1651
|
include Google::Apis::Core::Hashable
|
|
1539
1652
|
|
|
1540
|
-
#
|
|
1653
|
+
# Output only. Whether aggregation is enabled for alerts from this monitor.
|
|
1541
1654
|
# Corresponds to the JSON property `aggregationEnabled`
|
|
1542
1655
|
# @return [Boolean]
|
|
1543
1656
|
attr_accessor :aggregation_enabled
|
|
1544
1657
|
alias_method :aggregation_enabled?, :aggregation_enabled
|
|
1545
1658
|
|
|
1546
|
-
#
|
|
1659
|
+
# Output only. Similarity threshold for aggregation.
|
|
1547
1660
|
# Corresponds to the JSON property `aggregationSimilarity`
|
|
1548
1661
|
# @return [Float]
|
|
1549
1662
|
attr_accessor :aggregation_similarity
|
|
1550
1663
|
|
|
1551
|
-
#
|
|
1664
|
+
# Output only. Version of the condition schema.
|
|
1552
1665
|
# Corresponds to the JSON property `conditionVersion`
|
|
1553
1666
|
# @return [Fixnum]
|
|
1554
1667
|
attr_accessor :condition_version
|
|
1555
1668
|
|
|
1556
|
-
#
|
|
1669
|
+
# Output only. User ID who created the monitor.
|
|
1557
1670
|
# Corresponds to the JSON property `creatorUserId`
|
|
1558
1671
|
# @return [String]
|
|
1559
1672
|
attr_accessor :creator_user_id
|
|
1560
1673
|
|
|
1561
|
-
#
|
|
1674
|
+
# Output only. Description of the legacy monitor.
|
|
1562
1675
|
# Corresponds to the JSON property `description`
|
|
1563
1676
|
# @return [String]
|
|
1564
1677
|
attr_accessor :description
|
|
1565
1678
|
|
|
1566
|
-
#
|
|
1679
|
+
# Output only. Code indicating why the monitor is disabled (if applicable).
|
|
1567
1680
|
# Corresponds to the JSON property `disabledCode`
|
|
1568
1681
|
# @return [String]
|
|
1569
1682
|
attr_accessor :disabled_code
|
|
1570
1683
|
|
|
1571
|
-
#
|
|
1684
|
+
# Output only. Reason why the monitor is disabled (if applicable).
|
|
1572
1685
|
# Corresponds to the JSON property `disabledReason`
|
|
1573
1686
|
# @return [String]
|
|
1574
1687
|
attr_accessor :disabled_reason
|
|
1575
1688
|
|
|
1576
|
-
#
|
|
1689
|
+
# Output only. Name of the legacy monitor.
|
|
1577
1690
|
# Corresponds to the JSON property `displayName`
|
|
1578
1691
|
# @return [String]
|
|
1579
1692
|
attr_accessor :display_name
|
|
1580
1693
|
|
|
1581
|
-
#
|
|
1694
|
+
# Output only. Deprecated: Whether email notifications are enabled. This field
|
|
1695
|
+
# will not be used as email notifications are handled through the GTI Mail Hub.
|
|
1582
1696
|
# Corresponds to the JSON property `emailNotificationEnabled`
|
|
1583
1697
|
# @return [Boolean]
|
|
1584
1698
|
attr_accessor :email_notification_enabled
|
|
1585
1699
|
alias_method :email_notification_enabled?, :email_notification_enabled
|
|
1586
1700
|
|
|
1587
|
-
#
|
|
1701
|
+
# Output only. Deprecated: Whether email notifications are intermediate/
|
|
1702
|
+
# immediate. This field will not be used as email notifications are handled
|
|
1703
|
+
# through the GTI Mail Hub.
|
|
1588
1704
|
# Corresponds to the JSON property `emailNotificationImmediate`
|
|
1589
1705
|
# @return [Boolean]
|
|
1590
1706
|
attr_accessor :email_notification_immediate
|
|
1591
1707
|
alias_method :email_notification_immediate?, :email_notification_immediate
|
|
1592
1708
|
|
|
1593
|
-
#
|
|
1709
|
+
# Output only. Unique identifier of the legacy monitor.
|
|
1594
1710
|
# Corresponds to the JSON property `legacyMonitorId`
|
|
1595
1711
|
# @return [String]
|
|
1596
1712
|
attr_accessor :legacy_monitor_id
|
|
1597
1713
|
|
|
1598
|
-
#
|
|
1714
|
+
# Output only. Time the legacy monitor was considered stale.
|
|
1599
1715
|
# Corresponds to the JSON property `staleTime`
|
|
1600
1716
|
# @return [String]
|
|
1601
1717
|
attr_accessor :stale_time
|
|
1602
1718
|
|
|
1603
|
-
#
|
|
1719
|
+
# Output only. ID of the template this monitor was created from.
|
|
1604
1720
|
# Corresponds to the JSON property `templateId`
|
|
1605
1721
|
# @return [String]
|
|
1606
1722
|
attr_accessor :template_id
|
|
1607
1723
|
|
|
1608
|
-
#
|
|
1724
|
+
# Output only. ID of the tenant owning the monitor.
|
|
1609
1725
|
# Corresponds to the JSON property `tenantId`
|
|
1610
1726
|
# @return [String]
|
|
1611
1727
|
attr_accessor :tenant_id
|
|
1612
1728
|
|
|
1613
|
-
#
|
|
1729
|
+
# Output only. User ID who last updated the monitor.
|
|
1614
1730
|
# Corresponds to the JSON property `updaterUserId`
|
|
1615
1731
|
# @return [String]
|
|
1616
1732
|
attr_accessor :updater_user_id
|
|
1617
1733
|
|
|
1618
|
-
#
|
|
1734
|
+
# Output only. Version of the monitor configuration.
|
|
1619
1735
|
# Corresponds to the JSON property `version`
|
|
1620
1736
|
# @return [Fixnum]
|
|
1621
1737
|
attr_accessor :version
|
|
@@ -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.16.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 = "20260830"
|
|
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.16.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.16.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:
|