google-apis-workloadmanager_v1 0.38.0 → 0.39.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: 3cf5a46c9294c298d4401ff968bf49e8b3c293ec9ee6cae927c92e2a355d6397
|
4
|
+
data.tar.gz: dc591577e6e6de6d19d11b7163dcaab8a97ef77f373f778771c328a623631248
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aeb2344968a813d6b462cda0518ade1a3f8d0a827fc5a5f7ee9eb9612ef0cfe034c20a722b37ba592aca808dc2d3d26811c5c18598e0d2de1b0da48ca9a1d116
|
7
|
+
data.tar.gz: 5a6d34f68917adf8c8c8b09a91e20654592fb3342aea71ecd7186080f4a922d4c25a6e2155dbb7097bef7a35e662bb84448b0aea39356034380fb2482271d398
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,12 @@
|
|
1
1
|
# Release history for google-apis-workloadmanager_v1
|
2
2
|
|
3
|
-
### v0.
|
3
|
+
### v0.39.0 (2025-08-17)
|
4
4
|
|
5
|
-
* Regenerated from discovery document revision
|
5
|
+
* Regenerated from discovery document revision 20250806
|
6
|
+
|
7
|
+
### v0.38.0 (2025-08-03)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250727
|
6
10
|
|
7
11
|
### v0.37.0 (2025-07-13)
|
8
12
|
|
@@ -48,6 +48,57 @@ module Google
|
|
48
48
|
end
|
49
49
|
end
|
50
50
|
|
51
|
+
# Agent status.
|
52
|
+
class AgentStates
|
53
|
+
include Google::Apis::Core::Hashable
|
54
|
+
|
55
|
+
# Optional. The available version of the agent in artifact registry.
|
56
|
+
# Corresponds to the JSON property `availableVersion`
|
57
|
+
# @return [String]
|
58
|
+
attr_accessor :available_version
|
59
|
+
|
60
|
+
# The state of the service.
|
61
|
+
# Corresponds to the JSON property `hanaMonitoring`
|
62
|
+
# @return [Google::Apis::WorkloadmanagerV1::ServiceStates]
|
63
|
+
attr_accessor :hana_monitoring
|
64
|
+
|
65
|
+
# Optional. The installed version of the agent on the host.
|
66
|
+
# Corresponds to the JSON property `installedVersion`
|
67
|
+
# @return [String]
|
68
|
+
attr_accessor :installed_version
|
69
|
+
|
70
|
+
# Optional. Whether the agent is fully enabled. If false, the agent is has some
|
71
|
+
# issues.
|
72
|
+
# Corresponds to the JSON property `isFullyEnabled`
|
73
|
+
# @return [Boolean]
|
74
|
+
attr_accessor :is_fully_enabled
|
75
|
+
alias_method :is_fully_enabled?, :is_fully_enabled
|
76
|
+
|
77
|
+
# The state of the service.
|
78
|
+
# Corresponds to the JSON property `processMetrics`
|
79
|
+
# @return [Google::Apis::WorkloadmanagerV1::ServiceStates]
|
80
|
+
attr_accessor :process_metrics
|
81
|
+
|
82
|
+
# The state of the service.
|
83
|
+
# Corresponds to the JSON property `systemDiscovery`
|
84
|
+
# @return [Google::Apis::WorkloadmanagerV1::ServiceStates]
|
85
|
+
attr_accessor :system_discovery
|
86
|
+
|
87
|
+
def initialize(**args)
|
88
|
+
update!(**args)
|
89
|
+
end
|
90
|
+
|
91
|
+
# Update properties of this object
|
92
|
+
def update!(**args)
|
93
|
+
@available_version = args[:available_version] if args.key?(:available_version)
|
94
|
+
@hana_monitoring = args[:hana_monitoring] if args.key?(:hana_monitoring)
|
95
|
+
@installed_version = args[:installed_version] if args.key?(:installed_version)
|
96
|
+
@is_fully_enabled = args[:is_fully_enabled] if args.key?(:is_fully_enabled)
|
97
|
+
@process_metrics = args[:process_metrics] if args.key?(:process_metrics)
|
98
|
+
@system_discovery = args[:system_discovery] if args.key?(:system_discovery)
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
51
102
|
# The schema of agent status data.
|
52
103
|
class AgentStatus
|
53
104
|
include Google::Apis::Core::Hashable
|
@@ -468,6 +519,12 @@ module Google
|
|
468
519
|
# @return [String]
|
469
520
|
attr_accessor :evaluation_type
|
470
521
|
|
522
|
+
# Optional. Immutable. Customer-managed encryption key name, in the format
|
523
|
+
# projects/*/locations/*/keyRings/*/cryptoKeys/*.
|
524
|
+
# Corresponds to the JSON property `kmsKey`
|
525
|
+
# @return [String]
|
526
|
+
attr_accessor :kms_key
|
527
|
+
|
471
528
|
# Labels as key value pairs
|
472
529
|
# Corresponds to the JSON property `labels`
|
473
530
|
# @return [Hash<String,String>]
|
@@ -522,6 +579,7 @@ module Google
|
|
522
579
|
@custom_rules_bucket = args[:custom_rules_bucket] if args.key?(:custom_rules_bucket)
|
523
580
|
@description = args[:description] if args.key?(:description)
|
524
581
|
@evaluation_type = args[:evaluation_type] if args.key?(:evaluation_type)
|
582
|
+
@kms_key = args[:kms_key] if args.key?(:kms_key)
|
525
583
|
@labels = args[:labels] if args.key?(:labels)
|
526
584
|
@name = args[:name] if args.key?(:name)
|
527
585
|
@resource_filter = args[:resource_filter] if args.key?(:resource_filter)
|
@@ -542,6 +600,11 @@ module Google
|
|
542
600
|
# @return [String]
|
543
601
|
attr_accessor :end_time
|
544
602
|
|
603
|
+
# Optional. Engine
|
604
|
+
# Corresponds to the JSON property `engine`
|
605
|
+
# @return [String]
|
606
|
+
attr_accessor :engine
|
607
|
+
|
545
608
|
# Output only. [Output only] Evaluation ID
|
546
609
|
# Corresponds to the JSON property `evaluationId`
|
547
610
|
# @return [String]
|
@@ -606,6 +669,7 @@ module Google
|
|
606
669
|
# Update properties of this object
|
607
670
|
def update!(**args)
|
608
671
|
@end_time = args[:end_time] if args.key?(:end_time)
|
672
|
+
@engine = args[:engine] if args.key?(:engine)
|
609
673
|
@evaluation_id = args[:evaluation_id] if args.key?(:evaluation_id)
|
610
674
|
@external_data_sources = args[:external_data_sources] if args.key?(:external_data_sources)
|
611
675
|
@inventory_time = args[:inventory_time] if args.key?(:inventory_time)
|
@@ -741,6 +805,32 @@ module Google
|
|
741
805
|
end
|
742
806
|
end
|
743
807
|
|
808
|
+
# The IAM permission status.
|
809
|
+
class IamPermission
|
810
|
+
include Google::Apis::Core::Hashable
|
811
|
+
|
812
|
+
# Output only. Whether the permission is granted.
|
813
|
+
# Corresponds to the JSON property `granted`
|
814
|
+
# @return [Boolean]
|
815
|
+
attr_accessor :granted
|
816
|
+
alias_method :granted?, :granted
|
817
|
+
|
818
|
+
# Output only. The name of the permission.
|
819
|
+
# Corresponds to the JSON property `name`
|
820
|
+
# @return [String]
|
821
|
+
attr_accessor :name
|
822
|
+
|
823
|
+
def initialize(**args)
|
824
|
+
update!(**args)
|
825
|
+
end
|
826
|
+
|
827
|
+
# Update properties of this object
|
828
|
+
def update!(**args)
|
829
|
+
@granted = args[:granted] if args.key?(:granted)
|
830
|
+
@name = args[:name] if args.key?(:name)
|
831
|
+
end
|
832
|
+
end
|
833
|
+
|
744
834
|
# A presentation of host resource usage where the workload runs.
|
745
835
|
class Insight
|
746
836
|
include Google::Apis::Core::Hashable
|
@@ -2230,6 +2320,11 @@ module Google
|
|
2230
2320
|
class SapInstanceProperties
|
2231
2321
|
include Google::Apis::Core::Hashable
|
2232
2322
|
|
2323
|
+
# Agent status.
|
2324
|
+
# Corresponds to the JSON property `agentStates`
|
2325
|
+
# @return [Google::Apis::WorkloadmanagerV1::AgentStates]
|
2326
|
+
attr_accessor :agent_states
|
2327
|
+
|
2233
2328
|
# Optional. SAP Instance numbers. They are from '00' to '99'.
|
2234
2329
|
# Corresponds to the JSON property `numbers`
|
2235
2330
|
# @return [Array<String>]
|
@@ -2241,6 +2336,7 @@ module Google
|
|
2241
2336
|
|
2242
2337
|
# Update properties of this object
|
2243
2338
|
def update!(**args)
|
2339
|
+
@agent_states = args[:agent_states] if args.key?(:agent_states)
|
2244
2340
|
@numbers = args[:numbers] if args.key?(:numbers)
|
2245
2341
|
end
|
2246
2342
|
end
|
@@ -2377,6 +2473,31 @@ module Google
|
|
2377
2473
|
end
|
2378
2474
|
end
|
2379
2475
|
|
2476
|
+
# The state of the service.
|
2477
|
+
class ServiceStates
|
2478
|
+
include Google::Apis::Core::Hashable
|
2479
|
+
|
2480
|
+
# Optional. Output only. The IAM permissions for the service.
|
2481
|
+
# Corresponds to the JSON property `iamPermissions`
|
2482
|
+
# @return [Array<Google::Apis::WorkloadmanagerV1::IamPermission>]
|
2483
|
+
attr_accessor :iam_permissions
|
2484
|
+
|
2485
|
+
# Output only. The overall state of the service.
|
2486
|
+
# Corresponds to the JSON property `state`
|
2487
|
+
# @return [String]
|
2488
|
+
attr_accessor :state
|
2489
|
+
|
2490
|
+
def initialize(**args)
|
2491
|
+
update!(**args)
|
2492
|
+
end
|
2493
|
+
|
2494
|
+
# Update properties of this object
|
2495
|
+
def update!(**args)
|
2496
|
+
@iam_permissions = args[:iam_permissions] if args.key?(:iam_permissions)
|
2497
|
+
@state = args[:state] if args.key?(:state)
|
2498
|
+
end
|
2499
|
+
end
|
2500
|
+
|
2380
2501
|
# * A ShellCommand is invoked via the agent's command line executor
|
2381
2502
|
class ShellCommand
|
2382
2503
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module WorkloadmanagerV1
|
18
18
|
# Version of the google-apis-workloadmanager_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.39.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250806"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,6 +28,12 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
+
class AgentStates
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
31
37
|
class AgentStatus
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
39
|
|
@@ -130,6 +136,12 @@ module Google
|
|
130
136
|
include Google::Apis::Core::JsonObjectSupport
|
131
137
|
end
|
132
138
|
|
139
|
+
class IamPermission
|
140
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
|
+
|
142
|
+
include Google::Apis::Core::JsonObjectSupport
|
143
|
+
end
|
144
|
+
|
133
145
|
class Insight
|
134
146
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
147
|
|
@@ -382,6 +394,12 @@ module Google
|
|
382
394
|
include Google::Apis::Core::JsonObjectSupport
|
383
395
|
end
|
384
396
|
|
397
|
+
class ServiceStates
|
398
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
399
|
+
|
400
|
+
include Google::Apis::Core::JsonObjectSupport
|
401
|
+
end
|
402
|
+
|
385
403
|
class ShellCommand
|
386
404
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
387
405
|
|
@@ -462,6 +480,21 @@ module Google
|
|
462
480
|
end
|
463
481
|
end
|
464
482
|
|
483
|
+
class AgentStates
|
484
|
+
# @private
|
485
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
486
|
+
property :available_version, as: 'availableVersion'
|
487
|
+
property :hana_monitoring, as: 'hanaMonitoring', class: Google::Apis::WorkloadmanagerV1::ServiceStates, decorator: Google::Apis::WorkloadmanagerV1::ServiceStates::Representation
|
488
|
+
|
489
|
+
property :installed_version, as: 'installedVersion'
|
490
|
+
property :is_fully_enabled, as: 'isFullyEnabled'
|
491
|
+
property :process_metrics, as: 'processMetrics', class: Google::Apis::WorkloadmanagerV1::ServiceStates, decorator: Google::Apis::WorkloadmanagerV1::ServiceStates::Representation
|
492
|
+
|
493
|
+
property :system_discovery, as: 'systemDiscovery', class: Google::Apis::WorkloadmanagerV1::ServiceStates, decorator: Google::Apis::WorkloadmanagerV1::ServiceStates::Representation
|
494
|
+
|
495
|
+
end
|
496
|
+
end
|
497
|
+
|
465
498
|
class AgentStatus
|
466
499
|
# @private
|
467
500
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -590,6 +623,7 @@ module Google
|
|
590
623
|
property :custom_rules_bucket, as: 'customRulesBucket'
|
591
624
|
property :description, as: 'description'
|
592
625
|
property :evaluation_type, as: 'evaluationType'
|
626
|
+
property :kms_key, as: 'kmsKey'
|
593
627
|
hash :labels, as: 'labels'
|
594
628
|
property :name, as: 'name'
|
595
629
|
property :resource_filter, as: 'resourceFilter', class: Google::Apis::WorkloadmanagerV1::ResourceFilter, decorator: Google::Apis::WorkloadmanagerV1::ResourceFilter::Representation
|
@@ -607,6 +641,7 @@ module Google
|
|
607
641
|
# @private
|
608
642
|
class Representation < Google::Apis::Core::JsonRepresentation
|
609
643
|
property :end_time, as: 'endTime'
|
644
|
+
property :engine, as: 'engine'
|
610
645
|
property :evaluation_id, as: 'evaluationId'
|
611
646
|
collection :external_data_sources, as: 'externalDataSources', class: Google::Apis::WorkloadmanagerV1::ExternalDataSources, decorator: Google::Apis::WorkloadmanagerV1::ExternalDataSources::Representation
|
612
647
|
|
@@ -659,6 +694,14 @@ module Google
|
|
659
694
|
end
|
660
695
|
end
|
661
696
|
|
697
|
+
class IamPermission
|
698
|
+
# @private
|
699
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
700
|
+
property :granted, as: 'granted'
|
701
|
+
property :name, as: 'name'
|
702
|
+
end
|
703
|
+
end
|
704
|
+
|
662
705
|
class Insight
|
663
706
|
# @private
|
664
707
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1079,6 +1122,8 @@ module Google
|
|
1079
1122
|
class SapInstanceProperties
|
1080
1123
|
# @private
|
1081
1124
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1125
|
+
property :agent_states, as: 'agentStates', class: Google::Apis::WorkloadmanagerV1::AgentStates, decorator: Google::Apis::WorkloadmanagerV1::AgentStates::Representation
|
1126
|
+
|
1082
1127
|
collection :numbers, as: 'numbers'
|
1083
1128
|
end
|
1084
1129
|
end
|
@@ -1124,6 +1169,15 @@ module Google
|
|
1124
1169
|
end
|
1125
1170
|
end
|
1126
1171
|
|
1172
|
+
class ServiceStates
|
1173
|
+
# @private
|
1174
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1175
|
+
collection :iam_permissions, as: 'iamPermissions', class: Google::Apis::WorkloadmanagerV1::IamPermission, decorator: Google::Apis::WorkloadmanagerV1::IamPermission::Representation
|
1176
|
+
|
1177
|
+
property :state, as: 'state'
|
1178
|
+
end
|
1179
|
+
end
|
1180
|
+
|
1127
1181
|
class ShellCommand
|
1128
1182
|
# @private
|
1129
1183
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-workloadmanager_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.39.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workloadmanager_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-workloadmanager_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-workloadmanager_v1/v0.39.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workloadmanager_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|