google-apis-workloadmanager_v1 0.18.0 → 0.19.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/workloadmanager_v1/classes.rb +24 -6
- data/lib/google/apis/workloadmanager_v1/gem_version.rb +2 -2
- data/lib/google/apis/workloadmanager_v1/representations.rb +4 -1
- data/lib/google/apis/workloadmanager_v1/service.rb +4 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d982842b8464ceab29656847da1e43bedf98c99ec491206c1879f4e452a43fa0
|
4
|
+
data.tar.gz: 99a6a723ff6c74e358a914b66a3bcddc5d4f92ed22764843a9dc51a1776ab782
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c13ca1a385a54535cc6e56d70d5c8f86f4788a96490106b45744a4569e1f2bd6b1bb266a7db522fc1c262a80ffd3ab89ba643ddb7a317e5087260a25d6d14762
|
7
|
+
data.tar.gz: 4494733f4a9f6e3b5759d49e260a0d91436bc920ae36eb37284295cdd3430d83020917c30b7d6942b7c54ac4e0207c70acaf952aa81995e95643d8060f573970
|
data/CHANGELOG.md
CHANGED
@@ -1035,21 +1035,26 @@ module Google
|
|
1035
1035
|
attr_accessor :abap
|
1036
1036
|
alias_method :abap?, :abap
|
1037
1037
|
|
1038
|
+
# Optional. Instance number of the SAP application instance.
|
1039
|
+
# Corresponds to the JSON property `appInstanceNumber`
|
1040
|
+
# @return [String]
|
1041
|
+
attr_accessor :app_instance_number
|
1042
|
+
|
1038
1043
|
# Required. Type of the application. Netweaver, etc.
|
1039
1044
|
# Corresponds to the JSON property `applicationType`
|
1040
1045
|
# @return [String]
|
1041
1046
|
attr_accessor :application_type
|
1042
1047
|
|
1048
|
+
# Optional. Instance number of the ASCS instance.
|
1049
|
+
# Corresponds to the JSON property `ascsInstanceNumber`
|
1050
|
+
# @return [String]
|
1051
|
+
attr_accessor :ascs_instance_number
|
1052
|
+
|
1043
1053
|
# Optional. Resource URI of the recognized ASCS host of the application.
|
1044
1054
|
# Corresponds to the JSON property `ascsUri`
|
1045
1055
|
# @return [String]
|
1046
1056
|
attr_accessor :ascs_uri
|
1047
1057
|
|
1048
|
-
# Optional. Instance number of the SAP instance.
|
1049
|
-
# Corresponds to the JSON property `instanceNumber`
|
1050
|
-
# @return [String]
|
1051
|
-
attr_accessor :instance_number
|
1052
|
-
|
1053
1058
|
# Optional. Kernel version for Netweaver running in the system.
|
1054
1059
|
# Corresponds to the JSON property `kernelVersion`
|
1055
1060
|
# @return [String]
|
@@ -1068,9 +1073,10 @@ module Google
|
|
1068
1073
|
# Update properties of this object
|
1069
1074
|
def update!(**args)
|
1070
1075
|
@abap = args[:abap] if args.key?(:abap)
|
1076
|
+
@app_instance_number = args[:app_instance_number] if args.key?(:app_instance_number)
|
1071
1077
|
@application_type = args[:application_type] if args.key?(:application_type)
|
1078
|
+
@ascs_instance_number = args[:ascs_instance_number] if args.key?(:ascs_instance_number)
|
1072
1079
|
@ascs_uri = args[:ascs_uri] if args.key?(:ascs_uri)
|
1073
|
-
@instance_number = args[:instance_number] if args.key?(:instance_number)
|
1074
1080
|
@kernel_version = args[:kernel_version] if args.key?(:kernel_version)
|
1075
1081
|
@nfs_uri = args[:nfs_uri] if args.key?(:nfs_uri)
|
1076
1082
|
end
|
@@ -1080,6 +1086,11 @@ module Google
|
|
1080
1086
|
class SapDiscoveryComponentDatabaseProperties
|
1081
1087
|
include Google::Apis::Core::Hashable
|
1082
1088
|
|
1089
|
+
# Optional. SID of the system database.
|
1090
|
+
# Corresponds to the JSON property `databaseSid`
|
1091
|
+
# @return [String]
|
1092
|
+
attr_accessor :database_sid
|
1093
|
+
|
1083
1094
|
# Required. Type of the database. HANA, DB2, etc.
|
1084
1095
|
# Corresponds to the JSON property `databaseType`
|
1085
1096
|
# @return [String]
|
@@ -1112,6 +1123,7 @@ module Google
|
|
1112
1123
|
|
1113
1124
|
# Update properties of this object
|
1114
1125
|
def update!(**args)
|
1126
|
+
@database_sid = args[:database_sid] if args.key?(:database_sid)
|
1115
1127
|
@database_type = args[:database_type] if args.key?(:database_type)
|
1116
1128
|
@database_version = args[:database_version] if args.key?(:database_version)
|
1117
1129
|
@instance_number = args[:instance_number] if args.key?(:instance_number)
|
@@ -1217,6 +1229,11 @@ module Google
|
|
1217
1229
|
# @return [Array<String>]
|
1218
1230
|
attr_accessor :cluster_instances
|
1219
1231
|
|
1232
|
+
# Optional. The VM's instance number.
|
1233
|
+
# Corresponds to the JSON property `instanceNumber`
|
1234
|
+
# @return [Fixnum]
|
1235
|
+
attr_accessor :instance_number
|
1236
|
+
|
1220
1237
|
# Optional. A virtual hostname of the instance if it has one.
|
1221
1238
|
# Corresponds to the JSON property `virtualHostname`
|
1222
1239
|
# @return [String]
|
@@ -1229,6 +1246,7 @@ module Google
|
|
1229
1246
|
# Update properties of this object
|
1230
1247
|
def update!(**args)
|
1231
1248
|
@cluster_instances = args[:cluster_instances] if args.key?(:cluster_instances)
|
1249
|
+
@instance_number = args[:instance_number] if args.key?(:instance_number)
|
1232
1250
|
@virtual_hostname = args[:virtual_hostname] if args.key?(:virtual_hostname)
|
1233
1251
|
end
|
1234
1252
|
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.
|
19
|
+
GEM_VERSION = "0.19.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240322"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -563,9 +563,10 @@ module Google
|
|
563
563
|
# @private
|
564
564
|
class Representation < Google::Apis::Core::JsonRepresentation
|
565
565
|
property :abap, as: 'abap'
|
566
|
+
property :app_instance_number, as: 'appInstanceNumber'
|
566
567
|
property :application_type, as: 'applicationType'
|
568
|
+
property :ascs_instance_number, as: 'ascsInstanceNumber'
|
567
569
|
property :ascs_uri, as: 'ascsUri'
|
568
|
-
property :instance_number, as: 'instanceNumber'
|
569
570
|
property :kernel_version, as: 'kernelVersion'
|
570
571
|
property :nfs_uri, as: 'nfsUri'
|
571
572
|
end
|
@@ -574,6 +575,7 @@ module Google
|
|
574
575
|
class SapDiscoveryComponentDatabaseProperties
|
575
576
|
# @private
|
576
577
|
class Representation < Google::Apis::Core::JsonRepresentation
|
578
|
+
property :database_sid, as: 'databaseSid'
|
577
579
|
property :database_type, as: 'databaseType'
|
578
580
|
property :database_version, as: 'databaseVersion'
|
579
581
|
property :instance_number, as: 'instanceNumber'
|
@@ -609,6 +611,7 @@ module Google
|
|
609
611
|
# @private
|
610
612
|
class Representation < Google::Apis::Core::JsonRepresentation
|
611
613
|
collection :cluster_instances, as: 'clusterInstances'
|
614
|
+
property :instance_number, :numeric_string => true, as: 'instanceNumber'
|
612
615
|
property :virtual_hostname, as: 'virtualHostname'
|
613
616
|
end
|
614
617
|
end
|
@@ -178,6 +178,8 @@ module Google
|
|
178
178
|
# Deletes a single Evaluation.
|
179
179
|
# @param [String] name
|
180
180
|
# Required. Name of the resource
|
181
|
+
# @param [Boolean] force
|
182
|
+
# Optional. Followed the best practice from https://aip.dev/135#cascading-delete
|
181
183
|
# @param [String] request_id
|
182
184
|
# Optional. An optional request ID to identify requests. Specify a unique
|
183
185
|
# request ID so that if you must retry your request, the server will know to
|
@@ -206,11 +208,12 @@ module Google
|
|
206
208
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
207
209
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
208
210
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
209
|
-
def delete_project_location_evaluation(name, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
211
|
+
def delete_project_location_evaluation(name, force: nil, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
210
212
|
command = make_simple_command(:delete, 'v1/{+name}', options)
|
211
213
|
command.response_representation = Google::Apis::WorkloadmanagerV1::Operation::Representation
|
212
214
|
command.response_class = Google::Apis::WorkloadmanagerV1::Operation
|
213
215
|
command.params['name'] = name unless name.nil?
|
216
|
+
command.query['force'] = force unless force.nil?
|
214
217
|
command.query['requestId'] = request_id unless request_id.nil?
|
215
218
|
command.query['fields'] = fields unless fields.nil?
|
216
219
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
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.
|
4
|
+
version: 0.19.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: 2024-03-
|
11
|
+
date: 2024-03-24 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-workloadmanager_v1/v0.19.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: []
|