google-apis-threatintelligence_v1beta 0.13.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: 1854f4ca06e4f984ad8e50fe3667d4e093be1b14dfda2218072c2bdd035cdce4
4
- data.tar.gz: 146d745fa8300dff472905b66aa55174cdca30c3153590f5aad778cfec8ecbcd
3
+ metadata.gz: 22ecde48867ebb3934923ea9a5a1542ba65922d38023ebe2ca4e938a0e7b5cee
4
+ data.tar.gz: eeec8f1217f64bb75472708b4cc1393727f0632869d25220476405e40b9af66d
5
5
  SHA512:
6
- metadata.gz: 9a63d20b2a026988be4a486723d5b23beee01a2fa6f57f23fff6ddef5a2df2970d8ffd6c188540a413a4b42cfb540bf4ac55caef6b5670bbffec6fe710466d75
7
- data.tar.gz: 80c702adb13455be5a30b35bf7590dc2b76ba55ba09e16113f10da049b138b25ef37de8a3befcac4db6433c5718824d5803f6d1bffd674c0acb986ec47ec48b8
6
+ metadata.gz: 0b023529733575526f69010b79d2d32d56880e23580e0d59965f9c6fe43fe05a6d40bff073561a13561736f8ede17696c1b7646959c4be2b7f735a4abedbb7b0
7
+ data.tar.gz: 43c5e9f16816177791cda76836596cfc20719b1ec0c48e33fc22d94b7f93b6a7dafc40a1b8cbd6a584f6550e734cd97530ac5d9fefc38b342ace239b653e2dac
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-threatintelligence_v1beta
2
2
 
3
+ ### v0.15.0 (2026-08-30)
4
+
5
+ * Regenerated from discovery document revision 20260823
6
+
7
+ ### v0.14.0 (2026-08-23)
8
+
9
+ * Regenerated from discovery document revision 20260816
10
+
3
11
  ### v0.13.0 (2026-08-09)
4
12
 
5
13
  * Regenerated from discovery document revision 20260803
@@ -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
@@ -516,19 +522,37 @@ module Google
516
522
  class CustomThreatScenarioConfig
517
523
  include Google::Apis::Core::Hashable
518
524
 
525
+ # Output only. The compiled Lucene query string.
526
+ # Corresponds to the JSON property `compiledLuceneQuery`
527
+ # @return [String]
528
+ attr_accessor :compiled_lucene_query
529
+
519
530
  # Required. The condition driving the scenario, stored as a stringified JSON.
520
531
  # This is used to query/filter documents.
521
532
  # Corresponds to the JSON property `documentCondition`
522
533
  # @return [String]
523
534
  attr_accessor :document_condition
524
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
+
541
+ # Legacy metadata associated with this scenario/monitor.
542
+ # Corresponds to the JSON property `legacyMonitorMetadata`
543
+ # @return [Google::Apis::ThreatintelligenceV1beta::LegacyMetadata]
544
+ attr_accessor :legacy_monitor_metadata
545
+
525
546
  def initialize(**args)
526
547
  update!(**args)
527
548
  end
528
549
 
529
550
  # Update properties of this object
530
551
  def update!(**args)
552
+ @compiled_lucene_query = args[:compiled_lucene_query] if args.key?(:compiled_lucene_query)
531
553
  @document_condition = args[:document_condition] if args.key?(:document_condition)
554
+ @document_query = args[:document_query] if args.key?(:document_query)
555
+ @legacy_monitor_metadata = args[:legacy_monitor_metadata] if args.key?(:legacy_monitor_metadata)
532
556
  end
533
557
  end
534
558
 
@@ -1089,6 +1113,107 @@ module Google
1089
1113
  end
1090
1114
  end
1091
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
+
1092
1217
  # Response message for EnumerateAlertFacets.
1093
1218
  class EnumerateAlertFacetsResponse
1094
1219
  include Google::Apis::Core::Hashable
@@ -1377,6 +1502,25 @@ module Google
1377
1502
  end
1378
1503
  end
1379
1504
 
