google-cloud-automl-v1 0.2.2 → 0.2.3
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/automl/v1/automl/client.rb +1 -1
- data/lib/google/cloud/automl/v1/automl/operations.rb +1 -1
- data/lib/google/cloud/automl/v1/prediction_service/client.rb +1 -1
- data/lib/google/cloud/automl/v1/prediction_service/operations.rb +1 -1
- data/lib/google/cloud/automl/v1/version.rb +1 -1
- data/proto_docs/google/cloud/automl/v1/io.rb +2 -2
- 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: e5ec1c1084808944b73df13dcf98e3c6849a5a91b970518a5d1d790d96bfe21b
|
|
4
|
+
data.tar.gz: 839d8df977c05eb1deb95204ce17c7a1040c4dcb7c38474178cdcab9223ba405
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7709efe34e0b4d58149d0b9d0bd3092dd830ec717ce51d6f742212511b21e75c1fea27ec578fcc4ac62472b066f97e4db00cb619f049b3eb803eda68a070e745
|
|
7
|
+
data.tar.gz: 05c9e1d661ac5c2e286effc42821cdbeab75a9706d3538b5a27f3ba888968c05625f4be74853a234601ba0fb9a208eace3c6d2fa93f2e37b54ec8505397822dc
|
|
@@ -1691,7 +1691,7 @@ module Google
|
|
|
1691
1691
|
def rpcs
|
|
1692
1692
|
@rpcs ||= begin
|
|
1693
1693
|
parent_rpcs = nil
|
|
1694
|
-
parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to?
|
|
1694
|
+
parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
|
|
1695
1695
|
Rpcs.new parent_rpcs
|
|
1696
1696
|
end
|
|
1697
1697
|
end
|
|
@@ -503,7 +503,7 @@ module Google
|
|
|
503
503
|
def rpcs
|
|
504
504
|
@rpcs ||= begin
|
|
505
505
|
parent_rpcs = nil
|
|
506
|
-
parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to?
|
|
506
|
+
parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
|
|
507
507
|
Rpcs.new parent_rpcs
|
|
508
508
|
end
|
|
509
509
|
end
|
|
@@ -582,7 +582,7 @@ module Google
|
|
|
582
582
|
def rpcs
|
|
583
583
|
@rpcs ||= begin
|
|
584
584
|
parent_rpcs = nil
|
|
585
|
-
parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to?
|
|
585
|
+
parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
|
|
586
586
|
Rpcs.new parent_rpcs
|
|
587
587
|
end
|
|
588
588
|
end
|
|
@@ -503,7 +503,7 @@ module Google
|
|
|
503
503
|
def rpcs
|
|
504
504
|
@rpcs ||= begin
|
|
505
505
|
parent_rpcs = nil
|
|
506
|
-
parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to?
|
|
506
|
+
parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
|
|
507
507
|
Rpcs.new parent_rpcs
|
|
508
508
|
end
|
|
509
509
|
end
|
|
@@ -884,7 +884,7 @@ module Google
|
|
|
884
884
|
# The column names must contain the model's
|
|
885
885
|
#
|
|
886
886
|
# [input_feature_column_specs'][google.cloud.automl.v1.TablesModelMetadata.input_feature_column_specs]
|
|
887
|
-
#
|
|
887
|
+
# display_name-s
|
|
888
888
|
# (order doesn't matter). The columns corresponding to the model's
|
|
889
889
|
# input feature column specs must contain values compatible with the
|
|
890
890
|
# column spec's data types. Prediction on all the rows, i.e. the CSV
|
|
@@ -907,7 +907,7 @@ module Google
|
|
|
907
907
|
# The column names must contain the model's
|
|
908
908
|
#
|
|
909
909
|
# [input_feature_column_specs'][google.cloud.automl.v1.TablesModelMetadata.input_feature_column_specs]
|
|
910
|
-
#
|
|
910
|
+
# display_name-s
|
|
911
911
|
# (order doesn't matter). The columns corresponding to the model's
|
|
912
912
|
# input feature column specs must contain values compatible with the
|
|
913
913
|
# column spec's data types. Prediction on all the rows of the table
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-automl-v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-06-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gapic-common
|
|
@@ -247,7 +247,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
247
247
|
- !ruby/object:Gem::Version
|
|
248
248
|
version: '0'
|
|
249
249
|
requirements: []
|
|
250
|
-
rubygems_version: 3.
|
|
250
|
+
rubygems_version: 3.1.3
|
|
251
251
|
signing_key:
|
|
252
252
|
specification_version: 4
|
|
253
253
|
summary: API Client library for the Cloud AutoML V1 API
|