google-apis-monitoring_v1 0.41.0 → 0.42.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c5202b58c01e315cd7e9614c8e64177a7cfb5eb03cfeea640e2e962ac3e0ef8c
|
4
|
+
data.tar.gz: 43bd1316680aea3f64abce91be7f9856f94aa21bee5e02ef1012a221e6c1b64c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 77e8c10a6454b68065097a78d908d3b030d53089f9b904a8d4df73d050390623b41efb8464d70b5a1d14680aa27aee46d8849298476d6489b5e0c7548500d846
|
7
|
+
data.tar.gz: 717e9c1de51aaf2e0121b2098199fc6663ea3c5ba5d8bbd18a9dfe8f6547e31d4af5c4abb9cf2bd233c7c8473d007f3454f4cef7ad5720dee8e55986835c97c3
|
data/CHANGELOG.md
CHANGED
@@ -669,6 +669,47 @@ module Google
|
|
669
669
|
end
|
670
670
|
end
|
671
671
|
|
672
|
+
# A widget that displays a list of error groups.
|
673
|
+
class ErrorReportingPanel
|
674
|
+
include Google::Apis::Core::Hashable
|
675
|
+
|
676
|
+
# The resource name of the Google Cloud Platform project. Written as projects/`
|
677
|
+
# projectID` or projects/`projectNumber`, where `projectID` and `projectNumber`
|
678
|
+
# can be found in the Google Cloud console (https://support.google.com/cloud/
|
679
|
+
# answer/6158840).Examples: projects/my-project-123, projects/5551234.
|
680
|
+
# Corresponds to the JSON property `projectNames`
|
681
|
+
# @return [Array<String>]
|
682
|
+
attr_accessor :project_names
|
683
|
+
|
684
|
+
# An identifier of the service, such as the name of the executable, job, or
|
685
|
+
# Google App Engine service name. This field is expected to have a low number of
|
686
|
+
# values that are relatively stable over time, as opposed to version, which can
|
687
|
+
# be changed whenever new code is deployed.Contains the service name for error
|
688
|
+
# reports extracted from Google App Engine logs or default if the App Engine
|
689
|
+
# default service is used.
|
690
|
+
# Corresponds to the JSON property `services`
|
691
|
+
# @return [Array<String>]
|
692
|
+
attr_accessor :services
|
693
|
+
|
694
|
+
# Represents the source code version that the developer provided, which could
|
695
|
+
# represent a version label or a Git SHA-1 hash, for example. For App Engine
|
696
|
+
# standard environment, the version is set to the version of the app.
|
697
|
+
# Corresponds to the JSON property `versions`
|
698
|
+
# @return [Array<String>]
|
699
|
+
attr_accessor :versions
|
700
|
+
|
701
|
+
def initialize(**args)
|
702
|
+
update!(**args)
|
703
|
+
end
|
704
|
+
|
705
|
+
# Update properties of this object
|
706
|
+
def update!(**args)
|
707
|
+
@project_names = args[:project_names] if args.key?(:project_names)
|
708
|
+
@services = args[:services] if args.key?(:services)
|
709
|
+
@versions = args[:versions] if args.key?(:versions)
|
710
|
+
end
|
711
|
+
end
|
712
|
+
|
672
713
|
# A single field of a message type.
|
673
714
|
class Field
|
674
715
|
include Google::Apis::Core::Hashable
|
@@ -1352,19 +1393,6 @@ module Google
|
|
1352
1393
|
attr_accessor :show_labels
|
1353
1394
|
alias_method :show_labels?, :show_labels
|
1354
1395
|
|
1355
|
-
# Optional. Indicates whether or not donut chart should show the total in the
|
1356
|
-
# middle
|
1357
|
-
# Corresponds to the JSON property `showTotal`
|
1358
|
-
# @return [Boolean]
|
1359
|
-
attr_accessor :show_total
|
1360
|
-
alias_method :show_total?, :show_total
|
1361
|
-
|
1362
|
-
# Optional. If slices's values are smaller than this value, they will be
|
1363
|
-
# combined into other category
|
1364
|
-
# Corresponds to the JSON property `sliceAggregatedThreshold`
|
1365
|
-
# @return [Float]
|
1366
|
-
attr_accessor :slice_aggregated_threshold
|
1367
|
-
|
1368
1396
|
def initialize(**args)
|
1369
1397
|
update!(**args)
|
1370
1398
|
end
|
@@ -1374,8 +1402,6 @@ module Google
|
|
1374
1402
|
@chart_type = args[:chart_type] if args.key?(:chart_type)
|
1375
1403
|
@data_sets = args[:data_sets] if args.key?(:data_sets)
|
1376
1404
|
@show_labels = args[:show_labels] if args.key?(:show_labels)
|
1377
|
-
@show_total = args[:show_total] if args.key?(:show_total)
|
1378
|
-
@slice_aggregated_threshold = args[:slice_aggregated_threshold] if args.key?(:slice_aggregated_threshold)
|
1379
1405
|
end
|
1380
1406
|
end
|
1381
1407
|
|
@@ -2508,6 +2534,17 @@ module Google
|
|
2508
2534
|
# @return [Google::Apis::MonitoringV1::CollapsibleGroup]
|
2509
2535
|
attr_accessor :collapsible_group
|
2510
2536
|
|
2537
|
+
# A widget that displays a list of error groups.
|
2538
|
+
# Corresponds to the JSON property `errorReportingPanel`
|
2539
|
+
# @return [Google::Apis::MonitoringV1::ErrorReportingPanel]
|
2540
|
+
attr_accessor :error_reporting_panel
|
2541
|
+
|
2542
|
+
# Optional. The widget id. Ids may be made up of alphanumerics, dashes and
|
2543
|
+
# underscores. Widget ids are optional.
|
2544
|
+
# Corresponds to the JSON property `id`
|
2545
|
+
# @return [String]
|
2546
|
+
attr_accessor :id
|
2547
|
+
|
2511
2548
|
# A widget that displays a list of incidents
|
2512
2549
|
# Corresponds to the JSON property `incidentList`
|
2513
2550
|
# @return [Google::Apis::MonitoringV1::IncidentList]
|
@@ -2558,6 +2595,8 @@ module Google
|
|
2558
2595
|
@alert_chart = args[:alert_chart] if args.key?(:alert_chart)
|
2559
2596
|
@blank = args[:blank] if args.key?(:blank)
|
2560
2597
|
@collapsible_group = args[:collapsible_group] if args.key?(:collapsible_group)
|
2598
|
+
@error_reporting_panel = args[:error_reporting_panel] if args.key?(:error_reporting_panel)
|
2599
|
+
@id = args[:id] if args.key?(:id)
|
2561
2600
|
@incident_list = args[:incident_list] if args.key?(:incident_list)
|
2562
2601
|
@logs_panel = args[:logs_panel] if args.key?(:logs_panel)
|
2563
2602
|
@pie_chart = args[:pie_chart] if args.key?(:pie_chart)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MonitoringV1
|
18
18
|
# Version of the google-apis-monitoring_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.42.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231016"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -118,6 +118,12 @@ module Google
|
|
118
118
|
include Google::Apis::Core::JsonObjectSupport
|
119
119
|
end
|
120
120
|
|
121
|
+
class ErrorReportingPanel
|
122
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
|
+
|
124
|
+
include Google::Apis::Core::JsonObjectSupport
|
125
|
+
end
|
126
|
+
|
121
127
|
class Field
|
122
128
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
129
|
|
@@ -566,6 +572,15 @@ module Google
|
|
566
572
|
end
|
567
573
|
end
|
568
574
|
|
575
|
+
class ErrorReportingPanel
|
576
|
+
# @private
|
577
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
578
|
+
collection :project_names, as: 'projectNames'
|
579
|
+
collection :services, as: 'services'
|
580
|
+
collection :versions, as: 'versions'
|
581
|
+
end
|
582
|
+
end
|
583
|
+
|
569
584
|
class Field
|
570
585
|
# @private
|
571
586
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -748,8 +763,6 @@ module Google
|
|
748
763
|
collection :data_sets, as: 'dataSets', class: Google::Apis::MonitoringV1::PieChartDataSet, decorator: Google::Apis::MonitoringV1::PieChartDataSet::Representation
|
749
764
|
|
750
765
|
property :show_labels, as: 'showLabels'
|
751
|
-
property :show_total, as: 'showTotal'
|
752
|
-
property :slice_aggregated_threshold, as: 'sliceAggregatedThreshold'
|
753
766
|
end
|
754
767
|
end
|
755
768
|
|
@@ -1038,6 +1051,9 @@ module Google
|
|
1038
1051
|
|
1039
1052
|
property :collapsible_group, as: 'collapsibleGroup', class: Google::Apis::MonitoringV1::CollapsibleGroup, decorator: Google::Apis::MonitoringV1::CollapsibleGroup::Representation
|
1040
1053
|
|
1054
|
+
property :error_reporting_panel, as: 'errorReportingPanel', class: Google::Apis::MonitoringV1::ErrorReportingPanel, decorator: Google::Apis::MonitoringV1::ErrorReportingPanel::Representation
|
1055
|
+
|
1056
|
+
property :id, as: 'id'
|
1041
1057
|
property :incident_list, as: 'incidentList', class: Google::Apis::MonitoringV1::IncidentList, decorator: Google::Apis::MonitoringV1::IncidentList::Representation
|
1042
1058
|
|
1043
1059
|
property :logs_panel, as: 'logsPanel', class: Google::Apis::MonitoringV1::LogsPanel, decorator: Google::Apis::MonitoringV1::LogsPanel::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-monitoring_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.42.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-10-
|
11
|
+
date: 2023-10-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-monitoring_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v1/v0.42.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-monitoring_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|