google-apis-monitoring_v3 0.3.0 → 0.8.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 +4 -4
- data/CHANGELOG.md +22 -0
- data/lib/google/apis/monitoring_v3.rb +1 -1
- data/lib/google/apis/monitoring_v3/classes.rb +56 -2
- data/lib/google/apis/monitoring_v3/gem_version.rb +3 -3
- data/lib/google/apis/monitoring_v3/representations.rb +17 -0
- data/lib/google/apis/monitoring_v3/service.rb +66 -50
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 16fd8889b71145bc6711cd640b38d66587a94dd1f78dc1d07fa1ba9852dd9d25
|
4
|
+
data.tar.gz: 605b19913786bc63a5da9e2597b9ddcc976e17030cb882b92a3070cdc05a1e22
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b8b4eaf558e4c47b29824f1f6af6e9e4e863c1c919a3a32973b492db9360b15dae254dbd20a2bf3c411ddde7386032ef94cc2da2248c5378dcba51c11dea9bb4
|
7
|
+
data.tar.gz: 18fa015a9b7cf91b7e4e94146b62e8c4a9b4dce5dfad13f5d0e6682df598fcd4e2e830409943fd3edee4db596ef9046690123e31244821b1aa2b348881aae784
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,27 @@
|
|
1
1
|
# Release history for google-apis-monitoring_v3
|
2
2
|
|
3
|
+
### v0.8.0 (2021-06-18)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210614
|
6
|
+
* Regenerated using generator version 0.3.0
|
7
|
+
|
8
|
+
### v0.7.0 (2021-05-19)
|
9
|
+
|
10
|
+
* Unspecified changes
|
11
|
+
|
12
|
+
### v0.6.0 (2021-04-30)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20210427
|
15
|
+
|
16
|
+
### v0.5.0 (2021-04-02)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20210326
|
19
|
+
|
20
|
+
### v0.4.0 (2021-03-26)
|
21
|
+
|
22
|
+
* Regenerated from discovery document revision 20210322
|
23
|
+
* Regenerated using generator version 0.2.0
|
24
|
+
|
3
25
|
### v0.3.0 (2021-03-05)
|
4
26
|
|
5
27
|
* Regenerated from discovery document revision 20210227
|
@@ -33,7 +33,7 @@ module Google
|
|
33
33
|
# This is NOT the gem version.
|
34
34
|
VERSION = 'V3'
|
35
35
|
|
36
|
-
#
|
36
|
+
# See, edit, configure, and delete your Google Cloud Platform data
|
37
37
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
38
38
|
|
39
39
|
# View and write monitoring data for all of your Google and third-party Cloud and API projects
|
@@ -2929,6 +2929,38 @@ module Google
|
|
2929
2929
|
end
|
2930
2930
|
end
|
2931
2931
|
|
2932
|
+
# Contains metadata for longrunning operation for the edit Metrics Scope
|
2933
|
+
# endpoints.
|
2934
|
+
class OperationMetadata
|
2935
|
+
include Google::Apis::Core::Hashable
|
2936
|
+
|
2937
|
+
# The time when the batch request was received.
|
2938
|
+
# Corresponds to the JSON property `createTime`
|
2939
|
+
# @return [String]
|
2940
|
+
attr_accessor :create_time
|
2941
|
+
|
2942
|
+
# Current state of the batch operation.
|
2943
|
+
# Corresponds to the JSON property `state`
|
2944
|
+
# @return [String]
|
2945
|
+
attr_accessor :state
|
2946
|
+
|
2947
|
+
# The time when the operation result was last updated.
|
2948
|
+
# Corresponds to the JSON property `updateTime`
|
2949
|
+
# @return [String]
|
2950
|
+
attr_accessor :update_time
|
2951
|
+
|
2952
|
+
def initialize(**args)
|
2953
|
+
update!(**args)
|
2954
|
+
end
|
2955
|
+
|
2956
|
+
# Update properties of this object
|
2957
|
+
def update!(**args)
|
2958
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
2959
|
+
@state = args[:state] if args.key?(:state)
|
2960
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
2961
|
+
end
|
2962
|
+
end
|
2963
|
+
|
2932
2964
|
# A protocol buffer option, which can be attached to a message, field,
|
2933
2965
|
# enumeration, etc.
|
2934
2966
|
class Option
|
@@ -3328,6 +3360,16 @@ module Google
|
|
3328
3360
|
# @return [Google::Apis::MonitoringV3::Telemetry]
|
3329
3361
|
attr_accessor :telemetry
|
3330
3362
|
|
3363
|
+
# Labels which have been used to annotate the service. Label keys must start
|
3364
|
+
# with a letter. Label keys and values may contain lowercase letters, numbers,
|
3365
|
+
# underscores, and dashes. Label keys and values have a maximum length of 63
|
3366
|
+
# characters, and must be less than 128 bytes in size. Up to 64 label entries
|
3367
|
+
# may be stored. For labels which do not have a semantic value, the empty string
|
3368
|
+
# may be supplied for the label value.
|
3369
|
+
# Corresponds to the JSON property `userLabels`
|
3370
|
+
# @return [Hash<String,String>]
|
3371
|
+
attr_accessor :user_labels
|
3372
|
+
|
3331
3373
|
def initialize(**args)
|
3332
3374
|
update!(**args)
|
3333
3375
|
end
|
@@ -3343,6 +3385,7 @@ module Google
|
|
3343
3385
|
@mesh_istio = args[:mesh_istio] if args.key?(:mesh_istio)
|
3344
3386
|
@name = args[:name] if args.key?(:name)
|
3345
3387
|
@telemetry = args[:telemetry] if args.key?(:telemetry)
|
3388
|
+
@user_labels = args[:user_labels] if args.key?(:user_labels)
|
3346
3389
|
end
|
3347
3390
|
end
|
3348
3391
|
|
@@ -3449,6 +3492,16 @@ module Google
|
|
3449
3492
|
# @return [Google::Apis::MonitoringV3::ServiceLevelIndicator]
|
3450
3493
|
attr_accessor :service_level_indicator
|
3451
3494
|
|
3495
|
+
# Labels which have been used to annotate the service-level objective. Label
|
3496
|
+
# keys must start with a letter. Label keys and values may contain lowercase
|
3497
|
+
# letters, numbers, underscores, and dashes. Label keys and values have a
|
3498
|
+
# maximum length of 63 characters, and must be less than 128 bytes in size. Up
|
3499
|
+
# to 64 label entries may be stored. For labels which do not have a semantic
|
3500
|
+
# value, the empty string may be supplied for the label value.
|
3501
|
+
# Corresponds to the JSON property `userLabels`
|
3502
|
+
# @return [Hash<String,String>]
|
3503
|
+
attr_accessor :user_labels
|
3504
|
+
|
3452
3505
|
def initialize(**args)
|
3453
3506
|
update!(**args)
|
3454
3507
|
end
|
@@ -3461,6 +3514,7 @@ module Google
|
|
3461
3514
|
@name = args[:name] if args.key?(:name)
|
3462
3515
|
@rolling_period = args[:rolling_period] if args.key?(:rolling_period)
|
3463
3516
|
@service_level_indicator = args[:service_level_indicator] if args.key?(:service_level_indicator)
|
3517
|
+
@user_labels = args[:user_labels] if args.key?(:user_labels)
|
3464
3518
|
end
|
3465
3519
|
end
|
3466
3520
|
|
@@ -3485,8 +3539,8 @@ module Google
|
|
3485
3539
|
end
|
3486
3540
|
end
|
3487
3541
|
|
3488
|
-
# The context of a span
|
3489
|
-
# aggregation.It contains the name of a span with format: projects/[
|
3542
|
+
# The context of a span. This is attached to an Exemplar in Distribution values
|
3543
|
+
# during aggregation.It contains the name of a span with format: projects/[
|
3490
3544
|
# PROJECT_ID_OR_NUMBER]/traces/[TRACE_ID]/spans/[SPAN_ID]
|
3491
3545
|
class SpanContext
|
3492
3546
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MonitoringV3
|
18
18
|
# Version of the google-apis-monitoring_v3 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.8.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.3.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210614"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -424,6 +424,12 @@ module Google
|
|
424
424
|
include Google::Apis::Core::JsonObjectSupport
|
425
425
|
end
|
426
426
|
|
427
|
+
class OperationMetadata
|
428
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
429
|
+
|
430
|
+
include Google::Apis::Core::JsonObjectSupport
|
431
|
+
end
|
432
|
+
|
427
433
|
class Option
|
428
434
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
429
435
|
|
@@ -1297,6 +1303,15 @@ module Google
|
|
1297
1303
|
end
|
1298
1304
|
end
|
1299
1305
|
|
1306
|
+
class OperationMetadata
|
1307
|
+
# @private
|
1308
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1309
|
+
property :create_time, as: 'createTime'
|
1310
|
+
property :state, as: 'state'
|
1311
|
+
property :update_time, as: 'updateTime'
|
1312
|
+
end
|
1313
|
+
end
|
1314
|
+
|
1300
1315
|
class Option
|
1301
1316
|
# @private
|
1302
1317
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1409,6 +1424,7 @@ module Google
|
|
1409
1424
|
property :name, as: 'name'
|
1410
1425
|
property :telemetry, as: 'telemetry', class: Google::Apis::MonitoringV3::Telemetry, decorator: Google::Apis::MonitoringV3::Telemetry::Representation
|
1411
1426
|
|
1427
|
+
hash :user_labels, as: 'userLabels'
|
1412
1428
|
end
|
1413
1429
|
end
|
1414
1430
|
|
@@ -1434,6 +1450,7 @@ module Google
|
|
1434
1450
|
property :rolling_period, as: 'rollingPeriod'
|
1435
1451
|
property :service_level_indicator, as: 'serviceLevelIndicator', class: Google::Apis::MonitoringV3::ServiceLevelIndicator, decorator: Google::Apis::MonitoringV3::ServiceLevelIndicator::Representation
|
1436
1452
|
|
1453
|
+
hash :user_labels, as: 'userLabels'
|
1437
1454
|
end
|
1438
1455
|
end
|
1439
1456
|
|
@@ -56,9 +56,10 @@ module Google
|
|
56
56
|
# Lists time series that match a filter. This method does not require a
|
57
57
|
# Workspace.
|
58
58
|
# @param [String] name
|
59
|
-
# Required. The project
|
60
|
-
# The format is:
|
61
|
-
# folders/[
|
59
|
+
# Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
|
60
|
+
# , organization or folder on which to execute the request. The format is:
|
61
|
+
# projects/[PROJECT_ID_OR_NUMBER] organizations/[ORGANIZATION_ID] folders/[
|
62
|
+
# FOLDER_ID]
|
62
63
|
# @param [String] aggregation_alignment_period
|
63
64
|
# The alignment_period specifies a time interval, in seconds, that is used to
|
64
65
|
# divide the data in all the time series into consistent blocks of time. This
|
@@ -220,9 +221,10 @@ module Google
|
|
220
221
|
# Lists time series that match a filter. This method does not require a
|
221
222
|
# Workspace.
|
222
223
|
# @param [String] name
|
223
|
-
# Required. The project
|
224
|
-
# The format is:
|
225
|
-
# folders/[
|
224
|
+
# Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
|
225
|
+
# , organization or folder on which to execute the request. The format is:
|
226
|
+
# projects/[PROJECT_ID_OR_NUMBER] organizations/[ORGANIZATION_ID] folders/[
|
227
|
+
# FOLDER_ID]
|
226
228
|
# @param [String] aggregation_alignment_period
|
227
229
|
# The alignment_period specifies a time interval, in seconds, that is used to
|
228
230
|
# divide the data in all the time series into consistent blocks of time. This
|
@@ -383,14 +385,14 @@ module Google
|
|
383
385
|
|
384
386
|
# Creates a new alerting policy.
|
385
387
|
# @param [String] name
|
386
|
-
# Required. The project
|
387
|
-
#
|
388
|
-
#
|
389
|
-
#
|
390
|
-
#
|
391
|
-
#
|
392
|
-
# but adds a suffix of the
|
393
|
-
# the policy in the container.
|
388
|
+
# Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
|
389
|
+
# in which to create the alerting policy. The format is: projects/[
|
390
|
+
# PROJECT_ID_OR_NUMBER] Note that this field names the parent container in which
|
391
|
+
# the alerting policy will be written, not the name of the created policy. |name|
|
392
|
+
# must be a host project of a workspace, otherwise INVALID_ARGUMENT error will
|
393
|
+
# return. The alerting policy that is returned will have a name that contains a
|
394
|
+
# normalized representation of this name as a prefix but adds a suffix of the
|
395
|
+
# form /alertPolicies/[ALERT_POLICY_ID], identifying the policy in the container.
|
394
396
|
# @param [Google::Apis::MonitoringV3::AlertPolicy] alert_policy_object
|
395
397
|
# @param [String] fields
|
396
398
|
# Selector specifying which fields to include in a partial response.
|
@@ -486,10 +488,11 @@ module Google
|
|
486
488
|
|
487
489
|
# Lists the existing alerting policies for the workspace.
|
488
490
|
# @param [String] name
|
489
|
-
# Required. The project
|
490
|
-
#
|
491
|
-
#
|
492
|
-
#
|
491
|
+
# Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
|
492
|
+
# whose alert policies are to be listed. The format is: projects/[
|
493
|
+
# PROJECT_ID_OR_NUMBER] Note that this field names the parent container in which
|
494
|
+
# the alerting policies to be listed are stored. To retrieve a single alerting
|
495
|
+
# policy by name, use the GetAlertPolicy operation, instead.
|
493
496
|
# @param [String] filter
|
494
497
|
# If provided, this field specifies the criteria that must be met by alert
|
495
498
|
# policies to be included in the response.For more details, see sorting and
|
@@ -598,8 +601,8 @@ module Google
|
|
598
601
|
# only for use by the Stackdriver Monitoring Agent. Use projects.timeSeries.
|
599
602
|
# create instead.
|
600
603
|
# @param [String] name
|
601
|
-
# The project in which
|
602
|
-
# PROJECT_ID_OR_NUMBER]
|
604
|
+
# The project (https://cloud.google.com/monitoring/api/v3#project_name) in which
|
605
|
+
# to create the time series. The format is: projects/[PROJECT_ID_OR_NUMBER]
|
603
606
|
# @param [Google::Apis::MonitoringV3::CreateCollectdTimeSeriesRequest] create_collectd_time_series_request_object
|
604
607
|
# @param [String] fields
|
605
608
|
# Selector specifying which fields to include in a partial response.
|
@@ -632,8 +635,8 @@ module Google
|
|
632
635
|
|
633
636
|
# Creates a new group.
|
634
637
|
# @param [String] name
|
635
|
-
# Required. The project
|
636
|
-
# PROJECT_ID_OR_NUMBER]
|
638
|
+
# Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
|
639
|
+
# in which to create the group. The format is: projects/[PROJECT_ID_OR_NUMBER]
|
637
640
|
# @param [Google::Apis::MonitoringV3::Group] group_object
|
638
641
|
# @param [Boolean] validate_only
|
639
642
|
# If true, validate this request but do not create the group.
|
@@ -736,8 +739,8 @@ module Google
|
|
736
739
|
|
737
740
|
# Lists the existing groups.
|
738
741
|
# @param [String] name
|
739
|
-
# Required. The project
|
740
|
-
# PROJECT_ID_OR_NUMBER]
|
742
|
+
# Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
|
743
|
+
# whose groups are to be listed. The format is: projects/[PROJECT_ID_OR_NUMBER]
|
741
744
|
# @param [String] ancestors_of_group
|
742
745
|
# A group name. The format is: projects/[PROJECT_ID_OR_NUMBER]/groups/[GROUP_ID]
|
743
746
|
# Returns groups that are ancestors of the specified group. The groups are
|
@@ -886,8 +889,9 @@ module Google
|
|
886
889
|
# Creates a new metric descriptor. User-created metric descriptors define custom
|
887
890
|
# metrics (https://cloud.google.com/monitoring/custom-metrics).
|
888
891
|
# @param [String] name
|
889
|
-
# Required. The project
|
890
|
-
#
|
892
|
+
# Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
|
893
|
+
# on which to execute the request. The format is: 4 projects/
|
894
|
+
# PROJECT_ID_OR_NUMBER
|
891
895
|
# @param [Google::Apis::MonitoringV3::MetricDescriptor] metric_descriptor_object
|
892
896
|
# @param [String] fields
|
893
897
|
# Selector specifying which fields to include in a partial response.
|
@@ -987,8 +991,9 @@ module Google
|
|
987
991
|
# Lists metric descriptors that match a filter. This method does not require a
|
988
992
|
# Workspace.
|
989
993
|
# @param [String] name
|
990
|
-
# Required. The project
|
991
|
-
# [
|
994
|
+
# Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
|
995
|
+
# on which to execute the request. The format is: projects/[
|
996
|
+
# PROJECT_ID_OR_NUMBER]
|
992
997
|
# @param [String] filter
|
993
998
|
# If this field is empty, all custom and system-defined metric descriptors are
|
994
999
|
# returned. Otherwise, the filter (https://cloud.google.com/monitoring/api/v3/
|
@@ -1068,8 +1073,9 @@ module Google
|
|
1068
1073
|
# Lists monitored resource descriptors that match a filter. This method does not
|
1069
1074
|
# require a Workspace.
|
1070
1075
|
# @param [String] name
|
1071
|
-
# Required. The project
|
1072
|
-
# [
|
1076
|
+
# Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
|
1077
|
+
# on which to execute the request. The format is: projects/[
|
1078
|
+
# PROJECT_ID_OR_NUMBER]
|
1073
1079
|
# @param [String] filter
|
1074
1080
|
# An optional filter (https://cloud.google.com/monitoring/api/v3/filters)
|
1075
1081
|
# describing the descriptors to be returned. The filter can reference the
|
@@ -1149,8 +1155,9 @@ module Google
|
|
1149
1155
|
# @param [String] name
|
1150
1156
|
# Required. The REST resource name of the parent from which to retrieve the
|
1151
1157
|
# notification channel descriptors. The expected syntax is: projects/[
|
1152
|
-
# PROJECT_ID_OR_NUMBER] Note that this names
|
1153
|
-
#
|
1158
|
+
# PROJECT_ID_OR_NUMBER] Note that this names (https://cloud.google.com/
|
1159
|
+
# monitoring/api/v3#project_name) the parent container in which to look for the
|
1160
|
+
# descriptors; to retrieve a single descriptor by name, use the
|
1154
1161
|
# GetNotificationChannelDescriptor operation, instead.
|
1155
1162
|
# @param [Fixnum] page_size
|
1156
1163
|
# The maximum number of results to return in a single response. If not set to a
|
@@ -1190,8 +1197,9 @@ module Google
|
|
1190
1197
|
# Creates a new notification channel, representing a single notification
|
1191
1198
|
# endpoint such as an email address, SMS number, or PagerDuty service.
|
1192
1199
|
# @param [String] name
|
1193
|
-
# Required. The project
|
1194
|
-
#
|
1200
|
+
# Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
|
1201
|
+
# on which to execute the request. The format is: projects/[
|
1202
|
+
# PROJECT_ID_OR_NUMBER] This names the container into which the channel will be
|
1195
1203
|
# written, this does not name the newly created channel. The resulting channel's
|
1196
1204
|
# name will have a normalized version of this field as a prefix, but will add /
|
1197
1205
|
# notificationChannels/[CHANNEL_ID] to identify the channel.
|
@@ -1351,8 +1359,9 @@ module Google
|
|
1351
1359
|
|
1352
1360
|
# Lists the notification channels that have been created for the project.
|
1353
1361
|
# @param [String] name
|
1354
|
-
# Required. The project
|
1355
|
-
#
|
1362
|
+
# Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
|
1363
|
+
# on which to execute the request. The format is: projects/[
|
1364
|
+
# PROJECT_ID_OR_NUMBER] This names the container in which to look for the
|
1356
1365
|
# notification channels; it does not name a specific channel. To query a
|
1357
1366
|
# specific channel by REST resource name, use the GetNotificationChannel
|
1358
1367
|
# operation.
|
@@ -1515,8 +1524,9 @@ module Google
|
|
1515
1524
|
# time series in the request were written. If any time series could not be
|
1516
1525
|
# written, a corresponding failure message is included in the error response.
|
1517
1526
|
# @param [String] name
|
1518
|
-
# Required. The project
|
1519
|
-
# [
|
1527
|
+
# Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
|
1528
|
+
# on which to execute the request. The format is: projects/[
|
1529
|
+
# PROJECT_ID_OR_NUMBER]
|
1520
1530
|
# @param [Google::Apis::MonitoringV3::CreateTimeSeriesRequest] create_time_series_request_object
|
1521
1531
|
# @param [String] fields
|
1522
1532
|
# Selector specifying which fields to include in a partial response.
|
@@ -1550,9 +1560,10 @@ module Google
|
|
1550
1560
|
# Lists time series that match a filter. This method does not require a
|
1551
1561
|
# Workspace.
|
1552
1562
|
# @param [String] name
|
1553
|
-
# Required. The project
|
1554
|
-
# The format is:
|
1555
|
-
# folders/[
|
1563
|
+
# Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
|
1564
|
+
# , organization or folder on which to execute the request. The format is:
|
1565
|
+
# projects/[PROJECT_ID_OR_NUMBER] organizations/[ORGANIZATION_ID] folders/[
|
1566
|
+
# FOLDER_ID]
|
1556
1567
|
# @param [String] aggregation_alignment_period
|
1557
1568
|
# The alignment_period specifies a time interval, in seconds, that is used to
|
1558
1569
|
# divide the data in all the time series into consistent blocks of time. This
|
@@ -1714,8 +1725,9 @@ module Google
|
|
1714
1725
|
# Queries time series using Monitoring Query Language. This method does not
|
1715
1726
|
# require a Workspace.
|
1716
1727
|
# @param [String] name
|
1717
|
-
# Required. The project
|
1718
|
-
# [
|
1728
|
+
# Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
|
1729
|
+
# on which to execute the request. The format is: projects/[
|
1730
|
+
# PROJECT_ID_OR_NUMBER]
|
1719
1731
|
# @param [Google::Apis::MonitoringV3::QueryTimeSeriesRequest] query_time_series_request_object
|
1720
1732
|
# @param [String] fields
|
1721
1733
|
# Selector specifying which fields to include in a partial response.
|
@@ -1748,8 +1760,9 @@ module Google
|
|
1748
1760
|
|
1749
1761
|
# Creates a new Uptime check configuration.
|
1750
1762
|
# @param [String] parent
|
1751
|
-
# Required. The project
|
1752
|
-
# projects/[
|
1763
|
+
# Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
|
1764
|
+
# in which to create the Uptime check. The format is: projects/[
|
1765
|
+
# PROJECT_ID_OR_NUMBER]
|
1753
1766
|
# @param [Google::Apis::MonitoringV3::UptimeCheckConfig] uptime_check_config_object
|
1754
1767
|
# @param [String] fields
|
1755
1768
|
# Selector specifying which fields to include in a partial response.
|
@@ -1847,8 +1860,9 @@ module Google
|
|
1847
1860
|
# Lists the existing valid Uptime check configurations for the project (leaving
|
1848
1861
|
# out any invalid configurations).
|
1849
1862
|
# @param [String] parent
|
1850
|
-
# Required. The project
|
1851
|
-
# is: projects/[
|
1863
|
+
# Required. The project (https://cloud.google.com/monitoring/api/v3#project_name)
|
1864
|
+
# whose Uptime check configurations are listed. The format is: projects/[
|
1865
|
+
# PROJECT_ID_OR_NUMBER]
|
1852
1866
|
# @param [Fixnum] page_size
|
1853
1867
|
# The maximum number of results to return in a single response. The server may
|
1854
1868
|
# further constrain the maximum number of results returned in a single page. If
|
@@ -1936,7 +1950,8 @@ module Google
|
|
1936
1950
|
|
1937
1951
|
# Create a Service.
|
1938
1952
|
# @param [String] parent
|
1939
|
-
# Required. Resource name
|
1953
|
+
# Required. Resource name (https://cloud.google.com/monitoring/api/v3#
|
1954
|
+
# project_name) of the parent workspace. The format is: projects/[
|
1940
1955
|
# PROJECT_ID_OR_NUMBER]
|
1941
1956
|
# @param [Google::Apis::MonitoringV3::Service] service_object
|
1942
1957
|
# @param [String] service_id
|
@@ -2037,8 +2052,9 @@ module Google
|
|
2037
2052
|
# List Services for this workspace.
|
2038
2053
|
# @param [String] parent
|
2039
2054
|
# Required. Resource name of the parent containing the listed services, either a
|
2040
|
-
# project or a
|
2041
|
-
#
|
2055
|
+
# project (https://cloud.google.com/monitoring/api/v3#project_name) or a
|
2056
|
+
# Monitoring Workspace. The formats are: projects/[PROJECT_ID_OR_NUMBER]
|
2057
|
+
# workspaces/[HOST_PROJECT_ID_OR_NUMBER]
|
2042
2058
|
# @param [String] filter
|
2043
2059
|
# A filter specifying what Services to return. The filter currently supports the
|
2044
2060
|
# following fields: - `identifier_case` - `app_engine.module_id` - `
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-monitoring_v3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.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: 2021-
|
11
|
+
date: 2021-06-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-monitoring_v3/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v3/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v3/v0.8.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-monitoring_v3
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
72
|
+
rubygems_version: 3.2.17
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Cloud Monitoring API V3
|