1505
+ # Response message for GetPassword.
1506
+ class GetPasswordResponse
1507
+ include Google::Apis::Core::Hashable
1508
+
1509
+ # The decrypted cleartext password for the compromised credential.
1510
+ # Corresponds to the JSON property `password`
1511
+ # @return [String]
1512
+ attr_accessor :password
1513
+
1514
+ def initialize(**args)
1515
+ update!(**args)
1516
+ end
1517
+
1518
+ # Update properties of this object
1519
+ def update!(**args)
1520
+ @password = args[:password] if args.key?(:password)
1521
+ end
1522
+ end
1523
+
1380
1524
  # Captures the specific details of InitialAccessBroker (IAB) alert.
1381
1525
  class InitialAccessBrokerAlertDetail
1382
1526
  include Google::Apis::Core::Hashable
@@ -1502,6 +1646,118 @@ module Google
1502
1646
  end
1503
1647
  end
1504
1648
 
1649
+ # Legacy metadata associated with this scenario/monitor.
1650
+ class LegacyMetadata
1651
+ include Google::Apis::Core::Hashable
1652
+
1653
+ # Optional. Whether aggregation is enabled for alerts from this monitor.
1654
+ # Corresponds to the JSON property `aggregationEnabled`
1655
+ # @return [Boolean]
1656
+ attr_accessor :aggregation_enabled
1657
+ alias_method :aggregation_enabled?, :aggregation_enabled
1658
+
1659
+ # Optional. Similarity threshold for aggregation.
1660
+ # Corresponds to the JSON property `aggregationSimilarity`
1661
+ # @return [Float]
1662
+ attr_accessor :aggregation_similarity
1663
+
1664
+ # Optional. Version of the condition schema.
1665
+ # Corresponds to the JSON property `conditionVersion`
1666
+ # @return [Fixnum]
1667
+ attr_accessor :condition_version
1668
+
1669
+ # Optional. User ID who created the monitor.
1670
+ # Corresponds to the JSON property `creatorUserId`
1671
+ # @return [String]
1672
+ attr_accessor :creator_user_id
1673
+
1674
+ # Optional. Description of the legacy monitor.
1675
+ # Corresponds to the JSON property `description`
1676
+ # @return [String]
1677
+ attr_accessor :description
1678
+
1679
+ # Optional. Code indicating why the monitor is disabled (if applicable).
1680
+ # Corresponds to the JSON property `disabledCode`
1681
+ # @return [String]
1682
+ attr_accessor :disabled_code
1683
+
1684
+ # Optional. Reason why the monitor is disabled (if applicable).
1685
+ # Corresponds to the JSON property `disabledReason`
1686
+ # @return [String]
1687
+ attr_accessor :disabled_reason
1688
+
1689
+ # Optional. Name of the legacy monitor.
1690
+ # Corresponds to the JSON property `displayName`
1691
+ # @return [String]
1692
+ attr_accessor :display_name
1693
+
1694
+ # Optional. Whether email notifications are enabled.
1695
+ # Corresponds to the JSON property `emailNotificationEnabled`
1696
+ # @return [Boolean]
1697
+ attr_accessor :email_notification_enabled
1698
+ alias_method :email_notification_enabled?, :email_notification_enabled
1699
+
1700
+ # Optional. Whether email notifications are intermediate/immediate.
1701
+ # Corresponds to the JSON property `emailNotificationImmediate`
1702
+ # @return [Boolean]
1703
+ attr_accessor :email_notification_immediate
1704
+ alias_method :email_notification_immediate?, :email_notification_immediate
1705
+
1706
+ # Optional. Unique identifier of the legacy monitor.
1707
+ # Corresponds to the JSON property `legacyMonitorId`
1708
+ # @return [String]
1709
+ attr_accessor :legacy_monitor_id
1710
+
1711
+ # Optional. Time the legacy monitor was considered stale.
1712
+ # Corresponds to the JSON property `staleTime`
1713
+ # @return [String]
1714
+ attr_accessor :stale_time
1715
+
1716
+ # Optional. ID of the template this monitor was created from.
1717
+ # Corresponds to the JSON property `templateId`
1718
+ # @return [String]
1719
+ attr_accessor :template_id
1720
+
1721
+ # Optional. ID of the tenant owning the monitor.
1722
+ # Corresponds to the JSON property `tenantId`
1723
+ # @return [String]
1724
+ attr_accessor :tenant_id
1725
+
1726
+ # Optional. User ID who last updated the monitor.
1727
+ # Corresponds to the JSON property `updaterUserId`
1728
+ # @return [String]
1729
+ attr_accessor :updater_user_id
1730
+
1731
+ # Optional. Version of the monitor configuration.
1732
+ # Corresponds to the JSON property `version`
1733
+ # @return [Fixnum]
1734
+ attr_accessor :version
1735
+
1736
+ def initialize(**args)
1737
+ update!(**args)
1738
+ end
1739
+
1740
+ # Update properties of this object
1741
+ def update!(**args)
1742
+ @aggregation_enabled = args[:aggregation_enabled] if args.key?(:aggregation_enabled)
1743
+ @aggregation_similarity = args[:aggregation_similarity] if args.key?(:aggregation_similarity)
1744
+ @condition_version = args[:condition_version] if args.key?(:condition_version)
1745
+ @creator_user_id = args[:creator_user_id] if args.key?(:creator_user_id)
1746
+ @description = args[:description] if args.key?(:description)
1747
+ @disabled_code = args[:disabled_code] if args.key?(:disabled_code)
1748
+ @disabled_reason = args[:disabled_reason] if args.key?(:disabled_reason)
1749
+ @display_name = args[:display_name] if args.key?(:display_name)
1750
+ @email_notification_enabled = args[:email_notification_enabled] if args.key?(:email_notification_enabled)
1751
+ @email_notification_immediate = args[:email_notification_immediate] if args.key?(:email_notification_immediate)
1752
+ @legacy_monitor_id = args[:legacy_monitor_id] if args.key?(:legacy_monitor_id)
1753
+ @stale_time = args[:stale_time] if args.key?(:stale_time)
1754
+ @template_id = args[:template_id] if args.key?(:template_id)
1755
+ @tenant_id = args[:tenant_id] if args.key?(:tenant_id)
1756
+ @updater_user_id = args[:updater_user_id] if args.key?(:updater_user_id)
1757
+ @version = args[:version] if args.key?(:version)
1758
+ end
1759
+ end
1760
+
1505
1761
  # Response message for ListAlerts.
