google-apis-workloadmanager_v1 0.53.0 → 0.54.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/workloadmanager_v1/classes.rb +155 -152
- data/lib/google/apis/workloadmanager_v1/gem_version.rb +3 -3
- data/lib/google/apis/workloadmanager_v1/service.rb +14 -14
- 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: 1583c58a5b360b653748782842d370b286b50eb666be7b3792fa8bf73c2877f2
|
|
4
|
+
data.tar.gz: 6f8d5a1d8916c5fcf34559e47130f5de828d67110178b549c9bc65410aef50df
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7ad6ce8d31ac50820ed3bcfc8ca31236757ab7ec5a63eae0f34ff2ae3bf3d57f269ec8370c22a6f290ed3cfad7f14148d5c6793ae45cc6fad69808e210c9bbba
|
|
7
|
+
data.tar.gz: 3b7fc4db84595502c733b1baa29b5f9c1d664c20779fdc70793ce669f3fec837fd27e34d9f69c836346500f8ff492ce3fc9dcd2684e9d43d94bd229ed0bdee43
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-workloadmanager_v1
|
|
2
2
|
|
|
3
|
+
### v0.54.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260602
|
|
6
|
+
* Regenerated using generator version 0.19.0
|
|
7
|
+
|
|
3
8
|
### v0.53.0 (2026-05-17)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20260429
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/workload-manager/docs) may
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -22,31 +22,31 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module WorkloadmanagerV1
|
|
24
24
|
|
|
25
|
-
# Active
|
|
25
|
+
# Active Directory details.
|
|
26
26
|
class ActiveDirectory
|
|
27
27
|
include Google::Apis::Core::Hashable
|
|
28
28
|
|
|
29
|
-
# Optional. DNS IP address
|
|
29
|
+
# Optional. DNS IP address.
|
|
30
30
|
# Corresponds to the JSON property `dnsAddress`
|
|
31
31
|
# @return [String]
|
|
32
32
|
attr_accessor :dns_address
|
|
33
33
|
|
|
34
|
-
# Optional.
|
|
34
|
+
# Optional. Human readable form of a domain such as “google.com”.
|
|
35
35
|
# Corresponds to the JSON property `domain`
|
|
36
36
|
# @return [String]
|
|
37
37
|
attr_accessor :domain
|
|
38
38
|
|
|
39
|
-
# Optional.
|
|
39
|
+
# Optional. Domain username.
|
|
40
40
|
# Corresponds to the JSON property `domainUsername`
|
|
41
41
|
# @return [String]
|
|
42
42
|
attr_accessor :domain_username
|
|
43
43
|
|
|
44
|
-
# Required.
|
|
44
|
+
# Required. Secret Manager secret.
|
|
45
45
|
# Corresponds to the JSON property `secretManagerSecret`
|
|
46
46
|
# @return [String]
|
|
47
47
|
attr_accessor :secret_manager_secret
|
|
48
48
|
|
|
49
|
-
# Required.
|
|
49
|
+
# Required. Active Directory type.
|
|
50
50
|
# Corresponds to the JSON property `type`
|
|
51
51
|
# @return [String]
|
|
52
52
|
attr_accessor :type
|
|
@@ -70,33 +70,33 @@ module Google
|
|
|
70
70
|
class Actuation
|
|
71
71
|
include Google::Apis::Core::Hashable
|
|
72
72
|
|
|
73
|
-
# Message for output of
|
|
73
|
+
# Message for output of actuation.
|
|
74
74
|
# Corresponds to the JSON property `actuationOutput`
|
|
75
75
|
# @return [Google::Apis::WorkloadmanagerV1::ActuationOutput]
|
|
76
76
|
attr_accessor :actuation_output
|
|
77
77
|
|
|
78
|
-
# Output only.
|
|
78
|
+
# Output only. Deployment output.
|
|
79
79
|
# Corresponds to the JSON property `deploymentOutput`
|
|
80
80
|
# @return [Array<Google::Apis::WorkloadmanagerV1::DeploymentOutput>]
|
|
81
81
|
attr_accessor :deployment_output
|
|
82
82
|
|
|
83
|
-
# Output only.
|
|
83
|
+
# Output only. End time stamp.
|
|
84
84
|
# Corresponds to the JSON property `endTime`
|
|
85
85
|
# @return [String]
|
|
86
86
|
attr_accessor :end_time
|
|
87
87
|
|
|
88
|
-
# The name of actuation resource. The format is projects/`project`/locations
|
|
89
|
-
# location`/deployments/`deployment`/actuations/`actuation
|
|
88
|
+
# The name of the actuation resource. The format is projects/`project`/locations/
|
|
89
|
+
# `location`/deployments/`deployment`/actuations/`actuation`.
|
|
90
90
|
# Corresponds to the JSON property `name`
|
|
91
91
|
# @return [String]
|
|
92
92
|
attr_accessor :name
|
|
93
93
|
|
|
94
|
-
# Output only.
|
|
94
|
+
# Output only. Start time stamp.
|
|
95
95
|
# Corresponds to the JSON property `startTime`
|
|
96
96
|
# @return [String]
|
|
97
97
|
attr_accessor :start_time
|
|
98
98
|
|
|
99
|
-
# Output only.
|
|
99
|
+
# Output only. Actuation state.
|
|
100
100
|
# Corresponds to the JSON property `state`
|
|
101
101
|
# @return [String]
|
|
102
102
|
attr_accessor :state
|
|
@@ -116,26 +116,26 @@ module Google
|
|
|
116
116
|
end
|
|
117
117
|
end
|
|
118
118
|
|
|
119
|
-
# Message for output of
|
|
119
|
+
# Message for output of actuation.
|
|
120
120
|
class ActuationOutput
|
|
121
121
|
include Google::Apis::Core::Hashable
|
|
122
122
|
|
|
123
|
-
# A link to
|
|
123
|
+
# A link to the Cloud Storage file that stores build logs.
|
|
124
124
|
# Corresponds to the JSON property `actuateLogs`
|
|
125
125
|
# @return [String]
|
|
126
126
|
attr_accessor :actuate_logs
|
|
127
127
|
|
|
128
|
-
# Output only.
|
|
128
|
+
# Output only. Error message returned from Ansible.
|
|
129
129
|
# Corresponds to the JSON property `ansibleError`
|
|
130
130
|
# @return [String]
|
|
131
131
|
attr_accessor :ansible_error
|
|
132
132
|
|
|
133
|
-
# Output only.
|
|
133
|
+
# Output only. Failed task name returned from Ansible.
|
|
134
134
|
# Corresponds to the JSON property `ansibleFailedTask`
|
|
135
135
|
# @return [Array<String>]
|
|
136
136
|
attr_accessor :ansible_failed_task
|
|
137
137
|
|
|
138
|
-
#
|
|
138
|
+
# Reference to the Blueprint Controller deployment and revision resource.
|
|
139
139
|
# Corresponds to the JSON property `blueprintId`
|
|
140
140
|
# @return [String]
|
|
141
141
|
attr_accessor :blueprint_id
|
|
@@ -152,24 +152,24 @@ module Google
|
|
|
152
152
|
# @return [String]
|
|
153
153
|
attr_accessor :error_code
|
|
154
154
|
|
|
155
|
-
# A link to actuation
|
|
155
|
+
# A link to the actuation Cloud Build log.
|
|
156
156
|
# Corresponds to the JSON property `errorLogs`
|
|
157
157
|
# @return [String]
|
|
158
158
|
attr_accessor :error_logs
|
|
159
159
|
|
|
160
|
-
# Output only.
|
|
160
|
+
# Output only. Whether the error message is user facing. If true, the error
|
|
161
161
|
# message will be shown in the UI.
|
|
162
162
|
# Corresponds to the JSON property `hasUserFacingErrorMsg`
|
|
163
163
|
# @return [Boolean]
|
|
164
164
|
attr_accessor :has_user_facing_error_msg
|
|
165
165
|
alias_method :has_user_facing_error_msg?, :has_user_facing_error_msg
|
|
166
166
|
|
|
167
|
-
# Output only.
|
|
167
|
+
# Output only. Error message returned from Terraform.
|
|
168
168
|
# Corresponds to the JSON property `terraformError`
|
|
169
169
|
# @return [String]
|
|
170
170
|
attr_accessor :terraform_error
|
|
171
171
|
|
|
172
|
-
#
|
|
172
|
+
# Reference to the Terraform template used.
|
|
173
173
|
# Corresponds to the JSON property `terraformTemplate`
|
|
174
174
|
# @return [String]
|
|
175
175
|
attr_accessor :terraform_template
|
|
@@ -500,76 +500,77 @@ module Google
|
|
|
500
500
|
end
|
|
501
501
|
end
|
|
502
502
|
|
|
503
|
-
# Message for
|
|
503
|
+
# Message for SAP instance details.
|
|
504
504
|
class AppDetails
|
|
505
505
|
include Google::Apis::Core::Hashable
|
|
506
506
|
|
|
507
|
-
# Optional.
|
|
507
|
+
# Optional. Instance ID for app.
|
|
508
508
|
# Corresponds to the JSON property `appInstanceId`
|
|
509
509
|
# @return [String]
|
|
510
510
|
attr_accessor :app_instance_id
|
|
511
511
|
|
|
512
|
-
# Application service account
|
|
512
|
+
# Application service account. Let customers bring their own service account for
|
|
513
|
+
# the application.
|
|
513
514
|
# Corresponds to the JSON property `appServiceAccount`
|
|
514
515
|
# @return [String]
|
|
515
516
|
attr_accessor :app_service_account
|
|
516
517
|
|
|
517
|
-
# Optional. Customized
|
|
518
|
+
# Optional. Customized VM names.
|
|
518
519
|
# Corresponds to the JSON property `appVmNames`
|
|
519
520
|
# @return [Array<String>]
|
|
520
521
|
attr_accessor :app_vm_names
|
|
521
522
|
|
|
522
|
-
# Required.
|
|
523
|
+
# Required. Image for the ASCS server.
|
|
523
524
|
# Corresponds to the JSON property `ascsImage`
|
|
524
525
|
# @return [String]
|
|
525
526
|
attr_accessor :ascs_image
|
|
526
527
|
|
|
527
|
-
# Optional.
|
|
528
|
+
# Optional. Instance ID for ASCS.
|
|
528
529
|
# Corresponds to the JSON property `ascsInstanceId`
|
|
529
530
|
# @return [String]
|
|
530
531
|
attr_accessor :ascs_instance_id
|
|
531
532
|
|
|
532
|
-
# Required.
|
|
533
|
+
# Required. ASCS machine type.
|
|
533
534
|
# Corresponds to the JSON property `ascsMachineType`
|
|
534
535
|
# @return [String]
|
|
535
536
|
attr_accessor :ascs_machine_type
|
|
536
537
|
|
|
537
|
-
# ASCS service account
|
|
538
|
+
# ASCS service account. Let customers bring their own service account for ASCS.
|
|
538
539
|
# Corresponds to the JSON property `ascsServiceAccount`
|
|
539
540
|
# @return [String]
|
|
540
541
|
attr_accessor :ascs_service_account
|
|
541
542
|
|
|
542
|
-
# Optional. ASCS
|
|
543
|
+
# Optional. ASCS VM name.
|
|
543
544
|
# Corresponds to the JSON property `ascsVm`
|
|
544
545
|
# @return [String]
|
|
545
546
|
attr_accessor :ascs_vm
|
|
546
547
|
|
|
547
|
-
# Optional.
|
|
548
|
+
# Optional. Instance ID for ERS.
|
|
548
549
|
# Corresponds to the JSON property `ersInstanceId`
|
|
549
550
|
# @return [String]
|
|
550
551
|
attr_accessor :ers_instance_id
|
|
551
552
|
|
|
552
|
-
# Optional. ERS
|
|
553
|
+
# Optional. ERS VM name.
|
|
553
554
|
# Corresponds to the JSON property `ersVm`
|
|
554
555
|
# @return [String]
|
|
555
556
|
attr_accessor :ers_vm
|
|
556
557
|
|
|
557
|
-
# Required.
|
|
558
|
+
# Required. Image for the app server and ASCS server.
|
|
558
559
|
# Corresponds to the JSON property `image`
|
|
559
560
|
# @return [String]
|
|
560
561
|
attr_accessor :image
|
|
561
562
|
|
|
562
|
-
# Required.
|
|
563
|
+
# Required. Machine type.
|
|
563
564
|
# Corresponds to the JSON property `machineType`
|
|
564
565
|
# @return [String]
|
|
565
566
|
attr_accessor :machine_type
|
|
566
567
|
|
|
567
|
-
# Required.
|
|
568
|
+
# Required. Secret Manager secret.
|
|
568
569
|
# Corresponds to the JSON property `secretManagerSecret`
|
|
569
570
|
# @return [String]
|
|
570
571
|
attr_accessor :secret_manager_secret
|
|
571
572
|
|
|
572
|
-
# Optional. Storage location
|
|
573
|
+
# Optional. Storage location.
|
|
573
574
|
# Corresponds to the JSON property `sharedStorage`
|
|
574
575
|
# @return [String]
|
|
575
576
|
attr_accessor :shared_storage
|
|
@@ -580,7 +581,7 @@ module Google
|
|
|
580
581
|
# @return [String]
|
|
581
582
|
attr_accessor :sid
|
|
582
583
|
|
|
583
|
-
# Required.
|
|
584
|
+
# Required. VMs multiplier.
|
|
584
585
|
# Corresponds to the JSON property `vmsMultiplier`
|
|
585
586
|
# @return [Fixnum]
|
|
586
587
|
attr_accessor :vms_multiplier
|
|
@@ -775,65 +776,65 @@ module Google
|
|
|
775
776
|
end
|
|
776
777
|
end
|
|
777
778
|
|
|
778
|
-
# Database details
|
|
779
|
+
# Database details.
|
|
779
780
|
class Database
|
|
780
781
|
include Google::Apis::Core::Hashable
|
|
781
782
|
|
|
782
|
-
# Required.
|
|
783
|
+
# Required. Disk type.
|
|
783
784
|
# Corresponds to the JSON property `diskType`
|
|
784
785
|
# @return [String]
|
|
785
786
|
attr_accessor :disk_type
|
|
786
787
|
|
|
787
|
-
# Optional.
|
|
788
|
+
# Optional. Only useful for Linux High Availability setup.
|
|
788
789
|
# Corresponds to the JSON property `floatingIpAddress`
|
|
789
790
|
# @return [String]
|
|
790
791
|
attr_accessor :floating_ip_address
|
|
791
792
|
|
|
792
|
-
# Required.
|
|
793
|
+
# Required. Machine type.
|
|
793
794
|
# Corresponds to the JSON property `machineType`
|
|
794
795
|
# @return [String]
|
|
795
796
|
attr_accessor :machine_type
|
|
796
797
|
|
|
797
|
-
# Optional.
|
|
798
|
+
# Optional. The name of a secondary-sole-tenant node/node group.
|
|
798
799
|
# Corresponds to the JSON property `secondarySoleTenantNode`
|
|
799
800
|
# @return [String]
|
|
800
801
|
attr_accessor :secondary_sole_tenant_node
|
|
801
802
|
|
|
802
|
-
# Optional.
|
|
803
|
-
# googleapis.com/node-name
|
|
803
|
+
# Optional. The type of a secondary-sole-tenant node/node group. E.g., compute.
|
|
804
|
+
# googleapis.com/node-name.
|
|
804
805
|
# Corresponds to the JSON property `secondarySoleTenantNodeType`
|
|
805
806
|
# @return [String]
|
|
806
807
|
attr_accessor :secondary_sole_tenant_node_type
|
|
807
808
|
|
|
808
|
-
# Required.
|
|
809
|
+
# Required. Secret Manager secret.
|
|
809
810
|
# Corresponds to the JSON property `secretManagerSecret`
|
|
810
811
|
# @return [String]
|
|
811
812
|
attr_accessor :secret_manager_secret
|
|
812
813
|
|
|
813
|
-
# Required.
|
|
814
|
+
# Required. Whether simultaneous multithreading is enabled or not.
|
|
814
815
|
# Corresponds to the JSON property `smt`
|
|
815
816
|
# @return [Boolean]
|
|
816
817
|
attr_accessor :smt
|
|
817
818
|
alias_method :smt?, :smt
|
|
818
819
|
|
|
819
|
-
# Optional.
|
|
820
|
+
# Optional. The name of a primary sole-tenant node/node group.
|
|
820
821
|
# Corresponds to the JSON property `soleTenantNode`
|
|
821
822
|
# @return [String]
|
|
822
823
|
attr_accessor :sole_tenant_node
|
|
823
824
|
|
|
824
|
-
# Optional.
|
|
825
|
-
# googleapis.com/node-name
|
|
825
|
+
# Optional. The type of a primary sole-tenant node/node group. E.g., compute.
|
|
826
|
+
# googleapis.com/node-name.
|
|
826
827
|
# Corresponds to the JSON property `soleTenantNodeType`
|
|
827
828
|
# @return [String]
|
|
828
829
|
attr_accessor :sole_tenant_node_type
|
|
829
830
|
|
|
830
|
-
# Required.
|
|
831
|
+
# Required. Whether to have TempDB on local SSD.
|
|
831
832
|
# Corresponds to the JSON property `tempdbOnSsd`
|
|
832
833
|
# @return [Boolean]
|
|
833
834
|
attr_accessor :tempdb_on_ssd
|
|
834
835
|
alias_method :tempdb_on_ssd?, :tempdb_on_ssd
|
|
835
836
|
|
|
836
|
-
# Required. SHARED or SOLE_TENANT
|
|
837
|
+
# Required. SHARED or SOLE_TENANT.
|
|
837
838
|
# Corresponds to the JSON property `tenancyModel`
|
|
838
839
|
# @return [String]
|
|
839
840
|
attr_accessor :tenancy_model
|
|
@@ -858,46 +859,46 @@ module Google
|
|
|
858
859
|
end
|
|
859
860
|
end
|
|
860
861
|
|
|
861
|
-
# Message for
|
|
862
|
+
# Message for SAP instance details.
|
|
862
863
|
class DatabaseDetails
|
|
863
864
|
include Google::Apis::Core::Hashable
|
|
864
865
|
|
|
865
|
-
# Database service account
|
|
866
|
+
# Database service account. Let customers bring their own SA for the database.
|
|
866
867
|
# Corresponds to the JSON property `databaseServiceAccount`
|
|
867
868
|
# @return [String]
|
|
868
869
|
attr_accessor :database_service_account
|
|
869
870
|
|
|
870
|
-
# Required.
|
|
871
|
+
# Required. Disk type.
|
|
871
872
|
# Corresponds to the JSON property `diskType`
|
|
872
873
|
# @return [String]
|
|
873
874
|
attr_accessor :disk_type
|
|
874
875
|
|
|
875
|
-
# Required.
|
|
876
|
+
# Required. Image for the database server.
|
|
876
877
|
# Corresponds to the JSON property `image`
|
|
877
878
|
# @return [String]
|
|
878
879
|
attr_accessor :image
|
|
879
880
|
|
|
880
|
-
# Optional.
|
|
881
|
+
# Optional. Instance ID.
|
|
881
882
|
# Corresponds to the JSON property `instanceId`
|
|
882
883
|
# @return [String]
|
|
883
884
|
attr_accessor :instance_id
|
|
884
885
|
|
|
885
|
-
# Required.
|
|
886
|
+
# Required. Machine type.
|
|
886
887
|
# Corresponds to the JSON property `machineType`
|
|
887
888
|
# @return [String]
|
|
888
889
|
attr_accessor :machine_type
|
|
889
890
|
|
|
890
|
-
# Optional.
|
|
891
|
+
# Optional. Primary DB VM name.
|
|
891
892
|
# Corresponds to the JSON property `primaryDbVm`
|
|
892
893
|
# @return [String]
|
|
893
894
|
attr_accessor :primary_db_vm
|
|
894
895
|
|
|
895
|
-
# Optional.
|
|
896
|
+
# Optional. Secondary DB VM name.
|
|
896
897
|
# Corresponds to the JSON property `secondaryDbVm`
|
|
897
898
|
# @return [String]
|
|
898
899
|
attr_accessor :secondary_db_vm
|
|
899
900
|
|
|
900
|
-
# Required.
|
|
901
|
+
# Required. Secret Manager secret.
|
|
901
902
|
# Corresponds to the JSON property `secretManagerSecret`
|
|
902
903
|
# @return [String]
|
|
903
904
|
attr_accessor :secret_manager_secret
|
|
@@ -955,36 +956,36 @@ module Google
|
|
|
955
956
|
class Deployment
|
|
956
957
|
include Google::Apis::Core::Hashable
|
|
957
958
|
|
|
958
|
-
# Output only.
|
|
959
|
+
# Output only. Create time stamp.
|
|
959
960
|
# Corresponds to the JSON property `createTime`
|
|
960
961
|
# @return [String]
|
|
961
962
|
attr_accessor :create_time
|
|
962
963
|
|
|
963
|
-
# Description of the
|
|
964
|
+
# Description of the deployment.
|
|
964
965
|
# Corresponds to the JSON property `description`
|
|
965
966
|
# @return [String]
|
|
966
967
|
attr_accessor :description
|
|
967
968
|
|
|
968
|
-
# The name of deployment resource. The format
|
|
969
|
-
# locations/`location_id`/deployments/`deployment_id`'
|
|
969
|
+
# The name of the deployment resource. The format is 'projects/`project_id`/
|
|
970
|
+
# locations/`location_id`/deployments/`deployment_id`'.
|
|
970
971
|
# Corresponds to the JSON property `name`
|
|
971
972
|
# @return [String]
|
|
972
973
|
attr_accessor :name
|
|
973
974
|
|
|
974
|
-
# Message for
|
|
975
|
+
# Message for SAP system workload.
|
|
975
976
|
# Corresponds to the JSON property `sapSystemS4Config`
|
|
976
977
|
# @return [Google::Apis::WorkloadmanagerV1::SapSystemS4Config]
|
|
977
978
|
attr_accessor :sap_system_s4_config
|
|
978
979
|
|
|
979
|
-
# User-specified Service Account (SA) credentials to be used for
|
|
980
|
+
# User-specified Service Account (SA) credentials to be used for Cloud Build.
|
|
980
981
|
# Format: `projects/`projectID`/serviceAccounts/`serviceAccount`` The default
|
|
981
982
|
# Cloud Build SA will be used initially if this field is not set during
|
|
982
|
-
# deployment creation
|
|
983
|
+
# deployment creation.
|
|
983
984
|
# Corresponds to the JSON property `serviceAccount`
|
|
984
985
|
# @return [String]
|
|
985
986
|
attr_accessor :service_account
|
|
986
987
|
|
|
987
|
-
# Message for MS SQL workload
|
|
988
|
+
# Message for MS SQL workload.
|
|
988
989
|
# Corresponds to the JSON property `sqlServerWorkload`
|
|
989
990
|
# @return [Google::Apis::WorkloadmanagerV1::SqlServerWorkload]
|
|
990
991
|
attr_accessor :sql_server_workload
|
|
@@ -1003,7 +1004,7 @@ module Google
|
|
|
1003
1004
|
# @return [Hash<String,Google::Apis::WorkloadmanagerV1::TerraformVariable>]
|
|
1004
1005
|
attr_accessor :terraform_variables
|
|
1005
1006
|
|
|
1006
|
-
# Output only.
|
|
1007
|
+
# Output only. Update time stamp.
|
|
1007
1008
|
# Corresponds to the JSON property `updateTime`
|
|
1008
1009
|
# @return [String]
|
|
1009
1010
|
attr_accessor :update_time
|
|
@@ -1016,7 +1017,7 @@ module Google
|
|
|
1016
1017
|
# @return [String]
|
|
1017
1018
|
attr_accessor :worker_pool
|
|
1018
1019
|
|
|
1019
|
-
# Optional. Workload type of the deployment
|
|
1020
|
+
# Optional. Workload type of the deployment.
|
|
1020
1021
|
# Corresponds to the JSON property `workloadType`
|
|
1021
1022
|
# @return [String]
|
|
1022
1023
|
attr_accessor :workload_type
|
|
@@ -1041,16 +1042,16 @@ module Google
|
|
|
1041
1042
|
end
|
|
1042
1043
|
end
|
|
1043
1044
|
|
|
1044
|
-
# Message for output of deployment resource
|
|
1045
|
+
# Message for output of deployment resource.
|
|
1045
1046
|
class DeploymentOutput
|
|
1046
1047
|
include Google::Apis::Core::Hashable
|
|
1047
1048
|
|
|
1048
|
-
#
|
|
1049
|
+
# Name of the resource.
|
|
1049
1050
|
# Corresponds to the JSON property `name`
|
|
1050
1051
|
# @return [String]
|
|
1051
1052
|
attr_accessor :name
|
|
1052
1053
|
|
|
1053
|
-
#
|
|
1054
|
+
# Type of the resource.
|
|
1054
1055
|
# Corresponds to the JSON property `type`
|
|
1055
1056
|
# @return [String]
|
|
1056
1057
|
attr_accessor :type
|
|
@@ -1583,7 +1584,7 @@ module Google
|
|
|
1583
1584
|
class ListActuationsResponse
|
|
1584
1585
|
include Google::Apis::Core::Hashable
|
|
1585
1586
|
|
|
1586
|
-
# The list of
|
|
1587
|
+
# The list of actuations.
|
|
1587
1588
|
# Corresponds to the JSON property `actuations`
|
|
1588
1589
|
# @return [Array<Google::Apis::WorkloadmanagerV1::Actuation>]
|
|
1589
1590
|
attr_accessor :actuations
|
|
@@ -1611,11 +1612,11 @@ module Google
|
|
|
1611
1612
|
end
|
|
1612
1613
|
end
|
|
1613
1614
|
|
|
1614
|
-
# Message for response to listing
|
|
1615
|
+
# Message for response to listing deployments.
|
|
1615
1616
|
class ListDeploymentsResponse
|
|
1616
1617
|
include Google::Apis::Core::Hashable
|
|
1617
1618
|
|
|
1618
|
-
# The list of
|
|
1619
|
+
# The list of deployments.
|
|
1619
1620
|
# Corresponds to the JSON property `deployments`
|
|
1620
1621
|
# @return [Array<Google::Apis::WorkloadmanagerV1::Deployment>]
|
|
1621
1622
|
attr_accessor :deployments
|
|
@@ -1912,35 +1913,36 @@ module Google
|
|
|
1912
1913
|
end
|
|
1913
1914
|
end
|
|
1914
1915
|
|
|
1915
|
-
# Message for
|
|
1916
|
+
# Message for SAP instance details.
|
|
1916
1917
|
class LocationDetails
|
|
1917
1918
|
include Google::Apis::Core::Hashable
|
|
1918
1919
|
|
|
1919
|
-
# Optional.
|
|
1920
|
-
# field provides an option to not always create firewall for the
|
|
1920
|
+
# Optional. Create firewall. If true, creates a firewall for the deployment.
|
|
1921
|
+
# This field provides an option to not always create a firewall for the
|
|
1922
|
+
# deployment.
|
|
1921
1923
|
# Corresponds to the JSON property `createCommsFirewall`
|
|
1922
1924
|
# @return [Boolean]
|
|
1923
1925
|
attr_accessor :create_comms_firewall
|
|
1924
1926
|
alias_method :create_comms_firewall?, :create_comms_firewall
|
|
1925
1927
|
|
|
1926
|
-
# Optional.
|
|
1928
|
+
# Optional. Network tags.
|
|
1927
1929
|
# Corresponds to the JSON property `customTags`
|
|
1928
1930
|
# @return [Array<String>]
|
|
1929
1931
|
attr_accessor :custom_tags
|
|
1930
1932
|
|
|
1931
|
-
# Optional.
|
|
1932
|
-
# false otherwise deployment_dns_enabled
|
|
1933
|
+
# Optional. When the user skips DNS configuration in the UI, `
|
|
1934
|
+
# deployment_dns_enabled` is false; otherwise `deployment_dns_enabled` is true.
|
|
1933
1935
|
# Corresponds to the JSON property `deploymentDnsEnabled`
|
|
1934
1936
|
# @return [Boolean]
|
|
1935
1937
|
attr_accessor :deployment_dns_enabled
|
|
1936
1938
|
alias_method :deployment_dns_enabled?, :deployment_dns_enabled
|
|
1937
1939
|
|
|
1938
|
-
# Optional.
|
|
1940
|
+
# Optional. DNS zone name.
|
|
1939
1941
|
# Corresponds to the JSON property `dnsZone`
|
|
1940
1942
|
# @return [String]
|
|
1941
1943
|
attr_accessor :dns_zone
|
|
1942
1944
|
|
|
1943
|
-
# Optional.
|
|
1945
|
+
# Optional. DNS zone name suffix.
|
|
1944
1946
|
# Corresponds to the JSON property `dnsZoneNameSuffix`
|
|
1945
1947
|
# @return [String]
|
|
1946
1948
|
attr_accessor :dns_zone_name_suffix
|
|
@@ -1950,32 +1952,32 @@ module Google
|
|
|
1950
1952
|
# @return [String]
|
|
1951
1953
|
attr_accessor :internet_access
|
|
1952
1954
|
|
|
1953
|
-
# Optional.
|
|
1955
|
+
# Optional. Network project.
|
|
1954
1956
|
# Corresponds to the JSON property `networkProject`
|
|
1955
1957
|
# @return [String]
|
|
1956
1958
|
attr_accessor :network_project
|
|
1957
1959
|
|
|
1958
|
-
# Required.
|
|
1960
|
+
# Required. Region name.
|
|
1959
1961
|
# Corresponds to the JSON property `regionName`
|
|
1960
1962
|
# @return [String]
|
|
1961
1963
|
attr_accessor :region_name
|
|
1962
1964
|
|
|
1963
|
-
# Required.
|
|
1965
|
+
# Required. Subnet name.
|
|
1964
1966
|
# Corresponds to the JSON property `subnetName`
|
|
1965
1967
|
# @return [String]
|
|
1966
1968
|
attr_accessor :subnet_name
|
|
1967
1969
|
|
|
1968
|
-
# Required.
|
|
1970
|
+
# Required. VPC name.
|
|
1969
1971
|
# Corresponds to the JSON property `vpcName`
|
|
1970
1972
|
# @return [String]
|
|
1971
1973
|
attr_accessor :vpc_name
|
|
1972
1974
|
|
|
1973
|
-
# Required.
|
|
1975
|
+
# Required. Zone 1 name.
|
|
1974
1976
|
# Corresponds to the JSON property `zone1Name`
|
|
1975
1977
|
# @return [String]
|
|
1976
1978
|
attr_accessor :zone1_name
|
|
1977
1979
|
|
|
1978
|
-
# Optional.
|
|
1980
|
+
# Optional. Zone 2 name.
|
|
1979
1981
|
# Corresponds to the JSON property `zone2Name`
|
|
1980
1982
|
# @return [String]
|
|
1981
1983
|
attr_accessor :zone2_name
|
|
@@ -2167,36 +2169,36 @@ module Google
|
|
|
2167
2169
|
end
|
|
2168
2170
|
end
|
|
2169
2171
|
|
|
2170
|
-
#
|
|
2172
|
+
# Pacemaker configuration.
|
|
2171
2173
|
class Pacemaker
|
|
2172
2174
|
include Google::Apis::Core::Hashable
|
|
2173
2175
|
|
|
2174
|
-
# Required.
|
|
2176
|
+
# Required. Bucket location for node certificates.
|
|
2175
2177
|
# Corresponds to the JSON property `bucketNameNodeCertificates`
|
|
2176
2178
|
# @return [String]
|
|
2177
2179
|
attr_accessor :bucket_name_node_certificates
|
|
2178
2180
|
|
|
2179
|
-
# Required.
|
|
2181
|
+
# Required. Pacemaker cluster name.
|
|
2180
2182
|
# Corresponds to the JSON property `pacemakerCluster`
|
|
2181
2183
|
# @return [String]
|
|
2182
2184
|
attr_accessor :pacemaker_cluster
|
|
2183
2185
|
|
|
2184
|
-
# Required.
|
|
2186
|
+
# Required. Pacemaker cluster secret name.
|
|
2185
2187
|
# Corresponds to the JSON property `pacemakerClusterSecret`
|
|
2186
2188
|
# @return [String]
|
|
2187
2189
|
attr_accessor :pacemaker_cluster_secret
|
|
2188
2190
|
|
|
2189
|
-
# Required.
|
|
2191
|
+
# Required. Pacemaker cluster username.
|
|
2190
2192
|
# Corresponds to the JSON property `pacemakerClusterUsername`
|
|
2191
2193
|
# @return [String]
|
|
2192
2194
|
attr_accessor :pacemaker_cluster_username
|
|
2193
2195
|
|
|
2194
|
-
# Required.
|
|
2196
|
+
# Required. SQL Pacemaker secret name.
|
|
2195
2197
|
# Corresponds to the JSON property `sqlPacemakerSecret`
|
|
2196
2198
|
# @return [String]
|
|
2197
2199
|
attr_accessor :sql_pacemaker_secret
|
|
2198
2200
|
|
|
2199
|
-
# Required.
|
|
2201
|
+
# Required. SQL Pacemaker username.
|
|
2200
2202
|
# Corresponds to the JSON property `sqlPacemakerUsername`
|
|
2201
2203
|
# @return [String]
|
|
2202
2204
|
attr_accessor :sql_pacemaker_username
|
|
@@ -3250,7 +3252,7 @@ module Google
|
|
|
3250
3252
|
end
|
|
3251
3253
|
end
|
|
3252
3254
|
|
|
3253
|
-
# Message for
|
|
3255
|
+
# Message for SAP system workload.
|
|
3254
3256
|
class SapSystemS4Config
|
|
3255
3257
|
include Google::Apis::Core::Hashable
|
|
3256
3258
|
|
|
@@ -3260,64 +3262,64 @@ module Google
|
|
|
3260
3262
|
attr_accessor :allow_stopping_for_update
|
|
3261
3263
|
alias_method :allow_stopping_for_update?, :allow_stopping_for_update
|
|
3262
3264
|
|
|
3263
|
-
# Ansible runner service account
|
|
3264
|
-
# runner
|
|
3265
|
+
# Ansible runner service account. Let customers bring their own service account
|
|
3266
|
+
# for the Ansible runner.
|
|
3265
3267
|
# Corresponds to the JSON property `ansibleRunnerServiceAccount`
|
|
3266
3268
|
# @return [String]
|
|
3267
3269
|
attr_accessor :ansible_runner_service_account
|
|
3268
3270
|
|
|
3269
|
-
# Message for
|
|
3271
|
+
# Message for SAP instance details.
|
|
3270
3272
|
# Corresponds to the JSON property `app`
|
|
3271
3273
|
# @return [Google::Apis::WorkloadmanagerV1::AppDetails]
|
|
3272
3274
|
attr_accessor :app
|
|
3273
3275
|
|
|
3274
|
-
# Message for
|
|
3276
|
+
# Message for SAP instance details.
|
|
3275
3277
|
# Corresponds to the JSON property `database`
|
|
3276
3278
|
# @return [Google::Apis::WorkloadmanagerV1::DatabaseDetails]
|
|
3277
3279
|
attr_accessor :database
|
|
3278
3280
|
|
|
3279
|
-
# Required.
|
|
3281
|
+
# Required. Supports non-HA and HA models.
|
|
3280
3282
|
# Corresponds to the JSON property `deploymentModel`
|
|
3281
3283
|
# @return [String]
|
|
3282
3284
|
attr_accessor :deployment_model
|
|
3283
3285
|
|
|
3284
|
-
# Required.
|
|
3286
|
+
# Required. Deployment environment.
|
|
3285
3287
|
# Corresponds to the JSON property `environmentType`
|
|
3286
3288
|
# @return [String]
|
|
3287
3289
|
attr_accessor :environment_type
|
|
3288
3290
|
|
|
3289
|
-
#
|
|
3290
|
-
# project where the deployment resource
|
|
3291
|
+
# The project that infrastructure is deployed in. Currently only supports the
|
|
3292
|
+
# same project where the deployment resource exists.
|
|
3291
3293
|
# Corresponds to the JSON property `gcpProjectId`
|
|
3292
3294
|
# @return [String]
|
|
3293
3295
|
attr_accessor :gcp_project_id
|
|
3294
3296
|
|
|
3295
|
-
# Message for
|
|
3297
|
+
# Message for SAP instance details.
|
|
3296
3298
|
# Corresponds to the JSON property `location`
|
|
3297
3299
|
# @return [Google::Apis::WorkloadmanagerV1::LocationDetails]
|
|
3298
3300
|
attr_accessor :location
|
|
3299
3301
|
|
|
3300
|
-
# Required.
|
|
3302
|
+
# Required. Media bucket name.
|
|
3301
3303
|
# Corresponds to the JSON property `mediaBucketName`
|
|
3302
3304
|
# @return [String]
|
|
3303
3305
|
attr_accessor :media_bucket_name
|
|
3304
3306
|
|
|
3305
|
-
# Optional.
|
|
3307
|
+
# Optional. SAP boot disk image.
|
|
3306
3308
|
# Corresponds to the JSON property `sapBootDiskImage`
|
|
3307
3309
|
# @return [String]
|
|
3308
3310
|
attr_accessor :sap_boot_disk_image
|
|
3309
3311
|
|
|
3310
|
-
# Required.
|
|
3312
|
+
# Required. Supports scale up and scale out.
|
|
3311
3313
|
# Corresponds to the JSON property `scalingMethod`
|
|
3312
3314
|
# @return [String]
|
|
3313
3315
|
attr_accessor :scaling_method
|
|
3314
3316
|
|
|
3315
|
-
# Required.
|
|
3317
|
+
# Required. SAP HANA version.
|
|
3316
3318
|
# Corresponds to the JSON property `version`
|
|
3317
3319
|
# @return [String]
|
|
3318
3320
|
attr_accessor :version
|
|
3319
3321
|
|
|
3320
|
-
#
|
|
3322
|
+
# VM prefix.
|
|
3321
3323
|
# Corresponds to the JSON property `vmPrefix`
|
|
3322
3324
|
# @return [String]
|
|
3323
3325
|
attr_accessor :vm_prefix
|
|
@@ -3532,56 +3534,56 @@ module Google
|
|
|
3532
3534
|
end
|
|
3533
3535
|
end
|
|
3534
3536
|
|
|
3535
|
-
# Location and networking details for configuring SQL server workload
|
|
3537
|
+
# Location and networking details for configuring SQL server workload.
|
|
3536
3538
|
class SqlLocationDetails
|
|
3537
3539
|
include Google::Apis::Core::Hashable
|
|
3538
3540
|
|
|
3539
|
-
# Optional.
|
|
3540
|
-
# an existing DNS
|
|
3541
|
-
# existing_dns_zone_name
|
|
3541
|
+
# Optional. Create a new DNS zone when the field is empty. Only shown for `Using
|
|
3542
|
+
# an existing DNS`. List of existing DNS zones. Terraform variable name:
|
|
3543
|
+
# existing_dns_zone_name.
|
|
3542
3544
|
# Corresponds to the JSON property `dnsZone`
|
|
3543
3545
|
# @return [String]
|
|
3544
3546
|
attr_accessor :dns_zone
|
|
3545
3547
|
|
|
3546
|
-
# Required.
|
|
3547
|
-
# the same project where the deployment resource exists.
|
|
3548
|
+
# Required. The project that infrastructure is deployed in. Currently only
|
|
3549
|
+
# supports the same project where the deployment resource exists.
|
|
3548
3550
|
# Corresponds to the JSON property `gcpProjectId`
|
|
3549
3551
|
# @return [String]
|
|
3550
3552
|
attr_accessor :gcp_project_id
|
|
3551
3553
|
|
|
3552
|
-
# Required. Internet Access
|
|
3554
|
+
# Required. Internet Access.
|
|
3553
3555
|
# Corresponds to the JSON property `internetAccess`
|
|
3554
3556
|
# @return [String]
|
|
3555
3557
|
attr_accessor :internet_access
|
|
3556
3558
|
|
|
3557
|
-
# Required.
|
|
3559
|
+
# Required. Network name.
|
|
3558
3560
|
# Corresponds to the JSON property `network`
|
|
3559
3561
|
# @return [String]
|
|
3560
3562
|
attr_accessor :network
|
|
3561
3563
|
|
|
3562
|
-
# Required.
|
|
3564
|
+
# Required. Primary zone.
|
|
3563
3565
|
# Corresponds to the JSON property `primaryZone`
|
|
3564
3566
|
# @return [String]
|
|
3565
3567
|
attr_accessor :primary_zone
|
|
3566
3568
|
|
|
3567
|
-
# Required.
|
|
3569
|
+
# Required. Region name.
|
|
3568
3570
|
# Corresponds to the JSON property `region`
|
|
3569
3571
|
# @return [String]
|
|
3570
3572
|
attr_accessor :region
|
|
3571
3573
|
|
|
3572
|
-
# Optional.
|
|
3573
|
-
# Availability deployment mode
|
|
3574
|
+
# Optional. Secondary zone cannot be the same as primary_zone and is only for
|
|
3575
|
+
# High Availability deployment mode.
|
|
3574
3576
|
# Corresponds to the JSON property `secondaryZone`
|
|
3575
3577
|
# @return [String]
|
|
3576
3578
|
attr_accessor :secondary_zone
|
|
3577
3579
|
|
|
3578
|
-
# Required.
|
|
3580
|
+
# Required. Subnetwork name.
|
|
3579
3581
|
# Corresponds to the JSON property `subnetwork`
|
|
3580
3582
|
# @return [String]
|
|
3581
3583
|
attr_accessor :subnetwork
|
|
3582
3584
|
|
|
3583
|
-
# Optional.
|
|
3584
|
-
# it is only for High Availability deployment mode
|
|
3585
|
+
# Optional. Tertiary zone cannot be the same as primary_zone and secondary_zone,
|
|
3586
|
+
# and it is only for High Availability deployment mode.
|
|
3585
3587
|
# Corresponds to the JSON property `tertiaryZone`
|
|
3586
3588
|
# @return [String]
|
|
3587
3589
|
attr_accessor :tertiary_zone
|
|
@@ -3604,97 +3606,98 @@ module Google
|
|
|
3604
3606
|
end
|
|
3605
3607
|
end
|
|
3606
3608
|
|
|
3607
|
-
# Message for MS SQL workload
|
|
3609
|
+
# Message for MS SQL workload.
|
|
3608
3610
|
class SqlServerWorkload
|
|
3609
3611
|
include Google::Apis::Core::Hashable
|
|
3610
3612
|
|
|
3611
|
-
# Active
|
|
3613
|
+
# Active Directory details.
|
|
3612
3614
|
# Corresponds to the JSON property `activeDirectory`
|
|
3613
3615
|
# @return [Google::Apis::WorkloadmanagerV1::ActiveDirectory]
|
|
3614
3616
|
attr_accessor :active_directory
|
|
3615
3617
|
|
|
3616
|
-
# Compute
|
|
3617
|
-
#
|
|
3618
|
+
# Compute Engine service account. Let customers bring their own service account
|
|
3619
|
+
# for Compute Engine.
|
|
3618
3620
|
# Corresponds to the JSON property `computeEngineServiceAccount`
|
|
3619
3621
|
# @return [String]
|
|
3620
3622
|
attr_accessor :compute_engine_service_account
|
|
3621
3623
|
|
|
3622
|
-
# Database details
|
|
3624
|
+
# Database details.
|
|
3623
3625
|
# Corresponds to the JSON property `database`
|
|
3624
3626
|
# @return [Google::Apis::WorkloadmanagerV1::Database]
|
|
3625
3627
|
attr_accessor :database
|
|
3626
3628
|
|
|
3627
|
-
# Required. HIGH_AVAILABILITY or SINGLE_INSTANCE
|
|
3629
|
+
# Required. HIGH_AVAILABILITY or SINGLE_INSTANCE.
|
|
3628
3630
|
# Corresponds to the JSON property `deploymentModel`
|
|
3629
3631
|
# @return [String]
|
|
3630
3632
|
attr_accessor :deployment_model
|
|
3631
3633
|
|
|
3632
|
-
# Required.
|
|
3634
|
+
# Required. Deployment environment.
|
|
3633
3635
|
# Corresponds to the JSON property `environmentType`
|
|
3634
3636
|
# @return [String]
|
|
3635
3637
|
attr_accessor :environment_type
|
|
3636
3638
|
|
|
3637
|
-
# Optional. SHARED_DISK or S2D
|
|
3639
|
+
# Optional. SHARED_DISK or S2D.
|
|
3638
3640
|
# Corresponds to the JSON property `fciType`
|
|
3639
3641
|
# @return [String]
|
|
3640
3642
|
attr_accessor :fci_type
|
|
3641
3643
|
|
|
3642
|
-
# Optional. AOAG or FCI
|
|
3644
|
+
# Optional. AOAG or FCI. It is only needed for the High Availability deployment
|
|
3645
|
+
# mode.
|
|
3643
3646
|
# Corresponds to the JSON property `haType`
|
|
3644
3647
|
# @return [String]
|
|
3645
3648
|
attr_accessor :ha_type
|
|
3646
3649
|
|
|
3647
|
-
# Required. SQL licensing type
|
|
3650
|
+
# Required. SQL licensing type.
|
|
3648
3651
|
# Corresponds to the JSON property `isSqlPayg`
|
|
3649
3652
|
# @return [Boolean]
|
|
3650
3653
|
attr_accessor :is_sql_payg
|
|
3651
3654
|
alias_method :is_sql_payg?, :is_sql_payg
|
|
3652
3655
|
|
|
3653
|
-
# Location and networking details for configuring SQL server workload
|
|
3656
|
+
# Location and networking details for configuring SQL server workload.
|
|
3654
3657
|
# Corresponds to the JSON property `location`
|
|
3655
3658
|
# @return [Google::Apis::WorkloadmanagerV1::SqlLocationDetails]
|
|
3656
3659
|
attr_accessor :location
|
|
3657
3660
|
|
|
3658
|
-
# Required.
|
|
3661
|
+
# Required. Name of the media storing SQL server installation files.
|
|
3659
3662
|
# Corresponds to the JSON property `mediaBucket`
|
|
3660
3663
|
# @return [String]
|
|
3661
3664
|
attr_accessor :media_bucket
|
|
3662
3665
|
|
|
3663
|
-
# Required. type of the operating system the SQL server is going to run on
|
|
3664
|
-
# of
|
|
3666
|
+
# Required. The type of the operating system the SQL server is going to run on
|
|
3667
|
+
# top of.
|
|
3665
3668
|
# Corresponds to the JSON property `operatingSystemType`
|
|
3666
3669
|
# @return [String]
|
|
3667
3670
|
attr_accessor :operating_system_type
|
|
3668
3671
|
|
|
3669
|
-
# Required.
|
|
3672
|
+
# Required. The image of the operating system.
|
|
3670
3673
|
# Corresponds to the JSON property `osImage`
|
|
3671
3674
|
# @return [String]
|
|
3672
3675
|
attr_accessor :os_image
|
|
3673
3676
|
|
|
3674
|
-
# Optional. OS image type
|
|
3677
|
+
# Optional. OS image type. It's used to create boot disks for VM instances. When
|
|
3675
3678
|
# either Windows licensing type or SQL licensing type is BYOL, this option is
|
|
3676
|
-
# disabled and
|
|
3679
|
+
# disabled and defaults to a custom image.
|
|
3677
3680
|
# Corresponds to the JSON property `osImageType`
|
|
3678
3681
|
# @return [String]
|
|
3679
3682
|
attr_accessor :os_image_type
|
|
3680
3683
|
|
|
3681
|
-
#
|
|
3684
|
+
# Pacemaker configuration.
|
|
3682
3685
|
# Corresponds to the JSON property `pacemaker`
|
|
3683
3686
|
# @return [Google::Apis::WorkloadmanagerV1::Pacemaker]
|
|
3684
3687
|
attr_accessor :pacemaker
|
|
3685
3688
|
|
|
3686
|
-
# Optional. SQL Server Edition type, only applicable when
|
|
3687
|
-
# Linux
|
|
3689
|
+
# Optional. SQL Server Edition type, only applicable when the operating system
|
|
3690
|
+
# is Linux.
|
|
3688
3691
|
# Corresponds to the JSON property `sqlServerEdition`
|
|
3689
3692
|
# @return [String]
|
|
3690
3693
|
attr_accessor :sql_server_edition
|
|
3691
3694
|
|
|
3692
|
-
# Optional. 2017
|
|
3695
|
+
# Optional. 2017, 2019, or 2022.
|
|
3693
3696
|
# Corresponds to the JSON property `sqlServerVersion`
|
|
3694
3697
|
# @return [String]
|
|
3695
3698
|
attr_accessor :sql_server_version
|
|
3696
3699
|
|
|
3697
|
-
# Required.
|
|
3700
|
+
# Required. Should be unique in the project.
|
|
3698
3701
|
# Corresponds to the JSON property `vmPrefix`
|
|
3699
3702
|
# @return [String]
|
|
3700
3703
|
attr_accessor :vm_prefix
|
|
@@ -3879,10 +3882,10 @@ module Google
|
|
|
3879
3882
|
end
|
|
3880
3883
|
end
|
|
3881
3884
|
|
|
3882
|
-
# In order to align with Infra Manager dependency, we create the same
|
|
3885
|
+
# In order to align with the Infra Manager dependency, we create the same
|
|
3883
3886
|
# TerraformVariable message to represent a Terraform input variable, by
|
|
3884
3887
|
# following Infra Manager's API documentation: https://cloud.google.com/
|
|
3885
|
-
# infrastructure-manager/docs/reference/rest A Terraform input variable.
|
|
3888
|
+
# infrastructure-manager/docs/reference/rest. A Terraform input variable.
|
|
3886
3889
|
class TerraformVariable
|
|
3887
3890
|
include Google::Apis::Core::Hashable
|
|
3888
3891
|
|
|
@@ -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.54.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260602"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -145,7 +145,7 @@ module Google
|
|
|
145
145
|
# project_id`/locations/`location_id``
|
|
146
146
|
# @param [Google::Apis::WorkloadmanagerV1::Deployment] deployment_object
|
|
147
147
|
# @param [String] deployment_id
|
|
148
|
-
# Required.
|
|
148
|
+
# Required. ID of the deployment.
|
|
149
149
|
# @param [String] request_id
|
|
150
150
|
# Optional. An optional request ID to identify requests. Specify a unique
|
|
151
151
|
# request ID so that if you must retry your request, the server will know to
|
|
@@ -190,10 +190,10 @@ module Google
|
|
|
190
190
|
|
|
191
191
|
# Deletes a single Deployment.
|
|
192
192
|
# @param [String] name
|
|
193
|
-
# Required. Name of the resource
|
|
193
|
+
# Required. Name of the resource.
|
|
194
194
|
# @param [Boolean] force
|
|
195
|
-
# Optional. If set to true, any actuation will also be deleted.
|
|
196
|
-
#
|
|
195
|
+
# Optional. If set to true, any actuation will also be deleted. Follows the best
|
|
196
|
+
# practice from https://aip.dev/135#cascading-delete.
|
|
197
197
|
# @param [String] fields
|
|
198
198
|
# Selector specifying which fields to include in a partial response.
|
|
199
199
|
# @param [String] quota_user
|
|
@@ -224,8 +224,8 @@ module Google
|
|
|
224
224
|
|
|
225
225
|
# Gets details of a single Deployment.
|
|
226
226
|
# @param [String] name
|
|
227
|
-
# Required. Name of the resource. The format
|
|
228
|
-
#
|
|
227
|
+
# Required. Name of the resource. The format is 'projects/`project_id`/locations/
|
|
228
|
+
# `location_id`/deployments/`deployment_id`'.
|
|
229
229
|
# @param [String] fields
|
|
230
230
|
# Selector specifying which fields to include in a partial response.
|
|
231
231
|
# @param [String] quota_user
|
|
@@ -258,7 +258,7 @@ module Google
|
|
|
258
258
|
# Required. The resource prefix of the Deployment using the form: `projects/`
|
|
259
259
|
# project_id`/locations/`location_id``
|
|
260
260
|
# @param [String] filter
|
|
261
|
-
# Optional. Filter resource
|
|
261
|
+
# Optional. Filter resource following https://google.aip.dev/160.
|
|
262
262
|
# @param [String] order_by
|
|
263
263
|
# Optional. Field to sort by. See https://google.aip.dev/132#ordering for more
|
|
264
264
|
# details.
|
|
@@ -301,7 +301,7 @@ module Google
|
|
|
301
301
|
# Creates a new actuation for an existing Deployment.
|
|
302
302
|
# @param [String] parent
|
|
303
303
|
# Required. The resource name of the Actuation location using the form: '
|
|
304
|
-
# projects/`project_id`/locations/`location`/deployments/`deployment`'
|
|
304
|
+
# projects/`project_id`/locations/`location`/deployments/`deployment`'.
|
|
305
305
|
# @param [Google::Apis::WorkloadmanagerV1::Actuation] actuation_object
|
|
306
306
|
# @param [String] request_id
|
|
307
307
|
# Optional. An optional request ID to identify requests. Specify a unique
|
|
@@ -344,10 +344,10 @@ module Google
|
|
|
344
344
|
execute_or_queue_command(command, &block)
|
|
345
345
|
end
|
|
346
346
|
|
|
347
|
-
# Deletes a single Actuation
|
|
347
|
+
# Deletes a single Actuation.
|
|
348
348
|
# @param [String] name
|
|
349
|
-
# Required. The name of the
|
|
350
|
-
#
|
|
349
|
+
# Required. The name of the actuation to delete. projects/`project`/locations/`
|
|
350
|
+
# location`/deployments/`deployment`/actuations/`actuation`.
|
|
351
351
|
# @param [String] fields
|
|
352
352
|
# Selector specifying which fields to include in a partial response.
|
|
353
353
|
# @param [String] quota_user
|
|
@@ -377,7 +377,7 @@ module Google
|
|
|
377
377
|
|
|
378
378
|
# Gets details of a single Actuation.
|
|
379
379
|
# @param [String] name
|
|
380
|
-
# Required. Name of the resource
|
|
380
|
+
# Required. Name of the resource.
|
|
381
381
|
# @param [String] fields
|
|
382
382
|
# Selector specifying which fields to include in a partial response.
|
|
383
383
|
# @param [String] quota_user
|
|
@@ -408,9 +408,9 @@ module Google
|
|
|
408
408
|
# Lists Actuations in a given project, location and deployment.
|
|
409
409
|
# @param [String] parent
|
|
410
410
|
# Required. The resource prefix of the Actuation using the form: 'projects/`
|
|
411
|
-
# project_id`/locations/`location`/deployments/`deployment`'
|
|
411
|
+
# project_id`/locations/`location`/deployments/`deployment`'.
|
|
412
412
|
# @param [String] filter
|
|
413
|
-
# Optional. Filtering results
|
|
413
|
+
# Optional. Filtering results.
|
|
414
414
|
# @param [String] order_by
|
|
415
415
|
# Optional. Field to sort by. See https://google.aip.dev/132#ordering for more
|
|
416
416
|
# details.
|
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.54.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.54.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:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|