-
Notifications
You must be signed in to change notification settings - Fork 568
Expand file tree
/
Copy pathai_platform.rb
More file actions
2482 lines (2372 loc) · 129 KB
/
ai_platform.rb
File metadata and controls
2482 lines (2372 loc) · 129 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# frozen_string_literal: true
# Copyright 2022 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
# Require this file early so that the version constant gets defined before
# requiring "google/cloud". This is because google-cloud-core will load the
# entrypoint (gem name) file, which in turn re-requires this file (hence
# causing a require cycle) unless the version constant is already defined.
require "google/cloud/ai_platform/version"
require "googleauth"
gem "google-cloud-core"
require "google/cloud" unless defined? ::Google::Cloud.new
require "google/cloud/config"
# Set the default configuration
::Google::Cloud.configure.add_config! :ai_platform do |config|
config.add_field! :endpoint, nil, match: ::String
config.add_field! :credentials, nil, match: [::String, ::Hash, ::Google::Auth::Credentials]
config.add_field! :scope, nil, match: [::Array, ::String]
config.add_field! :lib_name, nil, match: ::String
config.add_field! :lib_version, nil, match: ::String
config.add_field! :interceptors, nil, match: ::Array
config.add_field! :timeout, nil, match: ::Numeric
config.add_field! :metadata, nil, match: ::Hash
config.add_field! :retry_policy, nil, match: [::Hash, ::Proc]
config.add_field! :quota_project, nil, match: ::String
config.add_field! :universe_domain, nil, match: ::String
end
module Google
module Cloud
module AIPlatform
##
# Create a new client object for DataFoundryService.
#
# By default, this returns an instance of
# [Google::Cloud::AIPlatform::V1::DataFoundryService::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-ai_platform-v1/latest/Google-Cloud-AIPlatform-V1-DataFoundryService-Client)
# for a gRPC client for version V1 of the API.
# However, you can specify a different API version by passing it in the
# `version` parameter. If the DataFoundryService service is
# supported by that API version, and the corresponding gem is available, the
# appropriate versioned client will be returned.
# You can also specify a different transport by passing `:rest` or `:grpc` in
# the `transport` parameter.
#
# Raises an exception if the currently installed versioned client gem for the
# given API version does not support the given transport of the DataFoundryService service.
# You can determine whether the method will succeed by calling
# {Google::Cloud::AIPlatform.data_foundry_service_available?}.
#
# ## About DataFoundryService
#
# Service for generating and preparing datasets for Gen AI evaluation.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [::Object] A client object for the specified version.
#
def self.data_foundry_service version: :v1, transport: :grpc, &block
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
service_module = Google::Cloud::AIPlatform.const_get(package_name).const_get(:DataFoundryService)
service_module = service_module.const_get(:Rest) if transport == :rest
service_module.const_get(:Client).new(&block)
end
##
# Determines whether the DataFoundryService service is supported by the current client.
# If true, you can retrieve a client object by calling {Google::Cloud::AIPlatform.data_foundry_service}.
# If false, that method will raise an exception. This could happen if the given
# API version does not exist or does not support the DataFoundryService service,
# or if the versioned client gem needs an update to support the DataFoundryService service.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [boolean] Whether the service is available.
#
def self.data_foundry_service_available? version: :v1, transport: :grpc
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
return false unless package_name
service_module = Google::Cloud::AIPlatform.const_get package_name
return false unless service_module.const_defined? :DataFoundryService
service_module = service_module.const_get :DataFoundryService
if transport == :rest
return false unless service_module.const_defined? :Rest
service_module = service_module.const_get :Rest
end
service_module.const_defined? :Client
rescue ::LoadError
false
end
##
# Create a new client object for DatasetService.
#
# By default, this returns an instance of
# [Google::Cloud::AIPlatform::V1::DatasetService::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-ai_platform-v1/latest/Google-Cloud-AIPlatform-V1-DatasetService-Client)
# for a gRPC client for version V1 of the API.
# However, you can specify a different API version by passing it in the
# `version` parameter. If the DatasetService service is
# supported by that API version, and the corresponding gem is available, the
# appropriate versioned client will be returned.
# You can also specify a different transport by passing `:rest` or `:grpc` in
# the `transport` parameter.
#
# Raises an exception if the currently installed versioned client gem for the
# given API version does not support the given transport of the DatasetService service.
# You can determine whether the method will succeed by calling
# {Google::Cloud::AIPlatform.dataset_service_available?}.
#
# ## About DatasetService
#
# The service that manages Vertex AI Dataset and its child resources.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [::Object] A client object for the specified version.
#
def self.dataset_service version: :v1, transport: :grpc, &block
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
service_module = Google::Cloud::AIPlatform.const_get(package_name).const_get(:DatasetService)
service_module = service_module.const_get(:Rest) if transport == :rest
service_module.const_get(:Client).new(&block)
end
##
# Determines whether the DatasetService service is supported by the current client.
# If true, you can retrieve a client object by calling {Google::Cloud::AIPlatform.dataset_service}.
# If false, that method will raise an exception. This could happen if the given
# API version does not exist or does not support the DatasetService service,
# or if the versioned client gem needs an update to support the DatasetService service.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [boolean] Whether the service is available.
#
def self.dataset_service_available? version: :v1, transport: :grpc
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
return false unless package_name
service_module = Google::Cloud::AIPlatform.const_get package_name
return false unless service_module.const_defined? :DatasetService
service_module = service_module.const_get :DatasetService
if transport == :rest
return false unless service_module.const_defined? :Rest
service_module = service_module.const_get :Rest
end
service_module.const_defined? :Client
rescue ::LoadError
false
end
##
# Create a new client object for DeploymentResourcePoolService.
#
# By default, this returns an instance of
# [Google::Cloud::AIPlatform::V1::DeploymentResourcePoolService::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-ai_platform-v1/latest/Google-Cloud-AIPlatform-V1-DeploymentResourcePoolService-Client)
# for a gRPC client for version V1 of the API.
# However, you can specify a different API version by passing it in the
# `version` parameter. If the DeploymentResourcePoolService service is
# supported by that API version, and the corresponding gem is available, the
# appropriate versioned client will be returned.
# You can also specify a different transport by passing `:rest` or `:grpc` in
# the `transport` parameter.
#
# Raises an exception if the currently installed versioned client gem for the
# given API version does not support the given transport of the DeploymentResourcePoolService service.
# You can determine whether the method will succeed by calling
# {Google::Cloud::AIPlatform.deployment_resource_pool_service_available?}.
#
# ## About DeploymentResourcePoolService
#
# A service that manages the DeploymentResourcePool resource.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [::Object] A client object for the specified version.
#
def self.deployment_resource_pool_service version: :v1, transport: :grpc, &block
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
service_module = Google::Cloud::AIPlatform.const_get(package_name).const_get(:DeploymentResourcePoolService)
service_module = service_module.const_get(:Rest) if transport == :rest
service_module.const_get(:Client).new(&block)
end
##
# Determines whether the DeploymentResourcePoolService service is supported by the current client.
# If true, you can retrieve a client object by calling {Google::Cloud::AIPlatform.deployment_resource_pool_service}.
# If false, that method will raise an exception. This could happen if the given
# API version does not exist or does not support the DeploymentResourcePoolService service,
# or if the versioned client gem needs an update to support the DeploymentResourcePoolService service.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [boolean] Whether the service is available.
#
def self.deployment_resource_pool_service_available? version: :v1, transport: :grpc
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
return false unless package_name
service_module = Google::Cloud::AIPlatform.const_get package_name
return false unless service_module.const_defined? :DeploymentResourcePoolService
service_module = service_module.const_get :DeploymentResourcePoolService
if transport == :rest
return false unless service_module.const_defined? :Rest
service_module = service_module.const_get :Rest
end
service_module.const_defined? :Client
rescue ::LoadError
false
end
##
# Create a new client object for EndpointService.
#
# By default, this returns an instance of
# [Google::Cloud::AIPlatform::V1::EndpointService::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-ai_platform-v1/latest/Google-Cloud-AIPlatform-V1-EndpointService-Client)
# for a gRPC client for version V1 of the API.
# However, you can specify a different API version by passing it in the
# `version` parameter. If the EndpointService service is
# supported by that API version, and the corresponding gem is available, the
# appropriate versioned client will be returned.
# You can also specify a different transport by passing `:rest` or `:grpc` in
# the `transport` parameter.
#
# Raises an exception if the currently installed versioned client gem for the
# given API version does not support the given transport of the EndpointService service.
# You can determine whether the method will succeed by calling
# {Google::Cloud::AIPlatform.endpoint_service_available?}.
#
# ## About EndpointService
#
# A service for managing Vertex AI's Endpoints.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [::Object] A client object for the specified version.
#
def self.endpoint_service version: :v1, transport: :grpc, &block
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
service_module = Google::Cloud::AIPlatform.const_get(package_name).const_get(:EndpointService)
service_module = service_module.const_get(:Rest) if transport == :rest
service_module.const_get(:Client).new(&block)
end
##
# Determines whether the EndpointService service is supported by the current client.
# If true, you can retrieve a client object by calling {Google::Cloud::AIPlatform.endpoint_service}.
# If false, that method will raise an exception. This could happen if the given
# API version does not exist or does not support the EndpointService service,
# or if the versioned client gem needs an update to support the EndpointService service.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [boolean] Whether the service is available.
#
def self.endpoint_service_available? version: :v1, transport: :grpc
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
return false unless package_name
service_module = Google::Cloud::AIPlatform.const_get package_name
return false unless service_module.const_defined? :EndpointService
service_module = service_module.const_get :EndpointService
if transport == :rest
return false unless service_module.const_defined? :Rest
service_module = service_module.const_get :Rest
end
service_module.const_defined? :Client
rescue ::LoadError
false
end
##
# Create a new client object for EvaluationService.
#
# By default, this returns an instance of
# [Google::Cloud::AIPlatform::V1::EvaluationService::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-ai_platform-v1/latest/Google-Cloud-AIPlatform-V1-EvaluationService-Client)
# for a gRPC client for version V1 of the API.
# However, you can specify a different API version by passing it in the
# `version` parameter. If the EvaluationService service is
# supported by that API version, and the corresponding gem is available, the
# appropriate versioned client will be returned.
# You can also specify a different transport by passing `:rest` or `:grpc` in
# the `transport` parameter.
#
# Raises an exception if the currently installed versioned client gem for the
# given API version does not support the given transport of the EvaluationService service.
# You can determine whether the method will succeed by calling
# {Google::Cloud::AIPlatform.evaluation_service_available?}.
#
# ## About EvaluationService
#
# Vertex AI Online Evaluation Service.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [::Object] A client object for the specified version.
#
def self.evaluation_service version: :v1, transport: :grpc, &block
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
service_module = Google::Cloud::AIPlatform.const_get(package_name).const_get(:EvaluationService)
service_module = service_module.const_get(:Rest) if transport == :rest
service_module.const_get(:Client).new(&block)
end
##
# Determines whether the EvaluationService service is supported by the current client.
# If true, you can retrieve a client object by calling {Google::Cloud::AIPlatform.evaluation_service}.
# If false, that method will raise an exception. This could happen if the given
# API version does not exist or does not support the EvaluationService service,
# or if the versioned client gem needs an update to support the EvaluationService service.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [boolean] Whether the service is available.
#
def self.evaluation_service_available? version: :v1, transport: :grpc
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
return false unless package_name
service_module = Google::Cloud::AIPlatform.const_get package_name
return false unless service_module.const_defined? :EvaluationService
service_module = service_module.const_get :EvaluationService
if transport == :rest
return false unless service_module.const_defined? :Rest
service_module = service_module.const_get :Rest
end
service_module.const_defined? :Client
rescue ::LoadError
false
end
##
# Create a new client object for FeatureOnlineStoreAdminService.
#
# By default, this returns an instance of
# [Google::Cloud::AIPlatform::V1::FeatureOnlineStoreAdminService::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-ai_platform-v1/latest/Google-Cloud-AIPlatform-V1-FeatureOnlineStoreAdminService-Client)
# for a gRPC client for version V1 of the API.
# However, you can specify a different API version by passing it in the
# `version` parameter. If the FeatureOnlineStoreAdminService service is
# supported by that API version, and the corresponding gem is available, the
# appropriate versioned client will be returned.
# You can also specify a different transport by passing `:rest` or `:grpc` in
# the `transport` parameter.
#
# Raises an exception if the currently installed versioned client gem for the
# given API version does not support the given transport of the FeatureOnlineStoreAdminService service.
# You can determine whether the method will succeed by calling
# {Google::Cloud::AIPlatform.feature_online_store_admin_service_available?}.
#
# ## About FeatureOnlineStoreAdminService
#
# The service that handles CRUD and List for resources for
# FeatureOnlineStore.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [::Object] A client object for the specified version.
#
def self.feature_online_store_admin_service version: :v1, transport: :grpc, &block
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
service_module = Google::Cloud::AIPlatform.const_get(package_name).const_get(:FeatureOnlineStoreAdminService)
service_module = service_module.const_get(:Rest) if transport == :rest
service_module.const_get(:Client).new(&block)
end
##
# Determines whether the FeatureOnlineStoreAdminService service is supported by the current client.
# If true, you can retrieve a client object by calling {Google::Cloud::AIPlatform.feature_online_store_admin_service}.
# If false, that method will raise an exception. This could happen if the given
# API version does not exist or does not support the FeatureOnlineStoreAdminService service,
# or if the versioned client gem needs an update to support the FeatureOnlineStoreAdminService service.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [boolean] Whether the service is available.
#
def self.feature_online_store_admin_service_available? version: :v1, transport: :grpc
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
return false unless package_name
service_module = Google::Cloud::AIPlatform.const_get package_name
return false unless service_module.const_defined? :FeatureOnlineStoreAdminService
service_module = service_module.const_get :FeatureOnlineStoreAdminService
if transport == :rest
return false unless service_module.const_defined? :Rest
service_module = service_module.const_get :Rest
end
service_module.const_defined? :Client
rescue ::LoadError
false
end
##
# Create a new client object for FeaturestoreOnlineServingService.
#
# By default, this returns an instance of
# [Google::Cloud::AIPlatform::V1::FeaturestoreOnlineServingService::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-ai_platform-v1/latest/Google-Cloud-AIPlatform-V1-FeaturestoreOnlineServingService-Client)
# for a gRPC client for version V1 of the API.
# However, you can specify a different API version by passing it in the
# `version` parameter. If the FeaturestoreOnlineServingService service is
# supported by that API version, and the corresponding gem is available, the
# appropriate versioned client will be returned.
# You can also specify a different transport by passing `:rest` or `:grpc` in
# the `transport` parameter.
#
# Raises an exception if the currently installed versioned client gem for the
# given API version does not support the given transport of the FeaturestoreOnlineServingService service.
# You can determine whether the method will succeed by calling
# {Google::Cloud::AIPlatform.featurestore_online_serving_service_available?}.
#
# ## About FeaturestoreOnlineServingService
#
# A service for serving online feature values.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [::Object] A client object for the specified version.
#
def self.featurestore_online_serving_service version: :v1, transport: :grpc, &block
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
service_module = Google::Cloud::AIPlatform.const_get(package_name).const_get(:FeaturestoreOnlineServingService)
service_module = service_module.const_get(:Rest) if transport == :rest
service_module.const_get(:Client).new(&block)
end
##
# Determines whether the FeaturestoreOnlineServingService service is supported by the current client.
# If true, you can retrieve a client object by calling {Google::Cloud::AIPlatform.featurestore_online_serving_service}.
# If false, that method will raise an exception. This could happen if the given
# API version does not exist or does not support the FeaturestoreOnlineServingService service,
# or if the versioned client gem needs an update to support the FeaturestoreOnlineServingService service.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [boolean] Whether the service is available.
#
def self.featurestore_online_serving_service_available? version: :v1, transport: :grpc
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
return false unless package_name
service_module = Google::Cloud::AIPlatform.const_get package_name
return false unless service_module.const_defined? :FeaturestoreOnlineServingService
service_module = service_module.const_get :FeaturestoreOnlineServingService
if transport == :rest
return false unless service_module.const_defined? :Rest
service_module = service_module.const_get :Rest
end
service_module.const_defined? :Client
rescue ::LoadError
false
end
##
# Create a new client object for FeatureOnlineStoreService.
#
# By default, this returns an instance of
# [Google::Cloud::AIPlatform::V1::FeatureOnlineStoreService::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-ai_platform-v1/latest/Google-Cloud-AIPlatform-V1-FeatureOnlineStoreService-Client)
# for a gRPC client for version V1 of the API.
# However, you can specify a different API version by passing it in the
# `version` parameter. If the FeatureOnlineStoreService service is
# supported by that API version, and the corresponding gem is available, the
# appropriate versioned client will be returned.
# You can also specify a different transport by passing `:rest` or `:grpc` in
# the `transport` parameter.
#
# Raises an exception if the currently installed versioned client gem for the
# given API version does not support the given transport of the FeatureOnlineStoreService service.
# You can determine whether the method will succeed by calling
# {Google::Cloud::AIPlatform.feature_online_store_service_available?}.
#
# ## About FeatureOnlineStoreService
#
# A service for fetching feature values from the online store.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [::Object] A client object for the specified version.
#
def self.feature_online_store_service version: :v1, transport: :grpc, &block
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
service_module = Google::Cloud::AIPlatform.const_get(package_name).const_get(:FeatureOnlineStoreService)
service_module = service_module.const_get(:Rest) if transport == :rest
service_module.const_get(:Client).new(&block)
end
##
# Determines whether the FeatureOnlineStoreService service is supported by the current client.
# If true, you can retrieve a client object by calling {Google::Cloud::AIPlatform.feature_online_store_service}.
# If false, that method will raise an exception. This could happen if the given
# API version does not exist or does not support the FeatureOnlineStoreService service,
# or if the versioned client gem needs an update to support the FeatureOnlineStoreService service.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [boolean] Whether the service is available.
#
def self.feature_online_store_service_available? version: :v1, transport: :grpc
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
return false unless package_name
service_module = Google::Cloud::AIPlatform.const_get package_name
return false unless service_module.const_defined? :FeatureOnlineStoreService
service_module = service_module.const_get :FeatureOnlineStoreService
if transport == :rest
return false unless service_module.const_defined? :Rest
service_module = service_module.const_get :Rest
end
service_module.const_defined? :Client
rescue ::LoadError
false
end
##
# Create a new client object for FeaturestoreService.
#
# By default, this returns an instance of
# [Google::Cloud::AIPlatform::V1::FeaturestoreService::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-ai_platform-v1/latest/Google-Cloud-AIPlatform-V1-FeaturestoreService-Client)
# for a gRPC client for version V1 of the API.
# However, you can specify a different API version by passing it in the
# `version` parameter. If the FeaturestoreService service is
# supported by that API version, and the corresponding gem is available, the
# appropriate versioned client will be returned.
# You can also specify a different transport by passing `:rest` or `:grpc` in
# the `transport` parameter.
#
# Raises an exception if the currently installed versioned client gem for the
# given API version does not support the given transport of the FeaturestoreService service.
# You can determine whether the method will succeed by calling
# {Google::Cloud::AIPlatform.featurestore_service_available?}.
#
# ## About FeaturestoreService
#
# The service that handles CRUD and List for resources for Featurestore.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [::Object] A client object for the specified version.
#
def self.featurestore_service version: :v1, transport: :grpc, &block
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
service_module = Google::Cloud::AIPlatform.const_get(package_name).const_get(:FeaturestoreService)
service_module = service_module.const_get(:Rest) if transport == :rest
service_module.const_get(:Client).new(&block)
end
##
# Determines whether the FeaturestoreService service is supported by the current client.
# If true, you can retrieve a client object by calling {Google::Cloud::AIPlatform.featurestore_service}.
# If false, that method will raise an exception. This could happen if the given
# API version does not exist or does not support the FeaturestoreService service,
# or if the versioned client gem needs an update to support the FeaturestoreService service.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [boolean] Whether the service is available.
#
def self.featurestore_service_available? version: :v1, transport: :grpc
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
return false unless package_name
service_module = Google::Cloud::AIPlatform.const_get package_name
return false unless service_module.const_defined? :FeaturestoreService
service_module = service_module.const_get :FeaturestoreService
if transport == :rest
return false unless service_module.const_defined? :Rest
service_module = service_module.const_get :Rest
end
service_module.const_defined? :Client
rescue ::LoadError
false
end
##
# Create a new client object for FeatureRegistryService.
#
# By default, this returns an instance of
# [Google::Cloud::AIPlatform::V1::FeatureRegistryService::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-ai_platform-v1/latest/Google-Cloud-AIPlatform-V1-FeatureRegistryService-Client)
# for a gRPC client for version V1 of the API.
# However, you can specify a different API version by passing it in the
# `version` parameter. If the FeatureRegistryService service is
# supported by that API version, and the corresponding gem is available, the
# appropriate versioned client will be returned.
# You can also specify a different transport by passing `:rest` or `:grpc` in
# the `transport` parameter.
#
# Raises an exception if the currently installed versioned client gem for the
# given API version does not support the given transport of the FeatureRegistryService service.
# You can determine whether the method will succeed by calling
# {Google::Cloud::AIPlatform.feature_registry_service_available?}.
#
# ## About FeatureRegistryService
#
# The service that handles CRUD and List for resources for
# FeatureRegistry.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [::Object] A client object for the specified version.
#
def self.feature_registry_service version: :v1, transport: :grpc, &block
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
service_module = Google::Cloud::AIPlatform.const_get(package_name).const_get(:FeatureRegistryService)
service_module = service_module.const_get(:Rest) if transport == :rest
service_module.const_get(:Client).new(&block)
end
##
# Determines whether the FeatureRegistryService service is supported by the current client.
# If true, you can retrieve a client object by calling {Google::Cloud::AIPlatform.feature_registry_service}.
# If false, that method will raise an exception. This could happen if the given
# API version does not exist or does not support the FeatureRegistryService service,
# or if the versioned client gem needs an update to support the FeatureRegistryService service.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [boolean] Whether the service is available.
#
def self.feature_registry_service_available? version: :v1, transport: :grpc
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
return false unless package_name
service_module = Google::Cloud::AIPlatform.const_get package_name
return false unless service_module.const_defined? :FeatureRegistryService
service_module = service_module.const_get :FeatureRegistryService
if transport == :rest
return false unless service_module.const_defined? :Rest
service_module = service_module.const_get :Rest
end
service_module.const_defined? :Client
rescue ::LoadError
false
end
##
# Create a new client object for GenAiCacheService.
#
# By default, this returns an instance of
# [Google::Cloud::AIPlatform::V1::GenAiCacheService::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-ai_platform-v1/latest/Google-Cloud-AIPlatform-V1-GenAiCacheService-Client)
# for a gRPC client for version V1 of the API.
# However, you can specify a different API version by passing it in the
# `version` parameter. If the GenAiCacheService service is
# supported by that API version, and the corresponding gem is available, the
# appropriate versioned client will be returned.
# You can also specify a different transport by passing `:rest` or `:grpc` in
# the `transport` parameter.
#
# Raises an exception if the currently installed versioned client gem for the
# given API version does not support the given transport of the GenAiCacheService service.
# You can determine whether the method will succeed by calling
# {Google::Cloud::AIPlatform.gen_ai_cache_service_available?}.
#
# ## About GenAiCacheService
#
# Service for managing Vertex AI's CachedContent resource.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [::Object] A client object for the specified version.
#
def self.gen_ai_cache_service version: :v1, transport: :grpc, &block
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
service_module = Google::Cloud::AIPlatform.const_get(package_name).const_get(:GenAiCacheService)
service_module = service_module.const_get(:Rest) if transport == :rest
service_module.const_get(:Client).new(&block)
end
##
# Determines whether the GenAiCacheService service is supported by the current client.
# If true, you can retrieve a client object by calling {Google::Cloud::AIPlatform.gen_ai_cache_service}.
# If false, that method will raise an exception. This could happen if the given
# API version does not exist or does not support the GenAiCacheService service,
# or if the versioned client gem needs an update to support the GenAiCacheService service.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [boolean] Whether the service is available.
#
def self.gen_ai_cache_service_available? version: :v1, transport: :grpc
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
return false unless package_name
service_module = Google::Cloud::AIPlatform.const_get package_name
return false unless service_module.const_defined? :GenAiCacheService
service_module = service_module.const_get :GenAiCacheService
if transport == :rest
return false unless service_module.const_defined? :Rest
service_module = service_module.const_get :Rest
end
service_module.const_defined? :Client
rescue ::LoadError
false
end
##
# Create a new client object for GenAiTuningService.
#
# By default, this returns an instance of
# [Google::Cloud::AIPlatform::V1::GenAiTuningService::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-ai_platform-v1/latest/Google-Cloud-AIPlatform-V1-GenAiTuningService-Client)
# for a gRPC client for version V1 of the API.
# However, you can specify a different API version by passing it in the
# `version` parameter. If the GenAiTuningService service is
# supported by that API version, and the corresponding gem is available, the
# appropriate versioned client will be returned.
# You can also specify a different transport by passing `:rest` or `:grpc` in
# the `transport` parameter.
#
# Raises an exception if the currently installed versioned client gem for the
# given API version does not support the given transport of the GenAiTuningService service.
# You can determine whether the method will succeed by calling
# {Google::Cloud::AIPlatform.gen_ai_tuning_service_available?}.
#
# ## About GenAiTuningService
#
# A service for creating and managing GenAI Tuning Jobs.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [::Object] A client object for the specified version.
#
def self.gen_ai_tuning_service version: :v1, transport: :grpc, &block
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
service_module = Google::Cloud::AIPlatform.const_get(package_name).const_get(:GenAiTuningService)
service_module = service_module.const_get(:Rest) if transport == :rest
service_module.const_get(:Client).new(&block)
end
##
# Determines whether the GenAiTuningService service is supported by the current client.
# If true, you can retrieve a client object by calling {Google::Cloud::AIPlatform.gen_ai_tuning_service}.
# If false, that method will raise an exception. This could happen if the given
# API version does not exist or does not support the GenAiTuningService service,
# or if the versioned client gem needs an update to support the GenAiTuningService service.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [boolean] Whether the service is available.
#
def self.gen_ai_tuning_service_available? version: :v1, transport: :grpc
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
return false unless package_name
service_module = Google::Cloud::AIPlatform.const_get package_name
return false unless service_module.const_defined? :GenAiTuningService
service_module = service_module.const_get :GenAiTuningService
if transport == :rest
return false unless service_module.const_defined? :Rest
service_module = service_module.const_get :Rest
end
service_module.const_defined? :Client
rescue ::LoadError
false
end
##
# Create a new client object for IndexEndpointService.
#
# By default, this returns an instance of
# [Google::Cloud::AIPlatform::V1::IndexEndpointService::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-ai_platform-v1/latest/Google-Cloud-AIPlatform-V1-IndexEndpointService-Client)
# for a gRPC client for version V1 of the API.
# However, you can specify a different API version by passing it in the
# `version` parameter. If the IndexEndpointService service is
# supported by that API version, and the corresponding gem is available, the
# appropriate versioned client will be returned.
# You can also specify a different transport by passing `:rest` or `:grpc` in
# the `transport` parameter.
#
# Raises an exception if the currently installed versioned client gem for the
# given API version does not support the given transport of the IndexEndpointService service.
# You can determine whether the method will succeed by calling
# {Google::Cloud::AIPlatform.index_endpoint_service_available?}.
#
# ## About IndexEndpointService
#
# A service for managing Vertex AI's IndexEndpoints.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [::Object] A client object for the specified version.
#
def self.index_endpoint_service version: :v1, transport: :grpc, &block
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
service_module = Google::Cloud::AIPlatform.const_get(package_name).const_get(:IndexEndpointService)
service_module = service_module.const_get(:Rest) if transport == :rest
service_module.const_get(:Client).new(&block)
end
##
# Determines whether the IndexEndpointService service is supported by the current client.
# If true, you can retrieve a client object by calling {Google::Cloud::AIPlatform.index_endpoint_service}.
# If false, that method will raise an exception. This could happen if the given
# API version does not exist or does not support the IndexEndpointService service,
# or if the versioned client gem needs an update to support the IndexEndpointService service.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [boolean] Whether the service is available.
#
def self.index_endpoint_service_available? version: :v1, transport: :grpc
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
return false unless package_name
service_module = Google::Cloud::AIPlatform.const_get package_name
return false unless service_module.const_defined? :IndexEndpointService
service_module = service_module.const_get :IndexEndpointService
if transport == :rest
return false unless service_module.const_defined? :Rest
service_module = service_module.const_get :Rest
end
service_module.const_defined? :Client
rescue ::LoadError
false
end
##
# Create a new client object for IndexService.
#
# By default, this returns an instance of
# [Google::Cloud::AIPlatform::V1::IndexService::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-ai_platform-v1/latest/Google-Cloud-AIPlatform-V1-IndexService-Client)
# for a gRPC client for version V1 of the API.
# However, you can specify a different API version by passing it in the
# `version` parameter. If the IndexService service is
# supported by that API version, and the corresponding gem is available, the
# appropriate versioned client will be returned.
# You can also specify a different transport by passing `:rest` or `:grpc` in
# the `transport` parameter.
#
# Raises an exception if the currently installed versioned client gem for the
# given API version does not support the given transport of the IndexService service.
# You can determine whether the method will succeed by calling
# {Google::Cloud::AIPlatform.index_service_available?}.
#
# ## About IndexService
#
# A service for creating and managing Vertex AI's Index resources.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [::Object] A client object for the specified version.
#
def self.index_service version: :v1, transport: :grpc, &block
require "google/cloud/ai_platform/#{version.to_s.downcase}"
package_name = Google::Cloud::AIPlatform
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
service_module = Google::Cloud::AIPlatform.const_get(package_name).const_get(:IndexService)
service_module = service_module.const_get(:Rest) if transport == :rest
service_module.const_get(:Client).new(&block)
end
##
# Determines whether the IndexService service is supported by the current client.