1506
1762
  class ListAlertsResponse
1507
1763
  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.13.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 = "20260803"
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
 
@@ -208,6 +232,12 @@ module Google
208
232
  include Google::Apis::Core::JsonObjectSupport
209
233
  end
210
234
 
235
+ class GetPasswordResponse
236
+ class Representation < Google::Apis::Core::JsonRepresentation; end
237
+
238
+ include Google::Apis::Core::JsonObjectSupport
239
+ end
240
+
211
241
  class InitialAccessBrokerAlertDetail
212
242
  class Representation < Google::Apis::Core::JsonRepresentation; end
213
243
 
@@ -232,6 +262,12 @@ module Google
232
262
  include Google::Apis::Core::JsonObjectSupport
233
263
  end
234
264
 
265
+ class LegacyMetadata
266
+ class Representation < Google::Apis::Core::JsonRepresentation; end
267
+
268
+ include Google::Apis::Core::JsonObjectSupport
269
+ end
270
+
235
271
  class ListAlertsResponse
236
272
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
273
 
@@ -507,6 +543,8 @@ module Google
507
543
  property :customer_profile, as: 'customerProfile', class: Google::Apis::ThreatintelligenceV1beta::CustomerProfileConfig, decorator: Google::Apis::ThreatintelligenceV1beta::CustomerProfileConfig::Representation
508
544
 
509
545
  property :detail_type, as: 'detailType'
546
+ property :domain_configuration, as: 'domainConfiguration', class: Google::Apis::ThreatintelligenceV1beta::DomainConfiguration, decorator: Google::Apis::ThreatintelligenceV1beta::DomainConfiguration::Representation
547
+
510
548
  property :technology_watchlist, as: 'technologyWatchlist', class: Google::Apis::ThreatintelligenceV1beta::TechnologyWatchListConfig, decorator: Google::Apis::ThreatintelligenceV1beta::TechnologyWatchListConfig::Representation
511
549
 
512
550
  end
@@ -525,7 +563,12 @@ module Google
525
563
  class CustomThreatScenarioConfig
526
564
  # @private
527
565
  class Representation < Google::Apis::Core::JsonRepresentation
566
+ property :compiled_lucene_query, as: 'compiledLuceneQuery'
528
567
  property :document_condition, as: 'documentCondition'
