google-cloud-service_health-v1 1.0.1 → 1.0.2
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 +4 -4
- data/lib/google/cloud/service_health/v1/service_health/client.rb +4 -3
- data/lib/google/cloud/service_health/v1/service_health/rest/client.rb +4 -3
- data/lib/google/cloud/service_health/v1/version.rb +1 -1
- data/proto_docs/google/api/client.rb +20 -0
- data/proto_docs/google/cloud/servicehealth/v1/event_resources.rb +13 -5
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 61d71e562f3bf7cabb08927786a8856d48a7d0a647d44976ed77e5f60b96eb26
|
4
|
+
data.tar.gz: f523a887b3e9ade129d6c0d306bb8d40241da29026b0bb4c9b572685dc4406d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b6ab8c675b26031af60d68f2f8d3f3b951dcdf2fd984aed7f7a843daa38e12012c698f391ef0a17b27b960135f61701b0d5f7f8b381a59dd8eff5059a1143705
|
7
|
+
data.tar.gz: c39a86fb53644d26c4bb13fa09cc4b9dd37ae6c9eb076127eb96ac85abba6196ef74cd8c6336bf6e957b0eca0ddf2c6311463a6b97088f167391b9a64721fd0a
|
@@ -251,7 +251,8 @@ module Google
|
|
251
251
|
# response. The expression takes the following forms: <br>
|
252
252
|
# * field=value for `category` and `state`<br>
|
253
253
|
# * field <, >, <=, or >= value for `update_time` <br>
|
254
|
-
# Examples: `category=INCIDENT`, `update_time>=2000-01-01T11:30:00-04:00
|
254
|
+
# Examples: `category=INCIDENT`, `update_time>="2000-01-01T11:30:00-04:00"`,
|
255
|
+
# `event_impacts.product.product_name:"Eventarc"`
|
255
256
|
# <br>
|
256
257
|
#
|
257
258
|
# Multiple filter queries are separated by spaces. Example:
|
@@ -261,7 +262,7 @@ module Google
|
|
261
262
|
# AND and OR expressions explicitly.
|
262
263
|
#
|
263
264
|
# Filter is supported for the following fields: `category`, `state`,
|
264
|
-
# `update_time`
|
265
|
+
# `update_time`, `event_impacts.product.product_name`
|
265
266
|
# @param view [::Google::Cloud::ServiceHealth::V1::EventView]
|
266
267
|
# Optional. Event fields to include in response.
|
267
268
|
#
|
@@ -477,7 +478,7 @@ module Google
|
|
477
478
|
# * field=value for `category` and `state`
|
478
479
|
# * field <, >, <=, or >= value for `update_time`
|
479
480
|
#
|
480
|
-
# Examples: `category=INCIDENT`, `update_time>=2000-01-01T11:30:00-04:00`
|
481
|
+
# Examples: `category=INCIDENT`, `update_time>="2000-01-01T11:30:00-04:00"`
|
481
482
|
#
|
482
483
|
# Multiple filter queries are space-separated. Example:
|
483
484
|
# `category=INCIDENT state=ACTIVE`.
|
@@ -245,7 +245,8 @@ module Google
|
|
245
245
|
# response. The expression takes the following forms: <br>
|
246
246
|
# * field=value for `category` and `state`<br>
|
247
247
|
# * field <, >, <=, or >= value for `update_time` <br>
|
248
|
-
# Examples: `category=INCIDENT`, `update_time>=2000-01-01T11:30:00-04:00
|
248
|
+
# Examples: `category=INCIDENT`, `update_time>="2000-01-01T11:30:00-04:00"`,
|
249
|
+
# `event_impacts.product.product_name:"Eventarc"`
|
249
250
|
# <br>
|
250
251
|
#
|
251
252
|
# Multiple filter queries are separated by spaces. Example:
|
@@ -255,7 +256,7 @@ module Google
|
|
255
256
|
# AND and OR expressions explicitly.
|
256
257
|
#
|
257
258
|
# Filter is supported for the following fields: `category`, `state`,
|
258
|
-
# `update_time`
|
259
|
+
# `update_time`, `event_impacts.product.product_name`
|
259
260
|
# @param view [::Google::Cloud::ServiceHealth::V1::EventView]
|
260
261
|
# Optional. Event fields to include in response.
|
261
262
|
# @yield [result, operation] Access the result along with the TransportOperation object
|
@@ -456,7 +457,7 @@ module Google
|
|
456
457
|
# * field=value for `category` and `state`
|
457
458
|
# * field <, >, <=, or >= value for `update_time`
|
458
459
|
#
|
459
|
-
# Examples: `category=INCIDENT`, `update_time>=2000-01-01T11:30:00-04:00`
|
460
|
+
# Examples: `category=INCIDENT`, `update_time>="2000-01-01T11:30:00-04:00"`
|
460
461
|
#
|
461
462
|
# Multiple filter queries are space-separated. Example:
|
462
463
|
# `category=INCIDENT state=ACTIVE`.
|
@@ -28,6 +28,9 @@ module Google
|
|
28
28
|
# @!attribute [rw] destinations
|
29
29
|
# @return [::Array<::Google::Api::ClientLibraryDestination>]
|
30
30
|
# The destination where API teams want this client library to be published.
|
31
|
+
# @!attribute [rw] selective_gapic_generation
|
32
|
+
# @return [::Google::Api::SelectiveGapicGeneration]
|
33
|
+
# Configuration for which RPCs should be generated in the GAPIC client.
|
31
34
|
class CommonLanguageSettings
|
32
35
|
include ::Google::Protobuf::MessageExts
|
33
36
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -212,6 +215,12 @@ module Google
|
|
212
215
|
# enabled. By default, asynchronous REST clients will not be generated.
|
213
216
|
# This feature will be enabled by default 1 month after launching the
|
214
217
|
# feature in preview packages.
|
218
|
+
# @!attribute [rw] protobuf_pythonic_types_enabled
|
219
|
+
# @return [::Boolean]
|
220
|
+
# Enables generation of protobuf code using new types that are more
|
221
|
+
# Pythonic which are included in `protobuf>=5.29.x`. This feature will be
|
222
|
+
# enabled by default 1 month after launching the feature in preview
|
223
|
+
# packages.
|
215
224
|
class ExperimentalFeatures
|
216
225
|
include ::Google::Protobuf::MessageExts
|
217
226
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -375,6 +384,17 @@ module Google
|
|
375
384
|
end
|
376
385
|
end
|
377
386
|
|
387
|
+
# This message is used to configure the generation of a subset of the RPCs in
|
388
|
+
# a service for client libraries.
|
389
|
+
# @!attribute [rw] methods
|
390
|
+
# @return [::Array<::String>]
|
391
|
+
# An allowlist of the fully qualified names of RPCs that should be included
|
392
|
+
# on public client surfaces.
|
393
|
+
class SelectiveGapicGeneration
|
394
|
+
include ::Google::Protobuf::MessageExts
|
395
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
396
|
+
end
|
397
|
+
|
378
398
|
# The organization for which the client libraries are being published.
|
379
399
|
# Affects the url where generated docs are published, etc.
|
380
400
|
module ClientLibraryOrganization
|
@@ -416,6 +416,7 @@ module Google
|
|
416
416
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
417
417
|
end
|
418
418
|
|
419
|
+
# Message for requesting list of events.
|
419
420
|
# @!attribute [rw] parent
|
420
421
|
# @return [::String]
|
421
422
|
# Required. Parent value using the form
|
@@ -445,7 +446,8 @@ module Google
|
|
445
446
|
# response. The expression takes the following forms: <br>
|
446
447
|
# * field=value for `category` and `state`<br>
|
447
448
|
# * field <, >, <=, or >= value for `update_time` <br>
|
448
|
-
# Examples: `category=INCIDENT`, `update_time>=2000-01-01T11:30:00-04:00
|
449
|
+
# Examples: `category=INCIDENT`, `update_time>="2000-01-01T11:30:00-04:00"`,
|
450
|
+
# `event_impacts.product.product_name:"Eventarc"`
|
449
451
|
# <br>
|
450
452
|
#
|
451
453
|
# Multiple filter queries are separated by spaces. Example:
|
@@ -455,7 +457,7 @@ module Google
|
|
455
457
|
# AND and OR expressions explicitly.
|
456
458
|
#
|
457
459
|
# Filter is supported for the following fields: `category`, `state`,
|
458
|
-
# `update_time`
|
460
|
+
# `update_time`, `event_impacts.product.product_name`
|
459
461
|
# @!attribute [rw] view
|
460
462
|
# @return [::Google::Cloud::ServiceHealth::V1::EventView]
|
461
463
|
# Optional. Event fields to include in response.
|
@@ -464,6 +466,7 @@ module Google
|
|
464
466
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
465
467
|
end
|
466
468
|
|
469
|
+
# Message for response to listing events.
|
467
470
|
# @!attribute [r] events
|
468
471
|
# @return [::Array<::Google::Cloud::ServiceHealth::V1::Event>]
|
469
472
|
# Output only. List of events.
|
@@ -482,7 +485,7 @@ module Google
|
|
482
485
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
483
486
|
end
|
484
487
|
|
485
|
-
# Message for getting an event
|
488
|
+
# Message for getting an event.
|
486
489
|
# @!attribute [rw] name
|
487
490
|
# @return [::String]
|
488
491
|
# Required. Unique name of the event in this scope including project
|
@@ -497,6 +500,7 @@ module Google
|
|
497
500
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
498
501
|
end
|
499
502
|
|
503
|
+
# Message for requesting list of organization events.
|
500
504
|
# @!attribute [rw] parent
|
501
505
|
# @return [::String]
|
502
506
|
# Required. Parent value using the form
|
@@ -533,7 +537,7 @@ module Google
|
|
533
537
|
# * field=value for `category` and `state`
|
534
538
|
# * field <, >, <=, or >= value for `update_time`
|
535
539
|
#
|
536
|
-
# Examples: `category=INCIDENT`, `update_time>=2000-01-01T11:30:00-04:00`
|
540
|
+
# Examples: `category=INCIDENT`, `update_time>="2000-01-01T11:30:00-04:00"`
|
537
541
|
#
|
538
542
|
# Multiple filter queries are space-separated. Example:
|
539
543
|
# `category=INCIDENT state=ACTIVE`.
|
@@ -551,6 +555,7 @@ module Google
|
|
551
555
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
552
556
|
end
|
553
557
|
|
558
|
+
# Message for response to listing organization events.
|
554
559
|
# @!attribute [r] organization_events
|
555
560
|
# @return [::Array<::Google::Cloud::ServiceHealth::V1::OrganizationEvent>]
|
556
561
|
# Output only. List of organization events affecting an organization.
|
@@ -569,6 +574,7 @@ module Google
|
|
569
574
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
570
575
|
end
|
571
576
|
|
577
|
+
# Message for getting an organization event.
|
572
578
|
# @!attribute [rw] name
|
573
579
|
# @return [::String]
|
574
580
|
# Required. Unique name of the event in this scope including organization and
|
@@ -585,7 +591,7 @@ module Google
|
|
585
591
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
586
592
|
end
|
587
593
|
|
588
|
-
# Message for requesting list of
|
594
|
+
# Message for requesting list of organization impacts.
|
589
595
|
# @!attribute [rw] parent
|
590
596
|
# @return [::String]
|
591
597
|
# Required. Parent value using the form
|
@@ -637,6 +643,7 @@ module Google
|
|
637
643
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
638
644
|
end
|
639
645
|
|
646
|
+
# Message for response to listing organization impacts.
|
640
647
|
# @!attribute [r] organization_impacts
|
641
648
|
# @return [::Array<::Google::Cloud::ServiceHealth::V1::OrganizationImpact>]
|
642
649
|
# Output only. List of
|
@@ -657,6 +664,7 @@ module Google
|
|
657
664
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
658
665
|
end
|
659
666
|
|
667
|
+
# Message for getting an organization impact.
|
660
668
|
# @!attribute [rw] name
|
661
669
|
# @return [::String]
|
662
670
|
# Required. Name of the resource using the form
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-service_health-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-11-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -121,7 +121,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
121
121
|
- !ruby/object:Gem::Version
|
122
122
|
version: '0'
|
123
123
|
requirements: []
|
124
|
-
rubygems_version: 3.5.
|
124
|
+
rubygems_version: 3.5.22
|
125
125
|
signing_key:
|
126
126
|
specification_version: 4
|
127
127
|
summary: Personalized Service Health helps you gain visibility into disruptive events
|