google-apis-monitoring_v3 0.7.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
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
@@ -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
|
|
@@ -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
|
|
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: []
|