568
+ property :document_query, as: 'documentQuery', class: Google::Apis::ThreatintelligenceV1beta::DocumentQuery, decorator: Google::Apis::ThreatintelligenceV1beta::DocumentQuery::Representation
569
+
570
+ property :legacy_monitor_metadata, as: 'legacyMonitorMetadata', class: Google::Apis::ThreatintelligenceV1beta::LegacyMetadata, decorator: Google::Apis::ThreatintelligenceV1beta::LegacyMetadata::Representation
571
+
529
572
  end
530
573
  end
531
574
 
@@ -696,6 +739,40 @@ module Google
696
739
  end
697
740
  end
698
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
+
699
776
  class EnumerateAlertFacetsResponse
700
777
  # @private
701
778
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -778,6 +855,13 @@ module Google
778
855
  end
779
856
  end
780
857
 
858
+ class GetPasswordResponse
859
+ # @private
860
+ class Representation < Google::Apis::Core::JsonRepresentation
861
+ property :password, as: 'password'
862
+ end
863
+ end
864
+
781
865
  class InitialAccessBrokerAlertDetail
782
866
  # @private
783
867
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -812,6 +896,28 @@ module Google
812
896
  end
813
897
  end
814
898
 
899
+ class LegacyMetadata
900
+ # @private
901
+ class Representation < Google::Apis::Core::JsonRepresentation
902
+ property :aggregation_enabled, as: 'aggregationEnabled'
903
+ property :aggregation_similarity, as: 'aggregationSimilarity'
904
+ property :condition_version, as: 'conditionVersion'
905
+ property :creator_user_id, as: 'creatorUserId'
906
+ property :description, as: 'description'
907
+ property :disabled_code, as: 'disabledCode'
908
+ property :disabled_reason, as: 'disabledReason'
909
+ property :display_name, as: 'displayName'
910
+ property :email_notification_enabled, as: 'emailNotificationEnabled'
911
+ property :email_notification_immediate, as: 'emailNotificationImmediate'
912
+ property :legacy_monitor_id, as: 'legacyMonitorId'
913
+ property :stale_time, as: 'staleTime'
914
+ property :template_id, as: 'templateId'
915
+ property :tenant_id, as: 'tenantId'
916
+ property :updater_user_id, as: 'updaterUserId'
917
+ property :version, as: 'version'
918
+ end
919
+ end
920
+
815
921
  class ListAlertsResponse
816
922
  # @private
817
923
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -287,7 +287,8 @@ module Google
287
287
 
288
288
  # Get the decrypted password of an alert.
289
289
  # @param [String] name
290
- # Required. Name of the alert to get. Format: projects/`project`/alerts/`alert`
290
+ # Required. Name of the alert to get password for. Format: projects/`project`/
291
+ # alerts/`alert`
291
292
  # @param [String] fields
292
293
  # Selector specifying which fields to include in a partial response.
293
294
  # @param [String] quota_user
@@ -297,18 +298,18 @@ module Google
297
298
  # Request-specific options
298
299
  #
299
300
  # @yield [result, err] Result & error if block supplied
300
- # @yieldparam result [Google::Apis::ThreatintelligenceV1beta::Alert] parsed result object
301
+ # @yieldparam result [Google::Apis::ThreatintelligenceV1beta::GetPasswordResponse] parsed result object
301
302
  # @yieldparam err [StandardError] error object if request failed
302
303
  #
303
- # @return [Google::Apis::ThreatintelligenceV1beta::Alert]
304
+ # @return [Google::Apis::ThreatintelligenceV1beta::GetPasswordResponse]
304
305
  #
305
306
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
306
307
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
307
308
  # @raise [Google::Apis::AuthorizationError] Authorization is required
308
309
  def get_project_alert_password(name, fields: nil, quota_user: nil, options: nil, &block)
309
310
  command = make_simple_command(:get, 'v1beta/{+name}:getPassword', options)
310
- command.response_representation = Google::Apis::ThreatintelligenceV1beta::Alert::Representation
311
- command.response_class = Google::Apis::ThreatintelligenceV1beta::Alert
311
+ command.response_representation = Google::Apis::ThreatintelligenceV1beta::GetPasswordResponse::Representation
312
+ command.response_class = Google::Apis::ThreatintelligenceV1beta::GetPasswordResponse
312
313
  command.params['name'] = name unless name.nil?
313
314
  command.query['fields'] = fields unless fields.nil?
314
315
  command.query['quotaUser'] = quota_user unless quota_user.nil?
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.13.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.13.0
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: