google-cloud-ai_platform-v1 0.46.0 → 0.47.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/lib/google/cloud/ai_platform/v1/deployment_resource_pool_service/paths.rb +19 -0
- data/lib/google/cloud/ai_platform/v1/endpoint_service/paths.rb +19 -0
- data/lib/google/cloud/ai_platform/v1/index_endpoint_service/paths.rb +19 -0
- data/lib/google/cloud/ai_platform/v1/job_service/paths.rb +19 -0
- data/lib/google/cloud/ai_platform/v1/notebook_service/paths.rb +19 -0
- data/lib/google/cloud/ai_platform/v1/persistent_resource_service/paths.rb +19 -0
- data/lib/google/cloud/ai_platform/v1/version.rb +1 -1
- data/lib/google/cloud/aiplatform/v1/custom_job_pb.rb +1 -1
- data/lib/google/cloud/aiplatform/v1/machine_resources_pb.rb +3 -1
- data/lib/google/cloud/aiplatform/v1/reservation_affinity_pb.rb +46 -0
- data/proto_docs/google/cloud/aiplatform/v1/accelerator_type.rb +2 -1
- data/proto_docs/google/cloud/aiplatform/v1/custom_job.rb +6 -0
- data/proto_docs/google/cloud/aiplatform/v1/machine_resources.rb +8 -0
- data/proto_docs/google/cloud/aiplatform/v1/reservation_affinity.rb +63 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a491f21ecc557c594711bd6e616c282c38a4b74c7cce4529b8677e5ca534b18a
|
4
|
+
data.tar.gz: e39fb04b2cd13f0b320bcb979c21f42f1cd81ae09baa38d317574b467a146ead
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0cdc61480846a486aab3043e12bbf9d0b7e9676b29ff2571d246f63095cfd2c7c00ab35dcca1d81a2ea17217b2db7af9c8f4e430ebcca6005a7fdb5912a02e35
|
7
|
+
data.tar.gz: ad0e364622297e9f69faf6ac0c6dff6a245c00fedcf22139f35af5178a1c13d6876c65898309e0c639a506bc7497cd323bc7f2d8bf996790c690a7ff7f652df2
|
@@ -74,6 +74,25 @@ module Google
|
|
74
74
|
"projects/#{project}"
|
75
75
|
end
|
76
76
|
|
77
|
+
##
|
78
|
+
# Create a fully-qualified Reservation resource string.
|
79
|
+
#
|
80
|
+
# The resource will be in the following format:
|
81
|
+
#
|
82
|
+
# `projects/{project_id_or_number}/zones/{zone}/reservations/{reservation_name}`
|
83
|
+
#
|
84
|
+
# @param project_id_or_number [String]
|
85
|
+
# @param zone [String]
|
86
|
+
# @param reservation_name [String]
|
87
|
+
#
|
88
|
+
# @return [::String]
|
89
|
+
def reservation_path project_id_or_number:, zone:, reservation_name:
|
90
|
+
raise ::ArgumentError, "project_id_or_number cannot contain /" if project_id_or_number.to_s.include? "/"
|
91
|
+
raise ::ArgumentError, "zone cannot contain /" if zone.to_s.include? "/"
|
92
|
+
|
93
|
+
"projects/#{project_id_or_number}/zones/#{zone}/reservations/#{reservation_name}"
|
94
|
+
end
|
95
|
+
|
77
96
|
extend self
|
78
97
|
end
|
79
98
|
end
|
@@ -160,6 +160,25 @@ module Google
|
|
160
160
|
"projects/#{project}/global/networks/#{network}"
|
161
161
|
end
|
162
162
|
|
163
|
+
##
|
164
|
+
# Create a fully-qualified Reservation resource string.
|
165
|
+
#
|
166
|
+
# The resource will be in the following format:
|
167
|
+
#
|
168
|
+
# `projects/{project_id_or_number}/zones/{zone}/reservations/{reservation_name}`
|
169
|
+
#
|
170
|
+
# @param project_id_or_number [String]
|
171
|
+
# @param zone [String]
|
172
|
+
# @param reservation_name [String]
|
173
|
+
#
|
174
|
+
# @return [::String]
|
175
|
+
def reservation_path project_id_or_number:, zone:, reservation_name:
|
176
|
+
raise ::ArgumentError, "project_id_or_number cannot contain /" if project_id_or_number.to_s.include? "/"
|
177
|
+
raise ::ArgumentError, "zone cannot contain /" if zone.to_s.include? "/"
|
178
|
+
|
179
|
+
"projects/#{project_id_or_number}/zones/#{zone}/reservations/#{reservation_name}"
|
180
|
+
end
|
181
|
+
|
163
182
|
extend self
|
164
183
|
end
|
165
184
|
end
|
@@ -79,6 +79,25 @@ module Google
|
|
79
79
|
"projects/#{project}/locations/#{location}"
|
80
80
|
end
|
81
81
|
|
82
|
+
##
|
83
|
+
# Create a fully-qualified Reservation resource string.
|
84
|
+
#
|
85
|
+
# The resource will be in the following format:
|
86
|
+
#
|
87
|
+
# `projects/{project_id_or_number}/zones/{zone}/reservations/{reservation_name}`
|
88
|
+
#
|
89
|
+
# @param project_id_or_number [String]
|
90
|
+
# @param zone [String]
|
91
|
+
# @param reservation_name [String]
|
92
|
+
#
|
93
|
+
# @return [::String]
|
94
|
+
def reservation_path project_id_or_number:, zone:, reservation_name:
|
95
|
+
raise ::ArgumentError, "project_id_or_number cannot contain /" if project_id_or_number.to_s.include? "/"
|
96
|
+
raise ::ArgumentError, "zone cannot contain /" if zone.to_s.include? "/"
|
97
|
+
|
98
|
+
"projects/#{project_id_or_number}/zones/#{zone}/reservations/#{reservation_name}"
|
99
|
+
end
|
100
|
+
|
82
101
|
extend self
|
83
102
|
end
|
84
103
|
end
|
@@ -333,6 +333,25 @@ module Google
|
|
333
333
|
"projects/#{project}/locations/#{location}/persistentResources/#{persistent_resource}"
|
334
334
|
end
|
335
335
|
|
336
|
+
##
|
337
|
+
# Create a fully-qualified Reservation resource string.
|
338
|
+
#
|
339
|
+
# The resource will be in the following format:
|
340
|
+
#
|
341
|
+
# `projects/{project_id_or_number}/zones/{zone}/reservations/{reservation_name}`
|
342
|
+
#
|
343
|
+
# @param project_id_or_number [String]
|
344
|
+
# @param zone [String]
|
345
|
+
# @param reservation_name [String]
|
346
|
+
#
|
347
|
+
# @return [::String]
|
348
|
+
def reservation_path project_id_or_number:, zone:, reservation_name:
|
349
|
+
raise ::ArgumentError, "project_id_or_number cannot contain /" if project_id_or_number.to_s.include? "/"
|
350
|
+
raise ::ArgumentError, "zone cannot contain /" if zone.to_s.include? "/"
|
351
|
+
|
352
|
+
"projects/#{project_id_or_number}/zones/#{zone}/reservations/#{reservation_name}"
|
353
|
+
end
|
354
|
+
|
336
355
|
##
|
337
356
|
# Create a fully-qualified Tensorboard resource string.
|
338
357
|
#
|
@@ -115,6 +115,25 @@ module Google
|
|
115
115
|
"projects/#{project}/locations/#{location}/notebookRuntimeTemplates/#{notebook_runtime_template}"
|
116
116
|
end
|
117
117
|
|
118
|
+
##
|
119
|
+
# Create a fully-qualified Reservation resource string.
|
120
|
+
#
|
121
|
+
# The resource will be in the following format:
|
122
|
+
#
|
123
|
+
# `projects/{project_id_or_number}/zones/{zone}/reservations/{reservation_name}`
|
124
|
+
#
|
125
|
+
# @param project_id_or_number [String]
|
126
|
+
# @param zone [String]
|
127
|
+
# @param reservation_name [String]
|
128
|
+
#
|
129
|
+
# @return [::String]
|
130
|
+
def reservation_path project_id_or_number:, zone:, reservation_name:
|
131
|
+
raise ::ArgumentError, "project_id_or_number cannot contain /" if project_id_or_number.to_s.include? "/"
|
132
|
+
raise ::ArgumentError, "zone cannot contain /" if zone.to_s.include? "/"
|
133
|
+
|
134
|
+
"projects/#{project_id_or_number}/zones/#{zone}/reservations/#{reservation_name}"
|
135
|
+
end
|
136
|
+
|
118
137
|
##
|
119
138
|
# Create a fully-qualified Schedule resource string.
|
120
139
|
#
|
@@ -77,6 +77,25 @@ module Google
|
|
77
77
|
"projects/#{project}/locations/#{location}/persistentResources/#{persistent_resource}"
|
78
78
|
end
|
79
79
|
|
80
|
+
##
|
81
|
+
# Create a fully-qualified Reservation resource string.
|
82
|
+
#
|
83
|
+
# The resource will be in the following format:
|
84
|
+
#
|
85
|
+
# `projects/{project_id_or_number}/zones/{zone}/reservations/{reservation_name}`
|
86
|
+
#
|
87
|
+
# @param project_id_or_number [String]
|
88
|
+
# @param zone [String]
|
89
|
+
# @param reservation_name [String]
|
90
|
+
#
|
91
|
+
# @return [::String]
|
92
|
+
def reservation_path project_id_or_number:, zone:, reservation_name:
|
93
|
+
raise ::ArgumentError, "project_id_or_number cannot contain /" if project_id_or_number.to_s.include? "/"
|
94
|
+
raise ::ArgumentError, "zone cannot contain /" if zone.to_s.include? "/"
|
95
|
+
|
96
|
+
"projects/#{project_id_or_number}/zones/#{zone}/reservations/#{reservation_name}"
|
97
|
+
end
|
98
|
+
|
80
99
|
extend self
|
81
100
|
end
|
82
101
|
end
|
@@ -16,7 +16,7 @@ require 'google/protobuf/timestamp_pb'
|
|
16
16
|
require 'google/rpc/status_pb'
|
17
17
|
|
18
18
|
|
19
|
-
descriptor_data = "\n+google/cloud/aiplatform/v1/custom_job.proto\x12\x1agoogle.cloud.aiplatform.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x30google/cloud/aiplatform/v1/encryption_spec.proto\x1a(google/cloud/aiplatform/v1/env_var.proto\x1a#google/cloud/aiplatform/v1/io.proto\x1a*google/cloud/aiplatform/v1/job_state.proto\x1a\x32google/cloud/aiplatform/v1/machine_resources.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x17google/rpc/status.proto\"\xe1\x06\n\tCustomJob\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x19\n\x0c\x64isplay_name\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12@\n\x08job_spec\x18\x04 \x01(\x0b\x32).google.cloud.aiplatform.v1.CustomJobSpecB\x03\xe0\x41\x02\x12\x38\n\x05state\x18\x05 \x01(\x0e\x32$.google.cloud.aiplatform.v1.JobStateB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x33\n\nstart_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12&\n\x05\x65rror\x18\n \x01(\x0b\x32\x12.google.rpc.StatusB\x03\xe0\x41\x03\x12\x41\n\x06labels\x18\x0b \x03(\x0b\x32\x31.google.cloud.aiplatform.v1.CustomJob.LabelsEntry\x12\x43\n\x0f\x65ncryption_spec\x18\x0c \x01(\x0b\x32*.google.cloud.aiplatform.v1.EncryptionSpec\x12V\n\x0fweb_access_uris\x18\x10 \x03(\x0b\x32\x38.google.cloud.aiplatform.v1.CustomJob.WebAccessUrisEntryB\x03\xe0\x41\x03\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x34\n\x12WebAccessUrisEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:i\xea\x41\x66\n#aiplatform.googleapis.com/CustomJob\x12?projects/{project}/locations/{location}/customJobs/{custom_job}\"\x98\x06\n\rCustomJobSpec\x12T\n\x16persistent_resource_id\x18\x0e \x01(\tB4\xe0\x41\x01\xfa\x41.\n,aiplatform.googleapis.com/PersistentResource\x12J\n\x11worker_pool_specs\x18\x01 \x03(\x0b\x32*.google.cloud.aiplatform.v1.WorkerPoolSpecB\x03\xe0\x41\x02\x12:\n\nscheduling\x18\x03 \x01(\x0b\x32&.google.cloud.aiplatform.v1.Scheduling\x12\x17\n\x0fservice_account\x18\x04 \x01(\t\x12\x37\n\x07network\x18\x05 \x01(\tB&\xe0\x41\x01\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12\x1f\n\x12reserved_ip_ranges\x18\r \x03(\tB\x03\xe0\x41\x01\x12I\n\x15\x62\x61se_output_directory\x18\x06 \x01(\x0b\x32*.google.cloud.aiplatform.v1.GcsDestination\x12&\n\x1eprotected_artifact_location_id\x18\x13 \x01(\t\x12\x42\n\x0btensorboard\x18\x07 \x01(\tB-\xe0\x41\x01\xfa\x41\'\n%aiplatform.googleapis.com/Tensorboard\x12\x1e\n\x11\x65nable_web_access\x18\n \x01(\x08\x42\x03\xe0\x41\x01\x12$\n\x17\x65nable_dashboard_access\x18\x10 \x01(\x08\x42\x03\xe0\x41\x01\x12=\n\nexperiment\x18\x11 \x01(\tB)\xe0\x41\x01\xfa\x41#\n!aiplatform.googleapis.com/Context\x12\x41\n\x0e\x65xperiment_run\x18\x12 \x01(\tB)\xe0\x41\x01\xfa\x41#\n!aiplatform.googleapis.com/Context\x12\x37\n\x06models\x18\x14 \x03(\tB\'\xe0\x41\x01\xfa\x41!\n\x1f\x61iplatform.googleapis.com/Model\"\x86\x03\n\x0eWorkerPoolSpec\x12\x43\n\x0e\x63ontainer_spec\x18\x06 \x01(\x0b\x32).google.cloud.aiplatform.v1.ContainerSpecH\x00\x12L\n\x13python_package_spec\x18\x07 \x01(\x0b\x32-.google.cloud.aiplatform.v1.PythonPackageSpecH\x00\x12\x45\n\x0cmachine_spec\x18\x01 \x01(\x0b\x32\'.google.cloud.aiplatform.v1.MachineSpecB\x06\xe0\x41\x01\xe0\x41\x05\x12\x1a\n\rreplica_count\x18\x02 \x01(\x03\x42\x03\xe0\x41\x01\x12=\n\nnfs_mounts\x18\x04 \x03(\x0b\x32$.google.cloud.aiplatform.v1.NfsMountB\x03\xe0\x41\x01\x12\x37\n\tdisk_spec\x18\x05 \x01(\x0b\x32$.google.cloud.aiplatform.v1.DiskSpecB\x06\n\x04task\"w\n\rContainerSpec\x12\x16\n\timage_uri\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x0f\n\x07\x63ommand\x18\x02 \x03(\t\x12\x0c\n\x04\x61rgs\x18\x03 \x03(\t\x12/\n\x03\x65nv\x18\x04 \x03(\x0b\x32\".google.cloud.aiplatform.v1.EnvVar\"\xaa\x01\n\x11PythonPackageSpec\x12\x1f\n\x12\x65xecutor_image_uri\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x19\n\x0cpackage_uris\x18\x02 \x03(\tB\x03\xe0\x41\x02\x12\x1a\n\rpython_module\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12\x0c\n\x04\x61rgs\x18\x04 \x03(\t\x12/\n\x03\x65nv\x18\x05 \x03(\x0b\x32\".google.cloud.aiplatform.v1.EnvVar\"\
|
19
|
+
descriptor_data = "\n+google/cloud/aiplatform/v1/custom_job.proto\x12\x1agoogle.cloud.aiplatform.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x30google/cloud/aiplatform/v1/encryption_spec.proto\x1a(google/cloud/aiplatform/v1/env_var.proto\x1a#google/cloud/aiplatform/v1/io.proto\x1a*google/cloud/aiplatform/v1/job_state.proto\x1a\x32google/cloud/aiplatform/v1/machine_resources.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x17google/rpc/status.proto\"\xe1\x06\n\tCustomJob\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x19\n\x0c\x64isplay_name\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12@\n\x08job_spec\x18\x04 \x01(\x0b\x32).google.cloud.aiplatform.v1.CustomJobSpecB\x03\xe0\x41\x02\x12\x38\n\x05state\x18\x05 \x01(\x0e\x32$.google.cloud.aiplatform.v1.JobStateB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x33\n\nstart_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12&\n\x05\x65rror\x18\n \x01(\x0b\x32\x12.google.rpc.StatusB\x03\xe0\x41\x03\x12\x41\n\x06labels\x18\x0b \x03(\x0b\x32\x31.google.cloud.aiplatform.v1.CustomJob.LabelsEntry\x12\x43\n\x0f\x65ncryption_spec\x18\x0c \x01(\x0b\x32*.google.cloud.aiplatform.v1.EncryptionSpec\x12V\n\x0fweb_access_uris\x18\x10 \x03(\x0b\x32\x38.google.cloud.aiplatform.v1.CustomJob.WebAccessUrisEntryB\x03\xe0\x41\x03\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x34\n\x12WebAccessUrisEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:i\xea\x41\x66\n#aiplatform.googleapis.com/CustomJob\x12?projects/{project}/locations/{location}/customJobs/{custom_job}\"\x98\x06\n\rCustomJobSpec\x12T\n\x16persistent_resource_id\x18\x0e \x01(\tB4\xe0\x41\x01\xfa\x41.\n,aiplatform.googleapis.com/PersistentResource\x12J\n\x11worker_pool_specs\x18\x01 \x03(\x0b\x32*.google.cloud.aiplatform.v1.WorkerPoolSpecB\x03\xe0\x41\x02\x12:\n\nscheduling\x18\x03 \x01(\x0b\x32&.google.cloud.aiplatform.v1.Scheduling\x12\x17\n\x0fservice_account\x18\x04 \x01(\t\x12\x37\n\x07network\x18\x05 \x01(\tB&\xe0\x41\x01\xfa\x41 \n\x1e\x63ompute.googleapis.com/Network\x12\x1f\n\x12reserved_ip_ranges\x18\r \x03(\tB\x03\xe0\x41\x01\x12I\n\x15\x62\x61se_output_directory\x18\x06 \x01(\x0b\x32*.google.cloud.aiplatform.v1.GcsDestination\x12&\n\x1eprotected_artifact_location_id\x18\x13 \x01(\t\x12\x42\n\x0btensorboard\x18\x07 \x01(\tB-\xe0\x41\x01\xfa\x41\'\n%aiplatform.googleapis.com/Tensorboard\x12\x1e\n\x11\x65nable_web_access\x18\n \x01(\x08\x42\x03\xe0\x41\x01\x12$\n\x17\x65nable_dashboard_access\x18\x10 \x01(\x08\x42\x03\xe0\x41\x01\x12=\n\nexperiment\x18\x11 \x01(\tB)\xe0\x41\x01\xfa\x41#\n!aiplatform.googleapis.com/Context\x12\x41\n\x0e\x65xperiment_run\x18\x12 \x01(\tB)\xe0\x41\x01\xfa\x41#\n!aiplatform.googleapis.com/Context\x12\x37\n\x06models\x18\x14 \x03(\tB\'\xe0\x41\x01\xfa\x41!\n\x1f\x61iplatform.googleapis.com/Model\"\x86\x03\n\x0eWorkerPoolSpec\x12\x43\n\x0e\x63ontainer_spec\x18\x06 \x01(\x0b\x32).google.cloud.aiplatform.v1.ContainerSpecH\x00\x12L\n\x13python_package_spec\x18\x07 \x01(\x0b\x32-.google.cloud.aiplatform.v1.PythonPackageSpecH\x00\x12\x45\n\x0cmachine_spec\x18\x01 \x01(\x0b\x32\'.google.cloud.aiplatform.v1.MachineSpecB\x06\xe0\x41\x01\xe0\x41\x05\x12\x1a\n\rreplica_count\x18\x02 \x01(\x03\x42\x03\xe0\x41\x01\x12=\n\nnfs_mounts\x18\x04 \x03(\x0b\x32$.google.cloud.aiplatform.v1.NfsMountB\x03\xe0\x41\x01\x12\x37\n\tdisk_spec\x18\x05 \x01(\x0b\x32$.google.cloud.aiplatform.v1.DiskSpecB\x06\n\x04task\"w\n\rContainerSpec\x12\x16\n\timage_uri\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x0f\n\x07\x63ommand\x18\x02 \x03(\t\x12\x0c\n\x04\x61rgs\x18\x03 \x03(\t\x12/\n\x03\x65nv\x18\x04 \x03(\x0b\x32\".google.cloud.aiplatform.v1.EnvVar\"\xaa\x01\n\x11PythonPackageSpec\x12\x1f\n\x12\x65xecutor_image_uri\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x19\n\x0cpackage_uris\x18\x02 \x03(\tB\x03\xe0\x41\x02\x12\x1a\n\rpython_module\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12\x0c\n\x04\x61rgs\x18\x04 \x03(\t\x12/\n\x03\x65nv\x18\x05 \x03(\x0b\x32\".google.cloud.aiplatform.v1.EnvVar\"\xa4\x02\n\nScheduling\x12*\n\x07timeout\x18\x01 \x01(\x0b\x32\x19.google.protobuf.Duration\x12%\n\x1drestart_job_on_worker_restart\x18\x03 \x01(\x08\x12\x46\n\x08strategy\x18\x04 \x01(\x0e\x32/.google.cloud.aiplatform.v1.Scheduling.StrategyB\x03\xe0\x41\x01\x12\x1c\n\x0f\x64isable_retries\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\"]\n\x08Strategy\x12\x18\n\x14STRATEGY_UNSPECIFIED\x10\x00\x12\r\n\tON_DEMAND\x10\x01\x12\x10\n\x08LOW_COST\x10\x02\x1a\x02\x08\x01\x12\x0c\n\x08STANDARD\x10\x03\x12\x08\n\x04SPOT\x10\x04\x42\xcc\x01\n\x1e\x63om.google.cloud.aiplatform.v1B\x0e\x43ustomJobProtoP\x01Z>cloud.google.com/go/aiplatform/apiv1/aiplatformpb;aiplatformpb\xaa\x02\x1aGoogle.Cloud.AIPlatform.V1\xca\x02\x1aGoogle\\Cloud\\AIPlatform\\V1\xea\x02\x1dGoogle::Cloud::AIPlatform::V1b\x06proto3"
|
20
20
|
|
21
21
|
pool = Google::Protobuf::DescriptorPool.generated_pool
|
22
22
|
|
@@ -6,9 +6,10 @@ require 'google/protobuf'
|
|
6
6
|
|
7
7
|
require 'google/api/field_behavior_pb'
|
8
8
|
require 'google/cloud/aiplatform/v1/accelerator_type_pb'
|
9
|
+
require 'google/cloud/aiplatform/v1/reservation_affinity_pb'
|
9
10
|
|
10
11
|
|
11
|
-
descriptor_data = "\n2google/cloud/aiplatform/v1/machine_resources.proto\x12\x1agoogle.cloud.aiplatform.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x31google/cloud/aiplatform/v1/accelerator_type.proto\"\
|
12
|
+
descriptor_data = "\n2google/cloud/aiplatform/v1/machine_resources.proto\x12\x1agoogle.cloud.aiplatform.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x31google/cloud/aiplatform/v1/accelerator_type.proto\x1a\x35google/cloud/aiplatform/v1/reservation_affinity.proto\"\x81\x02\n\x0bMachineSpec\x12\x19\n\x0cmachine_type\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12J\n\x10\x61\x63\x63\x65lerator_type\x18\x02 \x01(\x0e\x32+.google.cloud.aiplatform.v1.AcceleratorTypeB\x03\xe0\x41\x05\x12\x19\n\x11\x61\x63\x63\x65lerator_count\x18\x03 \x01(\x05\x12\x19\n\x0ctpu_topology\x18\x04 \x01(\tB\x03\xe0\x41\x05\x12U\n\x14reservation_affinity\x18\x05 \x01(\x0b\x32/.google.cloud.aiplatform.v1.ReservationAffinityB\x06\xe0\x41\x05\xe0\x41\x01\"\x8b\x02\n\x12\x44\x65\x64icatedResources\x12\x45\n\x0cmachine_spec\x18\x01 \x01(\x0b\x32\'.google.cloud.aiplatform.v1.MachineSpecB\x06\xe0\x41\x02\xe0\x41\x05\x12!\n\x11min_replica_count\x18\x02 \x01(\x05\x42\x06\xe0\x41\x02\xe0\x41\x05\x12\x1e\n\x11max_replica_count\x18\x03 \x01(\x05\x42\x03\xe0\x41\x05\x12X\n\x18\x61utoscaling_metric_specs\x18\x04 \x03(\x0b\x32\x31.google.cloud.aiplatform.v1.AutoscalingMetricSpecB\x03\xe0\x41\x05\x12\x11\n\x04spot\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\"T\n\x12\x41utomaticResources\x12\x1e\n\x11min_replica_count\x18\x01 \x01(\x05\x42\x03\xe0\x41\x05\x12\x1e\n\x11max_replica_count\x18\x02 \x01(\x05\x42\x03\xe0\x41\x05\"\xa5\x01\n\x17\x42\x61tchDedicatedResources\x12\x45\n\x0cmachine_spec\x18\x01 \x01(\x0b\x32\'.google.cloud.aiplatform.v1.MachineSpecB\x06\xe0\x41\x02\xe0\x41\x05\x12#\n\x16starting_replica_count\x18\x02 \x01(\x05\x42\x03\xe0\x41\x05\x12\x1e\n\x11max_replica_count\x18\x03 \x01(\x05\x42\x03\xe0\x41\x05\"/\n\x11ResourcesConsumed\x12\x1a\n\rreplica_hours\x18\x01 \x01(\x01\x42\x03\xe0\x41\x03\"=\n\x08\x44iskSpec\x12\x16\n\x0e\x62oot_disk_type\x18\x01 \x01(\t\x12\x19\n\x11\x62oot_disk_size_gb\x18\x02 \x01(\x05\"=\n\x12PersistentDiskSpec\x12\x11\n\tdisk_type\x18\x01 \x01(\t\x12\x14\n\x0c\x64isk_size_gb\x18\x02 \x01(\x03\"L\n\x08NfsMount\x12\x13\n\x06server\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x11\n\x04path\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x18\n\x0bmount_point\x18\x03 \x01(\tB\x03\xe0\x41\x02\"A\n\x15\x41utoscalingMetricSpec\x12\x18\n\x0bmetric_name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x0e\n\x06target\x18\x02 \x01(\x05\".\n\x10ShieldedVmConfig\x12\x1a\n\x12\x65nable_secure_boot\x18\x01 \x01(\x08\x42\xd3\x01\n\x1e\x63om.google.cloud.aiplatform.v1B\x15MachineResourcesProtoP\x01Z>cloud.google.com/go/aiplatform/apiv1/aiplatformpb;aiplatformpb\xaa\x02\x1aGoogle.Cloud.AIPlatform.V1\xca\x02\x1aGoogle\\Cloud\\AIPlatform\\V1\xea\x02\x1dGoogle::Cloud::AIPlatform::V1b\x06proto3"
|
12
13
|
|
13
14
|
pool = Google::Protobuf::DescriptorPool.generated_pool
|
14
15
|
|
@@ -23,6 +24,7 @@ rescue TypeError
|
|
23
24
|
file = pool.add_serialized_file(serialized)
|
24
25
|
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
25
26
|
imports = [
|
27
|
+
["google.cloud.aiplatform.v1.ReservationAffinity", "google/cloud/aiplatform/v1/reservation_affinity.proto"],
|
26
28
|
]
|
27
29
|
imports.each do |type_name, expected_filename|
|
28
30
|
import_file = pool.lookup(type_name).file_descriptor
|
@@ -0,0 +1,46 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
+
# source: google/cloud/aiplatform/v1/reservation_affinity.proto
|
4
|
+
|
5
|
+
require 'google/protobuf'
|
6
|
+
|
7
|
+
require 'google/api/field_behavior_pb'
|
8
|
+
require 'google/api/resource_pb'
|
9
|
+
|
10
|
+
|
11
|
+
descriptor_data = "\n5google/cloud/aiplatform/v1/reservation_affinity.proto\x12\x1agoogle.cloud.aiplatform.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\"\xa2\x02\n\x13ReservationAffinity\x12\\\n\x19reservation_affinity_type\x18\x01 \x01(\x0e\x32\x34.google.cloud.aiplatform.v1.ReservationAffinity.TypeB\x03\xe0\x41\x02\x12\x10\n\x03key\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12:\n\x06values\x18\x03 \x03(\tB*\xe0\x41\x01\xfa\x41$\n\"compute.googleapis.com/Reservation\"_\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x12\n\x0eNO_RESERVATION\x10\x01\x12\x13\n\x0f\x41NY_RESERVATION\x10\x02\x12\x18\n\x14SPECIFIC_RESERVATION\x10\x03\x42\xcb\x02\n\x1e\x63om.google.cloud.aiplatform.v1B\x18ReservationAffinityProtoP\x01Z>cloud.google.com/go/aiplatform/apiv1/aiplatformpb;aiplatformpb\xaa\x02\x1aGoogle.Cloud.AIPlatform.V1\xca\x02\x1aGoogle\\Cloud\\AIPlatform\\V1\xea\x02\x1dGoogle::Cloud::AIPlatform::V1\xea\x41r\n\"compute.googleapis.com/Reservation\x12Lprojects/{project_id_or_number}/zones/{zone}/reservations/{reservation_name}b\x06proto3"
|
12
|
+
|
13
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
14
|
+
|
15
|
+
begin
|
16
|
+
pool.add_serialized_file(descriptor_data)
|
17
|
+
rescue TypeError
|
18
|
+
# Compatibility code: will be removed in the next major version.
|
19
|
+
require 'google/protobuf/descriptor_pb'
|
20
|
+
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
21
|
+
parsed.clear_dependency
|
22
|
+
serialized = parsed.class.encode(parsed)
|
23
|
+
file = pool.add_serialized_file(serialized)
|
24
|
+
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
25
|
+
imports = [
|
26
|
+
]
|
27
|
+
imports.each do |type_name, expected_filename|
|
28
|
+
import_file = pool.lookup(type_name).file_descriptor
|
29
|
+
if import_file.name != expected_filename
|
30
|
+
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
31
|
+
end
|
32
|
+
end
|
33
|
+
warn "Each proto file must use a consistent fully-qualified name."
|
34
|
+
warn "This will become an error in the next major version."
|
35
|
+
end
|
36
|
+
|
37
|
+
module Google
|
38
|
+
module Cloud
|
39
|
+
module AIPlatform
|
40
|
+
module V1
|
41
|
+
ReservationAffinity = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.aiplatform.v1.ReservationAffinity").msgclass
|
42
|
+
ReservationAffinity::Type = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.aiplatform.v1.ReservationAffinity.Type").enummodule
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
@@ -26,7 +26,8 @@ module Google
|
|
26
26
|
# Unspecified accelerator type, which means no accelerator.
|
27
27
|
ACCELERATOR_TYPE_UNSPECIFIED = 0
|
28
28
|
|
29
|
-
# Nvidia Tesla K80 GPU
|
29
|
+
# Deprecated: Nvidia Tesla K80 GPU has reached end of support,
|
30
|
+
# see https://cloud.google.com/compute/docs/eol/k80-eol.
|
30
31
|
NVIDIA_TESLA_K80 = 1
|
31
32
|
|
32
33
|
# Nvidia Tesla P100 GPU.
|
@@ -357,6 +357,12 @@ module Google
|
|
357
357
|
|
358
358
|
# Low cost by making potential use of spot resources.
|
359
359
|
LOW_COST = 2
|
360
|
+
|
361
|
+
# Standard provisioning strategy uses regular on-demand resources.
|
362
|
+
STANDARD = 3
|
363
|
+
|
364
|
+
# Spot provisioning strategy uses spot resources.
|
365
|
+
SPOT = 4
|
360
366
|
end
|
361
367
|
end
|
362
368
|
end
|
@@ -49,6 +49,10 @@ module Google
|
|
49
49
|
# @return [::String]
|
50
50
|
# Immutable. The topology of the TPUs. Corresponds to the TPU topologies
|
51
51
|
# available from GKE. (Example: tpu_topology: "2x2x1").
|
52
|
+
# @!attribute [rw] reservation_affinity
|
53
|
+
# @return [::Google::Cloud::AIPlatform::V1::ReservationAffinity]
|
54
|
+
# Optional. Immutable. Configuration controlling how this resource pool
|
55
|
+
# consumes reservation.
|
52
56
|
class MachineSpec
|
53
57
|
include ::Google::Protobuf::MessageExts
|
54
58
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -110,6 +114,10 @@ module Google
|
|
110
114
|
# to `aiplatform.googleapis.com/prediction/online/cpu/utilization` and
|
111
115
|
# {::Google::Cloud::AIPlatform::V1::AutoscalingMetricSpec#target autoscaling_metric_specs.target}
|
112
116
|
# to `80`.
|
117
|
+
# @!attribute [rw] spot
|
118
|
+
# @return [::Boolean]
|
119
|
+
# Optional. If true, schedule the deployment workload on [spot
|
120
|
+
# VMs](https://cloud.google.com/kubernetes-engine/docs/concepts/spot-vms).
|
113
121
|
class DedicatedResources
|
114
122
|
include ::Google::Protobuf::MessageExts
|
115
123
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -0,0 +1,63 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2024 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Cloud
|
22
|
+
module AIPlatform
|
23
|
+
module V1
|
24
|
+
# A ReservationAffinity can be used to configure a Vertex AI resource (e.g., a
|
25
|
+
# DeployedModel) to draw its Compute Engine resources from a Shared
|
26
|
+
# Reservation, or exclusively from on-demand capacity.
|
27
|
+
# @!attribute [rw] reservation_affinity_type
|
28
|
+
# @return [::Google::Cloud::AIPlatform::V1::ReservationAffinity::Type]
|
29
|
+
# Required. Specifies the reservation affinity type.
|
30
|
+
# @!attribute [rw] key
|
31
|
+
# @return [::String]
|
32
|
+
# Optional. Corresponds to the label key of a reservation resource. To target
|
33
|
+
# a SPECIFIC_RESERVATION by name, use
|
34
|
+
# `compute.googleapis.com/reservation-name` as the key and specify the name
|
35
|
+
# of your reservation as its value.
|
36
|
+
# @!attribute [rw] values
|
37
|
+
# @return [::Array<::String>]
|
38
|
+
# Optional. Corresponds to the label values of a reservation resource. This
|
39
|
+
# must be the full resource name of the reservation.
|
40
|
+
class ReservationAffinity
|
41
|
+
include ::Google::Protobuf::MessageExts
|
42
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
43
|
+
|
44
|
+
# Identifies a type of reservation affinity.
|
45
|
+
module Type
|
46
|
+
# Default value. This should not be used.
|
47
|
+
TYPE_UNSPECIFIED = 0
|
48
|
+
|
49
|
+
# Do not consume from any reserved capacity, only use on-demand.
|
50
|
+
NO_RESERVATION = 1
|
51
|
+
|
52
|
+
# Consume any reservation available, falling back to on-demand.
|
53
|
+
ANY_RESERVATION = 2
|
54
|
+
|
55
|
+
# Consume from a specific reservation. When chosen, the reservation
|
56
|
+
# must be identified via the `key` and `values` fields.
|
57
|
+
SPECIFIC_RESERVATION = 3
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-ai_platform-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.47.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-08-
|
11
|
+
date: 2024-08-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -431,6 +431,7 @@ files:
|
|
431
431
|
- lib/google/cloud/aiplatform/v1/prediction_service_pb.rb
|
432
432
|
- lib/google/cloud/aiplatform/v1/prediction_service_services_pb.rb
|
433
433
|
- lib/google/cloud/aiplatform/v1/publisher_model_pb.rb
|
434
|
+
- lib/google/cloud/aiplatform/v1/reservation_affinity_pb.rb
|
434
435
|
- lib/google/cloud/aiplatform/v1/saved_query_pb.rb
|
435
436
|
- lib/google/cloud/aiplatform/v1/schedule_pb.rb
|
436
437
|
- lib/google/cloud/aiplatform/v1/schedule_service_pb.rb
|
@@ -548,6 +549,7 @@ files:
|
|
548
549
|
- proto_docs/google/cloud/aiplatform/v1/pipeline_state.rb
|
549
550
|
- proto_docs/google/cloud/aiplatform/v1/prediction_service.rb
|
550
551
|
- proto_docs/google/cloud/aiplatform/v1/publisher_model.rb
|
552
|
+
- proto_docs/google/cloud/aiplatform/v1/reservation_affinity.rb
|
551
553
|
- proto_docs/google/cloud/aiplatform/v1/saved_query.rb
|
552
554
|
- proto_docs/google/cloud/aiplatform/v1/schedule.rb
|
553
555
|
- proto_docs/google/cloud/aiplatform/v1/schedule_service.rb
|