google-apis-workloadmanager_v1 0.8.0 → 0.9.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: e81b42e6729f976544b6604f320fb7a4c0ec767f21f93363111783b301f7a604
4
- data.tar.gz: ca8fb45630d4efac6ee152ab26104d8233400b6d457405b1c6f2c3e9a7988a27
3
+ metadata.gz: 213ca81fd4164fd4fc4ddeb965bafb60ee30232c6384bcdd372fbdecc6e7d652
4
+ data.tar.gz: e999c17c62c40c1788b48638b18a300d6950771fdb91d54c5cd34a78f330c3c7
5
5
  SHA512:
6
- metadata.gz: be0e689c703e7535cd7ea47368f7b43e6a6d7c4b685c724d5a5cd2fe64b216448c559a9ee7c862e3b182099ab4b77eb0bac0e2507ebf1b012506ade44587d0e0
7
- data.tar.gz: 9511cdca70599a6818482b23586e4848a7e2ff54abe095a65082c79e8ef5f4ef6b81b19025768eaae155f2c13d08fa3aabda79914e67a37a73aa00235ef35ef9
6
+ metadata.gz: 8a043f7097c97a1e4b9be7faf765bd6795add3e5e52b33f05c2ab6c53ed9407a9d526ccf48b0bfb8bc8d619596e3cd72af38829d33082ba504452ae821f94306
7
+ data.tar.gz: 46a929187b66bd58387ebe974f647b5e24ceb1abc374aa4bd5d6b2dd62862d2b3ac3d44a5f5be9f9af0134831d232a6dcfb66b64290ad956c5975c5ae7086ecc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-workloadmanager_v1
2
2
 
3
+ ### v0.9.0 (2023-07-09)
4
+
5
+ * Regenerated from discovery document revision 20230630
6
+
3
7
  ### v0.8.0 (2023-07-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20230621
@@ -1007,12 +1007,12 @@ module Google
1007
1007
  # @return [Array<String>]
1008
1008
  attr_accessor :related_resources
1009
1009
 
1010
- # ComputeInstance, ComputeDisk, VPC, Bare Metal server, etc.
1010
+ # Required. ComputeInstance, ComputeDisk, VPC, Bare Metal server, etc.
1011
1011
  # Corresponds to the JSON property `resourceKind`
1012
1012
  # @return [String]
1013
1013
  attr_accessor :resource_kind
1014
1014
 
1015
- # The type of this resource.
1015
+ # Required. The type of this resource.
1016
1016
  # Corresponds to the JSON property `resourceType`
1017
1017
  # @return [String]
1018
1018
  attr_accessor :resource_type
@@ -1115,6 +1115,18 @@ module Google
1115
1115
  # @return [String]
1116
1116
  attr_accessor :agent_version
1117
1117
 
1118
+ # Required. The instance_name of the instance that the Insight data comes from.
1119
+ # According to https://linter.aip.dev/122/name-suffix: field names should not
1120
+ # use the _name suffix unless the field would be ambiguous without it.
1121
+ # Corresponds to the JSON property `instance`
1122
+ # @return [String]
1123
+ attr_accessor :instance
1124
+
1125
+ # Required. The project_id of the cloud project that the Insight data comes from.
1126
+ # Corresponds to the JSON property `projectId`
1127
+ # @return [String]
1128
+ attr_accessor :project_id
1129
+
1118
1130
  # A list of SqlServer validation metrics data.
1119
1131
  # Corresponds to the JSON property `validationDetails`
1120
1132
  # @return [Array<Google::Apis::WorkloadmanagerV1::SqlserverValidationValidationDetail>]
@@ -1127,6 +1139,8 @@ module Google
1127
1139
  # Update properties of this object
1128
1140
  def update!(**args)
1129
1141
  @agent_version = args[:agent_version] if args.key?(:agent_version)
1142
+ @instance = args[:instance] if args.key?(:instance)
1143
+ @project_id = args[:project_id] if args.key?(:project_id)
1130
1144
  @validation_details = args[:validation_details] if args.key?(:validation_details)
1131
1145
  end
1132
1146
  end
@@ -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.8.0"
19
+ GEM_VERSION = "0.9.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 = "20230621"
25
+ REVISION = "20230630"
26
26
  end
27
27
  end
28
28
  end
@@ -547,6 +547,8 @@ module Google
547
547
  # @private
548
548
  class Representation < Google::Apis::Core::JsonRepresentation
549
549
  property :agent_version, as: 'agentVersion'
550
+ property :instance, as: 'instance'
551
+ property :project_id, as: 'projectId'
550
552
  collection :validation_details, as: 'validationDetails', class: Google::Apis::WorkloadmanagerV1::SqlserverValidationValidationDetail, decorator: Google::Apis::WorkloadmanagerV1::SqlserverValidationValidationDetail::Representation
551
553
 
552
554
  end
@@ -22,7 +22,9 @@ module Google
22
22
  module WorkloadmanagerV1
23
23
  # Workload Manager API
24
24
  #
25
- #
25
+ # Workload Manager is a service that provides tooling for enterprise workloads
26
+ # to automate the deployment and validation of your workloads against best
27
+ # practices and recommendations.
26
28
  #
27
29
  # @example
28
30
  # require 'google/apis/workloadmanager_v1'
@@ -21,7 +21,9 @@ module Google
21
21
  module Apis
22
22
  # Workload Manager API
23
23
  #
24
- #
24
+ # Workload Manager is a service that provides tooling for enterprise workloads
25
+ # to automate the deployment and validation of your workloads against best
26
+ # practices and recommendations.
25
27
  #
26
28
  # @see https://cloud.google.com/workload-manager/docs
27
29
  module WorkloadmanagerV1
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-workloadmanager_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.9.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-07-02 00:00:00.000000000 Z
11
+ date: 2023-07-09 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-workloadmanager_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-workloadmanager_v1/v0.8.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workloadmanager_v1/v0.9.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workloadmanager_v1
63
63
  post_install_message:
64
64
  rdoc_options: []