google-apis-monitoring_v3 0.5.0 → 0.10.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: 9e2e7413b63b8fc0a9bf1e25ef61009ab242190b6d394741bbde2481be2f1ca6
|
4
|
+
data.tar.gz: d36629adfba4061fc7fc93ee3aaa1300b6918cac9fc02affbfc71aef1cced215
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d80652128241fbfa1b26359dac26f696a9edc2b6d7f68672d4176dd300f3f6b9af21a08154fb70813f8b990b099da8950eef7cffeae2894ccb0c97ca99a5973
|
7
|
+
data.tar.gz: a6683c353c25382c69e48f5beecdd264ad18de880d963d68991ffa4d9e7f7db13043b5d5f6ae811407049687de2761954178738de57a9cf4146a219b963ca2b9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,28 @@
|
|
1
1
|
# Release history for google-apis-monitoring_v3
|
2
2
|
|
3
|
+
### v0.10.0 (2021-07-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210625
|
6
|
+
* Regenerated using generator version 0.4.0
|
7
|
+
|
8
|
+
### v0.9.0 (2021-06-25)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20210618
|
11
|
+
* Unspecified changes
|
12
|
+
|
13
|
+
### v0.8.0 (2021-06-18)
|
14
|
+
|
15
|
+
* Regenerated from discovery document revision 20210614
|
16
|
+
* Regenerated using generator version 0.3.0
|
17
|
+
|
18
|
+
### v0.7.0 (2021-05-19)
|
19
|
+
|
20
|
+
* Unspecified changes
|
21
|
+
|
22
|
+
### v0.6.0 (2021-04-30)
|
23
|
+
|
24
|
+
* Regenerated from discovery document revision 20210427
|
25
|
+
|
3
26
|
### v0.5.0 (2021-04-02)
|
4
27
|
|
5
28
|
* Regenerated from discovery document revision 20210326
|
@@ -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.10.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210625"
|
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
|
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
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.10.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-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.4'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Cloud Monitoring API V3. Simple REST
|
28
34
|
clients are Ruby client libraries that provide access to Google services via their
|
29
35
|
HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-monitoring_v3/v0.10.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-monitoring_v3
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|
@@ -69,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
75
|
- !ruby/object:Gem::Version
|
70
76
|
version: '0'
|
71
77
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
78
|
+
rubygems_version: 3.2.17
|
73
79
|
signing_key:
|
74
80
|
specification_version: 4
|
75
81
|
summary: Simple REST client for Cloud Monitoring API V3
|