google-cloud-financial_services-v1 0.4.0 → 0.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 162bdd2ef0e236ab7e56cded4e036a9ec48e0443d8afabd3ca1467be95488288
4
- data.tar.gz: 397192331eb08d95fbddf02c464672ec0299cb0fa133ef28822bf5edbab020e6
3
+ metadata.gz: c2b572ce4f4d26b0fcb66183f1139c3cf4075872120ae1c91301b23b16d958f4
4
+ data.tar.gz: 95b6299ac5c7bb074c57ce277ccae786b6b3f8218fec15a120c725f6415c06da
5
5
  SHA512:
6
- metadata.gz: c32934a9b65a389c4043dc732039f9a3263b561d57e5d04f8902287485993455407fdf656ea0be83e9c6da2e56b7c995432c11dc60a8393cfbcf1b3fa24b1482
7
- data.tar.gz: '009b281caf78eea88deb2f6f3556a921d0111d83cc4b3dbc2f049361475d3b6c8fcaead907da9c6d88bb23d0ef3c621d8ec95ddf5377c1286aff802c018f3e44'
6
+ metadata.gz: 34231f93b888a50c73965732d73f88c495b1719a3ba17e49523884a78a952bb5b6c212837e59e302b4a76093e1c80fdb15b7b1e53a7469235e19b10f41e0af53
7
+ data.tar.gz: bb5b673c3fd5c808146f56452530b58cf95365bf5fb2d1b5de75a733814af94f506d77d2e0e93aae44cee07f781f4110747faba030828c7dbff17073dfd102f4
@@ -4274,8 +4274,6 @@ module Google
4274
4274
  # @return [::String,nil]
4275
4275
  # @!attribute [rw] credentials
4276
4276
  # Credentials to send with calls. You may provide any of the following types:
4277
- # * (`String`) The path to a service account key file in JSON format
4278
- # * (`Hash`) A service account key as a Hash
4279
4277
  # * (`Google::Auth::Credentials`) A googleauth credentials object
4280
4278
  # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
4281
4279
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
@@ -4284,7 +4282,26 @@ module Google
4284
4282
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
4285
4283
  # * (`nil`) indicating no credentials
4286
4284
  #
4287
- # Warning: If you accept a credential configuration (JSON file or Hash) from an
4285
+ # @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
4286
+ # is deprecated. Providing an unvalidated credential configuration to
4287
+ # Google APIs can compromise the security of your systems and data.
4288
+ #
4289
+ # @example
4290
+ #
4291
+ # # The recommended way to provide credentials is to use the `make_creds` method
4292
+ # # on the appropriate credentials class for your environment.
4293
+ #
4294
+ # require "googleauth"
4295
+ #
4296
+ # credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
4297
+ # json_key_io: ::File.open("/path/to/keyfile.json")
4298
+ # )
4299
+ #
4300
+ # client = ::Google::Cloud::FinancialServices::V1::AML::Client.new do |config|
4301
+ # config.credentials = credentials
4302
+ # end
4303
+ #
4304
+ # @note Warning: If you accept a credential configuration (JSON file or Hash) from an
4288
4305
  # external source for authentication to Google Cloud, you must validate it before
4289
4306
  # providing it to a Google API client library. Providing an unvalidated credential
4290
4307
  # configuration to Google APIs can compromise the security of your systems and data.
@@ -642,8 +642,6 @@ module Google
642
642
  # @return [::String,nil]
643
643
  # @!attribute [rw] credentials
644
644
  # Credentials to send with calls. You may provide any of the following types:
645
- # * (`String`) The path to a service account key file in JSON format
646
- # * (`Hash`) A service account key as a Hash
647
645
  # * (`Google::Auth::Credentials`) A googleauth credentials object
648
646
  # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
649
647
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
@@ -652,7 +650,26 @@ module Google
652
650
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
653
651
  # * (`nil`) indicating no credentials
654
652
  #
655
- # Warning: If you accept a credential configuration (JSON file or Hash) from an
653
+ # @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
654
+ # is deprecated. Providing an unvalidated credential configuration to
655
+ # Google APIs can compromise the security of your systems and data.
656
+ #
657
+ # @example
658
+ #
659
+ # # The recommended way to provide credentials is to use the `make_creds` method
660
+ # # on the appropriate credentials class for your environment.
661
+ #
662
+ # require "googleauth"
663
+ #
664
+ # credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
665
+ # json_key_io: ::File.open("/path/to/keyfile.json")
666
+ # )
667
+ #
668
+ # client = ::Google::Longrunning::Operations::Client.new do |config|
669
+ # config.credentials = credentials
670
+ # end
671
+ #
672
+ # @note Warning: If you accept a credential configuration (JSON file or Hash) from an
656
673
  # external source for authentication to Google Cloud, you must validate it before
657
674
  # providing it to a Google API client library. Providing an unvalidated credential
658
675
  # configuration to Google APIs can compromise the security of your systems and data.
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module FinancialServices
23
23
  module V1
24
- VERSION = "0.4.0"
24
+ VERSION = "0.5.0"
25
25
  end
26
26
  end
27
27
  end
@@ -14,32 +14,8 @@ require 'google/protobuf/timestamp_pb'
14
14
 
15
15
  descriptor_data = "\n7google/cloud/financialservices/v1/backtest_result.proto\x12!google.cloud.financialservices.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a<google/cloud/financialservices/v1/bigquery_destination.proto\x1a\x38google/cloud/financialservices/v1/line_of_business.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x9b\x08\n\x0e\x42\x61\x63ktestResult\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12M\n\x06labels\x18\x04 \x03(\x0b\x32=.google.cloud.financialservices.v1.BacktestResult.LabelsEntry\x12K\n\x05state\x18\x05 \x01(\x0e\x32\x37.google.cloud.financialservices.v1.BacktestResult.StateB\x03\xe0\x41\x03\x12\x41\n\x07\x64\x61taset\x18\x06 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(financialservices.googleapis.com/Dataset\x12=\n\x05model\x18\x07 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&financialservices.googleapis.com/Model\x12\x31\n\x08\x65nd_time\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x02\x12\x18\n\x10\x62\x61\x63ktest_periods\x18\n \x01(\x05\x12\x64\n\x12performance_target\x18\x0b \x01(\x0b\x32\x43.google.cloud.financialservices.v1.BacktestResult.PerformanceTargetB\x03\xe0\x41\x02\x12P\n\x10line_of_business\x18\x0c \x01(\x0e\x32\x31.google.cloud.financialservices.v1.LineOfBusinessB\x03\xe0\x41\x03\x1a\x46\n\x11PerformanceTarget\x12\x31\n$party_investigations_per_period_hint\x18\x01 \x01(\x03\x42\x03\xe0\x41\x02\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"T\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x43REATING\x10\x01\x12\n\n\x06\x41\x43TIVE\x10\x02\x12\x0c\n\x08UPDATING\x10\x03\x12\x0c\n\x08\x44\x45LETING\x10\x04:\x99\x01\xea\x41\x95\x01\n/financialservices.googleapis.com/BacktestResult\x12\x62projects/{project_num}/locations/{location}/instances/{instance}/backtestResults/{backtest_result}\"\xa8\x01\n\x1aListBacktestResultsRequest\x12\x41\n\x06parent\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)financialservices.googleapis.com/Instance\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x10\n\x08order_by\x18\x05 \x01(\t\"\x98\x01\n\x1bListBacktestResultsResponse\x12K\n\x10\x62\x61\x63ktest_results\x18\x01 \x03(\x0b\x32\x31.google.cloud.financialservices.v1.BacktestResult\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"a\n\x18GetBacktestResultRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/financialservices.googleapis.com/BacktestResult\"\xeb\x01\n\x1b\x43reateBacktestResultRequest\x12\x41\n\x06parent\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)financialservices.googleapis.com/Instance\x12\x1f\n\x12\x62\x61\x63ktest_result_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12O\n\x0f\x62\x61\x63ktest_result\x18\x03 \x01(\x0b\x32\x31.google.cloud.financialservices.v1.BacktestResultB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\xbd\x01\n\x1bUpdateBacktestResultRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12O\n\x0f\x62\x61\x63ktest_result\x18\x02 \x01(\x0b\x32\x31.google.cloud.financialservices.v1.BacktestResultB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"}\n\x1b\x44\x65leteBacktestResultRequest\x12\x45\n\x04name\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/financialservices.googleapis.com/BacktestResult\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\xdd\x01\n#ExportBacktestResultMetadataRequest\x12P\n\x0f\x62\x61\x63ktest_result\x18\x01 \x01(\tB7\xe0\x41\x02\xfa\x41\x31\n/financialservices.googleapis.com/BacktestResult\x12\x64\n\x1fstructured_metadata_destination\x18\x02 \x01(\x0b\x32\x36.google.cloud.financialservices.v1.BigQueryDestinationB\x03\xe0\x41\x02\"&\n$ExportBacktestResultMetadataResponseB\x82\x02\n%com.google.cloud.financialservices.v1B\x13\x42\x61\x63ktestResultProtoP\x01ZScloud.google.com/go/financialservices/apiv1/financialservicespb;financialservicespb\xaa\x02!Google.Cloud.FinancialServices.V1\xca\x02!Google\\Cloud\\FinancialServices\\V1\xea\x02$Google::Cloud::FinancialServices::V1b\x06proto3"
16
16
 
17
- pool = Google::Protobuf::DescriptorPool.generated_pool
18
-
19
- begin
20
- pool.add_serialized_file(descriptor_data)
21
- rescue TypeError
22
- # Compatibility code: will be removed in the next major version.
23
- require 'google/protobuf/descriptor_pb'
24
- parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
25
- parsed.clear_dependency
26
- serialized = parsed.class.encode(parsed)
27
- file = pool.add_serialized_file(serialized)
28
- warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
29
- imports = [
30
- ["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
31
- ["google.protobuf.FieldMask", "google/protobuf/field_mask.proto"],
32
- ["google.cloud.financialservices.v1.BigQueryDestination", "google/cloud/financialservices/v1/bigquery_destination.proto"],
33
- ]
34
- imports.each do |type_name, expected_filename|
35
- import_file = pool.lookup(type_name).file_descriptor
36
- if import_file.name != expected_filename
37
- warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
38
- end
39
- end
40
- warn "Each proto file must use a consistent fully-qualified name."
41
- warn "This will become an error in the next major version."
42
- end
17
+ pool = ::Google::Protobuf::DescriptorPool.generated_pool
18
+ pool.add_serialized_file(descriptor_data)
43
19
 
44
20
  module Google
45
21
  module Cloud
@@ -9,29 +9,8 @@ require 'google/api/field_behavior_pb'
9
9
 
10
10
  descriptor_data = "\n<google/cloud/financialservices/v1/bigquery_destination.proto\x12!google.cloud.financialservices.v1\x1a\x1fgoogle/api/field_behavior.proto\"\xf2\x01\n\x13\x42igQueryDestination\x12\x16\n\ttable_uri\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12g\n\x11write_disposition\x18\x02 \x01(\x0e\x32G.google.cloud.financialservices.v1.BigQueryDestination.WriteDispositionB\x03\xe0\x41\x02\"Z\n\x10WriteDisposition\x12!\n\x1dWRITE_DISPOSITION_UNSPECIFIED\x10\x00\x12\x0f\n\x0bWRITE_EMPTY\x10\x01\x12\x12\n\x0eWRITE_TRUNCATE\x10\x02\x42\x87\x02\n%com.google.cloud.financialservices.v1B\x18\x42igQueryDestinationProtoP\x01ZScloud.google.com/go/financialservices/apiv1/financialservicespb;financialservicespb\xaa\x02!Google.Cloud.FinancialServices.V1\xca\x02!Google\\Cloud\\FinancialServices\\V1\xea\x02$Google::Cloud::FinancialServices::V1b\x06proto3"
11
11
 
12
- pool = Google::Protobuf::DescriptorPool.generated_pool
13
-
14
- begin
15
- pool.add_serialized_file(descriptor_data)
16
- rescue TypeError
17
- # Compatibility code: will be removed in the next major version.
18
- require 'google/protobuf/descriptor_pb'
19
- parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
20
- parsed.clear_dependency
21
- serialized = parsed.class.encode(parsed)
22
- file = pool.add_serialized_file(serialized)
23
- warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
24
- imports = [
25
- ]
26
- imports.each do |type_name, expected_filename|
27
- import_file = pool.lookup(type_name).file_descriptor
28
- if import_file.name != expected_filename
29
- warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
30
- end
31
- end
32
- warn "Each proto file must use a consistent fully-qualified name."
33
- warn "This will become an error in the next major version."
34
- end
12
+ pool = ::Google::Protobuf::DescriptorPool.generated_pool
13
+ pool.add_serialized_file(descriptor_data)
35
14
 
36
15
  module Google
37
16
  module Cloud
@@ -14,33 +14,8 @@ require 'google/type/interval_pb'
14
14
 
15
15
  descriptor_data = "\n/google/cloud/financialservices/v1/dataset.proto\x12!google.cloud.financialservices.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1agoogle/type/datetime.proto\x1a\x1agoogle/type/interval.proto\"\x83\x06\n\x07\x44\x61taset\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x46\n\x06labels\x18\x04 \x03(\x0b\x32\x36.google.cloud.financialservices.v1.Dataset.LabelsEntry\x12T\n\x0btable_specs\x18\x05 \x03(\x0b\x32:.google.cloud.financialservices.v1.Dataset.TableSpecsEntryB\x03\xe0\x41\x02\x12\x44\n\x05state\x18\x07 \x01(\x0e\x32\x30.google.cloud.financialservices.v1.Dataset.StateB\x03\xe0\x41\x03\x12.\n\ndate_range\x18\x08 \x01(\x0b\x32\x15.google.type.IntervalB\x03\xe0\x41\x02\x12(\n\ttime_zone\x18\t \x01(\x0b\x32\x15.google.type.TimeZone\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a\x31\n\x0fTableSpecsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"T\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x43REATING\x10\x01\x12\n\n\x06\x41\x43TIVE\x10\x02\x12\x0c\n\x08UPDATING\x10\x03\x12\x0c\n\x08\x44\x45LETING\x10\x04:\x82\x01\xea\x41\x7f\n(financialservices.googleapis.com/Dataset\x12Sprojects/{project_num}/locations/{location}/instances/{instance}/datasets/{dataset}\"\xa1\x01\n\x13ListDatasetsRequest\x12\x41\n\x06parent\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)financialservices.googleapis.com/Instance\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x10\n\x08order_by\x18\x05 \x01(\t\"\x82\x01\n\x14ListDatasetsResponse\x12<\n\x08\x64\x61tasets\x18\x01 \x03(\x0b\x32*.google.cloud.financialservices.v1.Dataset\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"S\n\x11GetDatasetRequest\x12>\n\x04name\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(financialservices.googleapis.com/Dataset\"\xcd\x01\n\x14\x43reateDatasetRequest\x12\x41\n\x06parent\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)financialservices.googleapis.com/Instance\x12\x17\n\ndataset_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12@\n\x07\x64\x61taset\x18\x03 \x01(\x0b\x32*.google.cloud.financialservices.v1.DatasetB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\xa7\x01\n\x14UpdateDatasetRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12@\n\x07\x64\x61taset\x18\x02 \x01(\x0b\x32*.google.cloud.financialservices.v1.DatasetB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"o\n\x14\x44\x65leteDatasetRequest\x12>\n\x04name\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(financialservices.googleapis.com/Dataset\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\x42\xfb\x01\n%com.google.cloud.financialservices.v1B\x0c\x44\x61tasetProtoP\x01ZScloud.google.com/go/financialservices/apiv1/financialservicespb;financialservicespb\xaa\x02!Google.Cloud.FinancialServices.V1\xca\x02!Google\\Cloud\\FinancialServices\\V1\xea\x02$Google::Cloud::FinancialServices::V1b\x06proto3"
16
16
 
17
- pool = Google::Protobuf::DescriptorPool.generated_pool
18
-
19
- begin
20
- pool.add_serialized_file(descriptor_data)
21
- rescue TypeError
22
- # Compatibility code: will be removed in the next major version.
23
- require 'google/protobuf/descriptor_pb'
24
- parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
25
- parsed.clear_dependency
26
- serialized = parsed.class.encode(parsed)
27
- file = pool.add_serialized_file(serialized)
28
- warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
29
- imports = [
30
- ["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
31
- ["google.type.Interval", "google/type/interval.proto"],
32
- ["google.type.TimeZone", "google/type/datetime.proto"],
33
- ["google.protobuf.FieldMask", "google/protobuf/field_mask.proto"],
34
- ]
35
- imports.each do |type_name, expected_filename|
36
- import_file = pool.lookup(type_name).file_descriptor
37
- if import_file.name != expected_filename
38
- warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
39
- end
40
- end
41
- warn "Each proto file must use a consistent fully-qualified name."
42
- warn "This will become an error in the next major version."
43
- end
17
+ pool = ::Google::Protobuf::DescriptorPool.generated_pool
18
+ pool.add_serialized_file(descriptor_data)
44
19
 
45
20
  module Google
46
21
  module Cloud
@@ -14,32 +14,8 @@ require 'google/protobuf/timestamp_pb'
14
14
 
15
15
  descriptor_data = "\n5google/cloud/financialservices/v1/engine_config.proto\x12!google.cloud.financialservices.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a<google/cloud/financialservices/v1/bigquery_destination.proto\x1a\x38google/cloud/financialservices/v1/line_of_business.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x83\x0c\n\x0c\x45ngineConfig\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12K\n\x06labels\x18\x04 \x03(\x0b\x32;.google.cloud.financialservices.v1.EngineConfig.LabelsEntry\x12I\n\x05state\x18\x05 \x01(\x0e\x32\x35.google.cloud.financialservices.v1.EngineConfig.StateB\x03\xe0\x41\x03\x12N\n\x0e\x65ngine_version\x18\x06 \x01(\tB6\xe0\x41\x02\xfa\x41\x30\n.financialservices.googleapis.com/EngineVersion\x12K\n\x06tuning\x18\x07 \x01(\x0b\x32\x36.google.cloud.financialservices.v1.EngineConfig.TuningB\x03\xe0\x41\x01\x12\x62\n\x12performance_target\x18\x0b \x01(\x0b\x32\x41.google.cloud.financialservices.v1.EngineConfig.PerformanceTargetB\x03\xe0\x41\x01\x12P\n\x10line_of_business\x18\x0c \x01(\x0e\x32\x31.google.cloud.financialservices.v1.LineOfBusinessB\x03\xe0\x41\x03\x12q\n\x1ahyperparameter_source_type\x18\x0f \x01(\x0e\x32H.google.cloud.financialservices.v1.EngineConfig.HyperparameterSourceTypeB\x03\xe0\x41\x01\x12h\n\x15hyperparameter_source\x18\x10 \x01(\x0b\x32\x44.google.cloud.financialservices.v1.EngineConfig.HyperparameterSourceB\x03\xe0\x41\x01\x1a\x86\x01\n\x06Tuning\x12I\n\x0fprimary_dataset\x18\x01 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(financialservices.googleapis.com/Dataset\x12\x31\n\x08\x65nd_time\x18\n \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x02\x1a\x46\n\x11PerformanceTarget\x12\x31\n$party_investigations_per_period_hint\x18\x01 \x01(\x03\x42\x03\xe0\x41\x02\x1a]\n\x14HyperparameterSource\x12!\n\x14source_engine_config\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\"\n\x15source_engine_version\x18\x02 \x01(\tB\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\"T\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x43REATING\x10\x01\x12\n\n\x06\x41\x43TIVE\x10\x02\x12\x0c\n\x08UPDATING\x10\x03\x12\x0c\n\x08\x44\x45LETING\x10\x04\"a\n\x18HyperparameterSourceType\x12*\n&HYPERPARAMETER_SOURCE_TYPE_UNSPECIFIED\x10\x00\x12\n\n\x06TUNING\x10\x01\x12\r\n\tINHERITED\x10\x02:\x93\x01\xea\x41\x8f\x01\n-financialservices.googleapis.com/EngineConfig\x12^projects/{project_num}/locations/{location}/instances/{instance}/engineConfigs/{engine_config}\"\xa6\x01\n\x18ListEngineConfigsRequest\x12\x41\n\x06parent\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)financialservices.googleapis.com/Instance\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x10\n\x08order_by\x18\x05 \x01(\t\"\x92\x01\n\x19ListEngineConfigsResponse\x12G\n\x0e\x65ngine_configs\x18\x01 \x03(\x0b\x32/.google.cloud.financialservices.v1.EngineConfig\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"]\n\x16GetEngineConfigRequest\x12\x43\n\x04name\x18\x01 \x01(\tB5\xe0\x41\x02\xfa\x41/\n-financialservices.googleapis.com/EngineConfig\"\xe3\x01\n\x19\x43reateEngineConfigRequest\x12\x41\n\x06parent\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)financialservices.googleapis.com/Instance\x12\x1d\n\x10\x65ngine_config_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12K\n\rengine_config\x18\x03 \x01(\x0b\x32/.google.cloud.financialservices.v1.EngineConfigB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\xb7\x01\n\x19UpdateEngineConfigRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12K\n\rengine_config\x18\x02 \x01(\x0b\x32/.google.cloud.financialservices.v1.EngineConfigB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"y\n\x19\x44\x65leteEngineConfigRequest\x12\x43\n\x04name\x18\x01 \x01(\tB5\xe0\x41\x02\xfa\x41/\n-financialservices.googleapis.com/EngineConfig\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\xd7\x01\n!ExportEngineConfigMetadataRequest\x12L\n\rengine_config\x18\x01 \x01(\tB5\xe0\x41\x02\xfa\x41/\n-financialservices.googleapis.com/EngineConfig\x12\x64\n\x1fstructured_metadata_destination\x18\x02 \x01(\x0b\x32\x36.google.cloud.financialservices.v1.BigQueryDestinationB\x03\xe0\x41\x02\"$\n\"ExportEngineConfigMetadataResponseB\x80\x02\n%com.google.cloud.financialservices.v1B\x11\x45ngineConfigProtoP\x01ZScloud.google.com/go/financialservices/apiv1/financialservicespb;financialservicespb\xaa\x02!Google.Cloud.FinancialServices.V1\xca\x02!Google\\Cloud\\FinancialServices\\V1\xea\x02$Google::Cloud::FinancialServices::V1b\x06proto3"
16
16
 
17
- pool = Google::Protobuf::DescriptorPool.generated_pool
18
-
19
- begin
20
- pool.add_serialized_file(descriptor_data)
21
- rescue TypeError
22
- # Compatibility code: will be removed in the next major version.
23
- require 'google/protobuf/descriptor_pb'
24
- parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
25
- parsed.clear_dependency
26
- serialized = parsed.class.encode(parsed)
27
- file = pool.add_serialized_file(serialized)
28
- warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
29
- imports = [
30
- ["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
31
- ["google.protobuf.FieldMask", "google/protobuf/field_mask.proto"],
32
- ["google.cloud.financialservices.v1.BigQueryDestination", "google/cloud/financialservices/v1/bigquery_destination.proto"],
33
- ]
34
- imports.each do |type_name, expected_filename|
35
- import_file = pool.lookup(type_name).file_descriptor
36
- if import_file.name != expected_filename
37
- warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
38
- end
39
- end
40
- warn "Each proto file must use a consistent fully-qualified name."
41
- warn "This will become an error in the next major version."
42
- end
17
+ pool = ::Google::Protobuf::DescriptorPool.generated_pool
18
+ pool.add_serialized_file(descriptor_data)
43
19
 
44
20
  module Google
45
21
  module Cloud
@@ -12,30 +12,8 @@ require 'google/protobuf/timestamp_pb'
12
12
 
13
13
  descriptor_data = "\n6google/cloud/financialservices/v1/engine_version.proto\x12!google.cloud.financialservices.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x38google/cloud/financialservices/v1/line_of_business.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xb7\x04\n\rEngineVersion\x12\x14\n\x04name\x18\x01 \x01(\tB\x06\xe0\x41\x03\xe0\x41\x08\x12J\n\x05state\x18\x02 \x01(\x0e\x32\x36.google.cloud.financialservices.v1.EngineVersion.StateB\x03\xe0\x41\x03\x12G\n\x1e\x65xpected_limitation_start_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x43\n\x1a\x65xpected_decommission_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12P\n\x10line_of_business\x18\x05 \x01(\x0e\x32\x31.google.cloud.financialservices.v1.LineOfBusinessB\x03\xe0\x41\x03\"K\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\n\n\x06\x41\x43TIVE\x10\x01\x12\x0b\n\x07LIMITED\x10\x02\x12\x12\n\x0e\x44\x45\x43OMMISSIONED\x10\x03:\x96\x01\xea\x41\x92\x01\n.financialservices.googleapis.com/EngineVersion\x12`projects/{project_num}/locations/{location}/instances/{instance}/engineVersions/{engine_version}\"\xbb\x01\n\x19ListEngineVersionsRequest\x12\x41\n\x06parent\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)financialservices.googleapis.com/Instance\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\x08order_by\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x95\x01\n\x1aListEngineVersionsResponse\x12I\n\x0f\x65ngine_versions\x18\x01 \x03(\x0b\x32\x30.google.cloud.financialservices.v1.EngineVersion\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"_\n\x17GetEngineVersionRequest\x12\x44\n\x04name\x18\x01 \x01(\tB6\xe0\x41\x02\xfa\x41\x30\n.financialservices.googleapis.com/EngineVersionB\x81\x02\n%com.google.cloud.financialservices.v1B\x12\x45ngineVersionProtoP\x01ZScloud.google.com/go/financialservices/apiv1/financialservicespb;financialservicespb\xaa\x02!Google.Cloud.FinancialServices.V1\xca\x02!Google\\Cloud\\FinancialServices\\V1\xea\x02$Google::Cloud::FinancialServices::V1b\x06proto3"
14
14
 
15
- pool = Google::Protobuf::DescriptorPool.generated_pool
16
-
17
- begin
18
- pool.add_serialized_file(descriptor_data)
19
- rescue TypeError
20
- # Compatibility code: will be removed in the next major version.
21
- require 'google/protobuf/descriptor_pb'
22
- parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
23
- parsed.clear_dependency
24
- serialized = parsed.class.encode(parsed)
25
- file = pool.add_serialized_file(serialized)
26
- warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
27
- imports = [
28
- ["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
29
- ]
30
- imports.each do |type_name, expected_filename|
31
- import_file = pool.lookup(type_name).file_descriptor
32
- if import_file.name != expected_filename
33
- warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
34
- end
35
- end
36
- warn "Each proto file must use a consistent fully-qualified name."
37
- warn "This will become an error in the next major version."
38
- end
15
+ pool = ::Google::Protobuf::DescriptorPool.generated_pool
16
+ pool.add_serialized_file(descriptor_data)
39
17
 
40
18
  module Google
41
19
  module Cloud
@@ -14,32 +14,8 @@ require 'google/protobuf/timestamp_pb'
14
14
 
15
15
  descriptor_data = "\n0google/cloud/financialservices/v1/instance.proto\x12!google.cloud.financialservices.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a<google/cloud/financialservices/v1/bigquery_destination.proto\x1a\x38google/cloud/financialservices/v1/line_of_business.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xa2\x04\n\x08Instance\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x45\n\x05state\x18\x04 \x01(\x0e\x32\x31.google.cloud.financialservices.v1.Instance.StateB\x03\xe0\x41\x03\x12G\n\x06labels\x18\x05 \x03(\x0b\x32\x37.google.cloud.financialservices.v1.Instance.LabelsEntry\x12\x14\n\x07kms_key\x18\x06 \x01(\tB\x03\xe0\x41\x02\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"T\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x43REATING\x10\x01\x12\n\n\x06\x41\x43TIVE\x10\x02\x12\x0c\n\x08UPDATING\x10\x03\x12\x0c\n\x08\x44\x45LETING\x10\x04:l\xea\x41i\n)financialservices.googleapis.com/Instance\x12<projects/{project}/locations/{location}/instances/{instance}\"\x9a\x01\n\x14ListInstancesRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x10\n\x08order_by\x18\x05 \x01(\t\"\x85\x01\n\x15ListInstancesResponse\x12>\n\tinstances\x18\x01 \x03(\x0b\x32+.google.cloud.financialservices.v1.Instance\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"U\n\x12GetInstanceRequest\x12?\n\x04name\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)financialservices.googleapis.com/Instance\"\xc9\x01\n\x15\x43reateInstanceRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x18\n\x0binstance_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x42\n\x08instance\x18\x03 \x01(\x0b\x32+.google.cloud.financialservices.v1.InstanceB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\xaa\x01\n\x15UpdateInstanceRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12\x42\n\x08instance\x18\x02 \x01(\x0b\x32+.google.cloud.financialservices.v1.InstanceB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"q\n\x15\x44\x65leteInstanceRequest\x12?\n\x04name\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)financialservices.googleapis.com/Instance\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\x8f\x03\n\x1eImportRegisteredPartiesRequest\x12?\n\x04name\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)financialservices.googleapis.com/Instance\x12\x19\n\x0cparty_tables\x18\x02 \x03(\tB\x03\xe0\x41\x01\x12_\n\x04mode\x18\x03 \x01(\x0e\x32L.google.cloud.financialservices.v1.ImportRegisteredPartiesRequest.UpdateModeB\x03\xe0\x41\x02\x12\x1a\n\rvalidate_only\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\x12P\n\x10line_of_business\x18\x05 \x01(\x0e\x32\x31.google.cloud.financialservices.v1.LineOfBusinessB\x03\xe0\x41\x02\"B\n\nUpdateMode\x12\x1b\n\x17UPDATE_MODE_UNSPECIFIED\x10\x00\x12\x0b\n\x07REPLACE\x10\x01\x12\n\n\x06\x41PPEND\x10\x02\"\xe4\x01\n\x1fImportRegisteredPartiesResponse\x12\x15\n\rparties_added\x18\x01 \x01(\x03\x12\x17\n\x0fparties_removed\x18\x02 \x01(\x03\x12\x15\n\rparties_total\x18\x03 \x01(\x03\x12 \n\x18parties_failed_to_remove\x18\x04 \x01(\x03\x12\x18\n\x10parties_uptiered\x18\x05 \x01(\x03\x12\x1a\n\x12parties_downtiered\x18\x06 \x01(\x03\x12\"\n\x1aparties_failed_to_downtier\x18\x07 \x01(\x03\"\x81\x02\n\x1e\x45xportRegisteredPartiesRequest\x12?\n\x04name\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)financialservices.googleapis.com/Instance\x12L\n\x07\x64\x61taset\x18\x02 \x01(\x0b\x32\x36.google.cloud.financialservices.v1.BigQueryDestinationB\x03\xe0\x41\x02\x12P\n\x10line_of_business\x18\x03 \x01(\x0e\x32\x31.google.cloud.financialservices.v1.LineOfBusinessB\x03\xe0\x41\x02\"!\n\x1f\x45xportRegisteredPartiesResponseB\xfc\x01\n%com.google.cloud.financialservices.v1B\rInstanceProtoP\x01ZScloud.google.com/go/financialservices/apiv1/financialservicespb;financialservicespb\xaa\x02!Google.Cloud.FinancialServices.V1\xca\x02!Google\\Cloud\\FinancialServices\\V1\xea\x02$Google::Cloud::FinancialServices::V1b\x06proto3"
16
16
 
17
- pool = Google::Protobuf::DescriptorPool.generated_pool
18
-
19
- begin
20
- pool.add_serialized_file(descriptor_data)
21
- rescue TypeError
22
- # Compatibility code: will be removed in the next major version.
23
- require 'google/protobuf/descriptor_pb'
24
- parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
25
- parsed.clear_dependency
26
- serialized = parsed.class.encode(parsed)
27
- file = pool.add_serialized_file(serialized)
28
- warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
29
- imports = [
30
- ["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
31
- ["google.protobuf.FieldMask", "google/protobuf/field_mask.proto"],
32
- ["google.cloud.financialservices.v1.BigQueryDestination", "google/cloud/financialservices/v1/bigquery_destination.proto"],
33
- ]
34
- imports.each do |type_name, expected_filename|
35
- import_file = pool.lookup(type_name).file_descriptor
36
- if import_file.name != expected_filename
37
- warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
38
- end
39
- end
40
- warn "Each proto file must use a consistent fully-qualified name."
41
- warn "This will become an error in the next major version."
42
- end
17
+ pool = ::Google::Protobuf::DescriptorPool.generated_pool
18
+ pool.add_serialized_file(descriptor_data)
43
19
 
44
20
  module Google
45
21
  module Cloud
@@ -7,29 +7,8 @@ require 'google/protobuf'
7
7
 
8
8
  descriptor_data = "\n8google/cloud/financialservices/v1/line_of_business.proto\x12!google.cloud.financialservices.v1*N\n\x0eLineOfBusiness\x12 \n\x1cLINE_OF_BUSINESS_UNSPECIFIED\x10\x00\x12\x0e\n\nCOMMERCIAL\x10\x01\x12\n\n\x06RETAIL\x10\x02\x42\x82\x02\n%com.google.cloud.financialservices.v1B\x13LineOfBusinessProtoP\x01ZScloud.google.com/go/financialservices/apiv1/financialservicespb;financialservicespb\xaa\x02!Google.Cloud.FinancialServices.V1\xca\x02!Google\\Cloud\\FinancialServices\\V1\xea\x02$Google::Cloud::FinancialServices::V1b\x06proto3"
9
9
 
10
- pool = Google::Protobuf::DescriptorPool.generated_pool
11
-
12
- begin
13
- pool.add_serialized_file(descriptor_data)
14
- rescue TypeError
15
- # Compatibility code: will be removed in the next major version.
16
- require 'google/protobuf/descriptor_pb'
17
- parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
18
- parsed.clear_dependency
19
- serialized = parsed.class.encode(parsed)
20
- file = pool.add_serialized_file(serialized)
21
- warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
22
- imports = [
23
- ]
24
- imports.each do |type_name, expected_filename|
25
- import_file = pool.lookup(type_name).file_descriptor
26
- if import_file.name != expected_filename
27
- warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
28
- end
29
- end
30
- warn "Each proto file must use a consistent fully-qualified name."
31
- warn "This will become an error in the next major version."
32
- end
10
+ pool = ::Google::Protobuf::DescriptorPool.generated_pool
11
+ pool.add_serialized_file(descriptor_data)
33
12
 
34
13
  module Google
35
14
  module Cloud
@@ -14,32 +14,8 @@ require 'google/protobuf/timestamp_pb'
14
14
 
15
15
  descriptor_data = "\n-google/cloud/financialservices/v1/model.proto\x12!google.cloud.financialservices.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a<google/cloud/financialservices/v1/bigquery_destination.proto\x1a\x38google/cloud/financialservices/v1/line_of_business.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x81\x07\n\x05Model\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x44\n\x06labels\x18\x04 \x03(\x0b\x32\x34.google.cloud.financialservices.v1.Model.LabelsEntry\x12\x42\n\x05state\x18\x05 \x01(\x0e\x32..google.cloud.financialservices.v1.Model.StateB\x03\xe0\x41\x03\x12N\n\x0e\x65ngine_version\x18\x06 \x01(\tB6\xe0\x41\x03\xfa\x41\x30\n.financialservices.googleapis.com/EngineVersion\x12L\n\rengine_config\x18\x07 \x01(\tB5\xe0\x41\x02\xfa\x41/\n-financialservices.googleapis.com/EngineConfig\x12I\n\x0fprimary_dataset\x18\x08 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(financialservices.googleapis.com/Dataset\x12\x31\n\x08\x65nd_time\x18\n \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x02\x12P\n\x10line_of_business\x18\x0c \x01(\x0e\x32\x31.google.cloud.financialservices.v1.LineOfBusinessB\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\"T\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x43REATING\x10\x01\x12\n\n\x06\x41\x43TIVE\x10\x02\x12\x0c\n\x08UPDATING\x10\x03\x12\x0c\n\x08\x44\x45LETING\x10\x04:|\xea\x41y\n&financialservices.googleapis.com/Model\x12Oprojects/{project_num}/locations/{location}/instances/{instance}/models/{model}\"\x9f\x01\n\x11ListModelsRequest\x12\x41\n\x06parent\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)financialservices.googleapis.com/Instance\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x10\n\x08order_by\x18\x05 \x01(\t\"|\n\x12ListModelsResponse\x12\x38\n\x06models\x18\x01 \x03(\x0b\x32(.google.cloud.financialservices.v1.Model\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"O\n\x0fGetModelRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&financialservices.googleapis.com/Model\"\xc5\x01\n\x12\x43reateModelRequest\x12\x41\n\x06parent\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)financialservices.googleapis.com/Instance\x12\x15\n\x08model_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12<\n\x05model\x18\x03 \x01(\x0b\x32(.google.cloud.financialservices.v1.ModelB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\xa1\x01\n\x12UpdateModelRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12<\n\x05model\x18\x02 \x01(\x0b\x32(.google.cloud.financialservices.v1.ModelB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"k\n\x12\x44\x65leteModelRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&financialservices.googleapis.com/Model\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\xc1\x01\n\x1a\x45xportModelMetadataRequest\x12=\n\x05model\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&financialservices.googleapis.com/Model\x12\x64\n\x1fstructured_metadata_destination\x18\x02 \x01(\x0b\x32\x36.google.cloud.financialservices.v1.BigQueryDestinationB\x03\xe0\x41\x02\"\x1d\n\x1b\x45xportModelMetadataResponseB\xf9\x01\n%com.google.cloud.financialservices.v1B\nModelProtoP\x01ZScloud.google.com/go/financialservices/apiv1/financialservicespb;financialservicespb\xaa\x02!Google.Cloud.FinancialServices.V1\xca\x02!Google\\Cloud\\FinancialServices\\V1\xea\x02$Google::Cloud::FinancialServices::V1b\x06proto3"
16
16
 
17
- pool = Google::Protobuf::DescriptorPool.generated_pool
18
-
19
- begin
20
- pool.add_serialized_file(descriptor_data)
21
- rescue TypeError
22
- # Compatibility code: will be removed in the next major version.
23
- require 'google/protobuf/descriptor_pb'
24
- parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
25
- parsed.clear_dependency
26
- serialized = parsed.class.encode(parsed)
27
- file = pool.add_serialized_file(serialized)
28
- warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
29
- imports = [
30
- ["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
31
- ["google.protobuf.FieldMask", "google/protobuf/field_mask.proto"],
32
- ["google.cloud.financialservices.v1.BigQueryDestination", "google/cloud/financialservices/v1/bigquery_destination.proto"],
33
- ]
34
- imports.each do |type_name, expected_filename|
35
- import_file = pool.lookup(type_name).file_descriptor
36
- if import_file.name != expected_filename
37
- warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
38
- end
39
- end
40
- warn "Each proto file must use a consistent fully-qualified name."
41
- warn "This will become an error in the next major version."
42
- end
17
+ pool = ::Google::Protobuf::DescriptorPool.generated_pool
18
+ pool.add_serialized_file(descriptor_data)
43
19
 
44
20
  module Google
45
21
  module Cloud
@@ -14,32 +14,8 @@ require 'google/protobuf/timestamp_pb'
14
14
 
15
15
  descriptor_data = "\n9google/cloud/financialservices/v1/prediction_result.proto\x12!google.cloud.financialservices.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a<google/cloud/financialservices/v1/bigquery_destination.proto\x1a\x38google/cloud/financialservices/v1/line_of_business.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x93\t\n\x10PredictionResult\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x06labels\x18\x04 \x03(\x0b\x32?.google.cloud.financialservices.v1.PredictionResult.LabelsEntry\x12M\n\x05state\x18\x05 \x01(\x0e\x32\x39.google.cloud.financialservices.v1.PredictionResult.StateB\x03\xe0\x41\x03\x12\x41\n\x07\x64\x61taset\x18\x06 \x01(\tB0\xe0\x41\x02\xfa\x41*\n(financialservices.googleapis.com/Dataset\x12=\n\x05model\x18\x07 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&financialservices.googleapis.com/Model\x12\x31\n\x08\x65nd_time\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x02\x12\x1a\n\x12prediction_periods\x18\n \x01(\x05\x12Q\n\x07outputs\x18\x0b \x01(\x0b\x32;.google.cloud.financialservices.v1.PredictionResult.OutputsB\x03\xe0\x41\x02\x12P\n\x10line_of_business\x18\x0c \x01(\x0e\x32\x31.google.cloud.financialservices.v1.LineOfBusinessB\x03\xe0\x41\x03\x1a\xc2\x01\n\x07Outputs\x12[\n\x16prediction_destination\x18\x01 \x01(\x0b\x32\x36.google.cloud.financialservices.v1.BigQueryDestinationB\x03\xe0\x41\x02\x12Z\n\x1a\x65xplainability_destination\x18\x02 \x01(\x0b\x32\x36.google.cloud.financialservices.v1.BigQueryDestination\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"T\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x43REATING\x10\x01\x12\n\n\x06\x41\x43TIVE\x10\x02\x12\x0c\n\x08UPDATING\x10\x03\x12\x0c\n\x08\x44\x45LETING\x10\x04:\x9f\x01\xea\x41\x9b\x01\n1financialservices.googleapis.com/PredictionResult\x12\x66projects/{project_num}/locations/{location}/instances/{instance}/predictionResults/{prediction_result}\"\xaa\x01\n\x1cListPredictionResultsRequest\x12\x41\n\x06parent\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)financialservices.googleapis.com/Instance\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x10\n\x08order_by\x18\x05 \x01(\t\"\x9e\x01\n\x1dListPredictionResultsResponse\x12O\n\x12prediction_results\x18\x01 \x03(\x0b\x32\x33.google.cloud.financialservices.v1.PredictionResult\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"e\n\x1aGetPredictionResultRequest\x12G\n\x04name\x18\x01 \x01(\tB9\xe0\x41\x02\xfa\x41\x33\n1financialservices.googleapis.com/PredictionResult\"\xf3\x01\n\x1d\x43reatePredictionResultRequest\x12\x41\n\x06parent\x18\x01 \x01(\tB1\xe0\x41\x02\xfa\x41+\n)financialservices.googleapis.com/Instance\x12!\n\x14prediction_result_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12S\n\x11prediction_result\x18\x03 \x01(\x0b\x32\x33.google.cloud.financialservices.v1.PredictionResultB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\xc3\x01\n\x1dUpdatePredictionResultRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12S\n\x11prediction_result\x18\x02 \x01(\x0b\x32\x33.google.cloud.financialservices.v1.PredictionResultB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\x81\x01\n\x1d\x44\x65letePredictionResultRequest\x12G\n\x04name\x18\x01 \x01(\tB9\xe0\x41\x02\xfa\x41\x33\n1financialservices.googleapis.com/PredictionResult\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\xe3\x01\n%ExportPredictionResultMetadataRequest\x12T\n\x11prediction_result\x18\x01 \x01(\tB9\xe0\x41\x02\xfa\x41\x33\n1financialservices.googleapis.com/PredictionResult\x12\x64\n\x1fstructured_metadata_destination\x18\x02 \x01(\x0b\x32\x36.google.cloud.financialservices.v1.BigQueryDestinationB\x03\xe0\x41\x02\"(\n&ExportPredictionResultMetadataResponseB\x84\x02\n%com.google.cloud.financialservices.v1B\x15PredictionResultProtoP\x01ZScloud.google.com/go/financialservices/apiv1/financialservicespb;financialservicespb\xaa\x02!Google.Cloud.FinancialServices.V1\xca\x02!Google\\Cloud\\FinancialServices\\V1\xea\x02$Google::Cloud::FinancialServices::V1b\x06proto3"
16
16
 
17
- pool = Google::Protobuf::DescriptorPool.generated_pool
18
-
19
- begin
20
- pool.add_serialized_file(descriptor_data)
21
- rescue TypeError
22
- # Compatibility code: will be removed in the next major version.
23
- require 'google/protobuf/descriptor_pb'
24
- parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
25
- parsed.clear_dependency
26
- serialized = parsed.class.encode(parsed)
27
- file = pool.add_serialized_file(serialized)
28
- warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
29
- imports = [
30
- ["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
31
- ["google.cloud.financialservices.v1.BigQueryDestination", "google/cloud/financialservices/v1/bigquery_destination.proto"],
32
- ["google.protobuf.FieldMask", "google/protobuf/field_mask.proto"],
33
- ]
34
- imports.each do |type_name, expected_filename|
35
- import_file = pool.lookup(type_name).file_descriptor
36
- if import_file.name != expected_filename
37
- warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
38
- end
39
- end
40
- warn "Each proto file must use a consistent fully-qualified name."
41
- warn "This will become an error in the next major version."
42
- end
17
+ pool = ::Google::Protobuf::DescriptorPool.generated_pool
18
+ pool.add_serialized_file(descriptor_data)
43
19
 
44
20
  module Google
45
21
  module Cloud
@@ -21,30 +21,8 @@ require 'google/protobuf/timestamp_pb'
21
21
 
22
22
  descriptor_data = "\n/google/cloud/financialservices/v1/service.proto\x12!google.cloud.financialservices.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x37google/cloud/financialservices/v1/backtest_result.proto\x1a/google/cloud/financialservices/v1/dataset.proto\x1a\x35google/cloud/financialservices/v1/engine_config.proto\x1a\x36google/cloud/financialservices/v1/engine_version.proto\x1a\x30google/cloud/financialservices/v1/instance.proto\x1a-google/cloud/financialservices/v1/model.proto\x1a\x39google/cloud/financialservices/v1/prediction_result.proto\x1a#google/longrunning/operations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x80\x02\n\x11OperationMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x13\n\x06target\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x11\n\x04verb\x18\x04 \x01(\tB\x03\xe0\x41\x03\x12\x1b\n\x0estatus_message\x18\x05 \x01(\tB\x03\xe0\x41\x03\x12#\n\x16requested_cancellation\x18\x06 \x01(\x08\x42\x03\xe0\x41\x03\x12\x18\n\x0b\x61pi_version\x18\x07 \x01(\tB\x03\xe0\x41\x03\x32\xb0J\n\x03\x41ML\x12\xc2\x01\n\rListInstances\x12\x37.google.cloud.financialservices.v1.ListInstancesRequest\x1a\x38.google.cloud.financialservices.v1.ListInstancesResponse\">\xda\x41\x06parent\x82\xd3\xe4\x93\x02/\x12-/v1/{parent=projects/*/locations/*}/instances\x12\xaf\x01\n\x0bGetInstance\x12\x35.google.cloud.financialservices.v1.GetInstanceRequest\x1a+.google.cloud.financialservices.v1.Instance\"<\xda\x41\x04name\x82\xd3\xe4\x93\x02/\x12-/v1/{name=projects/*/locations/*/instances/*}\x12\xe8\x01\n\x0e\x43reateInstance\x12\x38.google.cloud.financialservices.v1.CreateInstanceRequest\x1a\x1d.google.longrunning.Operation\"}\xca\x41\x1d\n\x08Instance\x12\x11OperationMetadata\xda\x41\x1bparent,instance,instance_id\x82\xd3\xe4\x93\x02\x39\"-/v1/{parent=projects/*/locations/*}/instances:\x08instance\x12\xea\x01\n\x0eUpdateInstance\x12\x38.google.cloud.financialservices.v1.UpdateInstanceRequest\x1a\x1d.google.longrunning.Operation\"\x7f\xca\x41\x1d\n\x08Instance\x12\x11OperationMetadata\xda\x41\x14instance,update_mask\x82\xd3\xe4\x93\x02\x42\x32\x36/v1/{instance.name=projects/*/locations/*/instances/*}:\x08instance\x12\xd4\x01\n\x0e\x44\x65leteInstance\x12\x38.google.cloud.financialservices.v1.DeleteInstanceRequest\x1a\x1d.google.longrunning.Operation\"i\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02/*-/v1/{name=projects/*/locations/*/instances/*}\x12\xaf\x02\n\x17ImportRegisteredParties\x12\x41.google.cloud.financialservices.v1.ImportRegisteredPartiesRequest\x1a\x1d.google.longrunning.Operation\"\xb1\x01\xca\x41\x34\n\x1fImportRegisteredPartiesResponse\x12\x11OperationMetadata\xda\x41\'name,mode,line_of_business,party_tables\x82\xd3\xe4\x93\x02J\"E/v1/{name=projects/*/locations/*/instances/*}:importRegisteredParties:\x01*\x12\xa5\x02\n\x17\x45xportRegisteredParties\x12\x41.google.cloud.financialservices.v1.ExportRegisteredPartiesRequest\x1a\x1d.google.longrunning.Operation\"\xa7\x01\xca\x41\x34\n\x1f\x45xportRegisteredPartiesResponse\x12\x11OperationMetadata\xda\x41\x1dname,dataset,line_of_business\x82\xd3\xe4\x93\x02J\"E/v1/{name=projects/*/locations/*/instances/*}:exportRegisteredParties:\x01*\x12\xca\x01\n\x0cListDatasets\x12\x36.google.cloud.financialservices.v1.ListDatasetsRequest\x1a\x37.google.cloud.financialservices.v1.ListDatasetsResponse\"I\xda\x41\x06parent\x82\xd3\xe4\x93\x02:\x12\x38/v1/{parent=projects/*/locations/*/instances/*}/datasets\x12\xb7\x01\n\nGetDataset\x12\x34.google.cloud.financialservices.v1.GetDatasetRequest\x1a*.google.cloud.financialservices.v1.Dataset\"G\xda\x41\x04name\x82\xd3\xe4\x93\x02:\x12\x38/v1/{name=projects/*/locations/*/instances/*/datasets/*}\x12\xee\x01\n\rCreateDataset\x12\x37.google.cloud.financialservices.v1.CreateDatasetRequest\x1a\x1d.google.longrunning.Operation\"\x84\x01\xca\x41\x1c\n\x07\x44\x61taset\x12\x11OperationMetadata\xda\x41\x19parent,dataset,dataset_id\x82\xd3\xe4\x93\x02\x43\"8/v1/{parent=projects/*/locations/*/instances/*}/datasets:\x07\x64\x61taset\x12\xf0\x01\n\rUpdateDataset\x12\x37.google.cloud.financialservices.v1.UpdateDatasetRequest\x1a\x1d.google.longrunning.Operation\"\x86\x01\xca\x41\x1c\n\x07\x44\x61taset\x12\x11OperationMetadata\xda\x41\x13\x64\x61taset,update_mask\x82\xd3\xe4\x93\x02K2@/v1/{dataset.name=projects/*/locations/*/instances/*/datasets/*}:\x07\x64\x61taset\x12\xdd\x01\n\rDeleteDataset\x12\x37.google.cloud.financialservices.v1.DeleteDatasetRequest\x1a\x1d.google.longrunning.Operation\"t\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02:*8/v1/{name=projects/*/locations/*/instances/*/datasets/*}\x12\xc2\x01\n\nListModels\x12\x34.google.cloud.financialservices.v1.ListModelsRequest\x1a\x35.google.cloud.financialservices.v1.ListModelsResponse\"G\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x38\x12\x36/v1/{parent=projects/*/locations/*/instances/*}/models\x12\xaf\x01\n\x08GetModel\x12\x32.google.cloud.financialservices.v1.GetModelRequest\x1a(.google.cloud.financialservices.v1.Model\"E\xda\x41\x04name\x82\xd3\xe4\x93\x02\x38\x12\x36/v1/{name=projects/*/locations/*/instances/*/models/*}\x12\xdf\x01\n\x0b\x43reateModel\x12\x35.google.cloud.financialservices.v1.CreateModelRequest\x1a\x1d.google.longrunning.Operation\"z\xca\x41\x1a\n\x05Model\x12\x11OperationMetadata\xda\x41\x15parent,model,model_id\x82\xd3\xe4\x93\x02?\"6/v1/{parent=projects/*/locations/*/instances/*}/models:\x05model\x12\xe1\x01\n\x0bUpdateModel\x12\x35.google.cloud.financialservices.v1.UpdateModelRequest\x1a\x1d.google.longrunning.Operation\"|\xca\x41\x1a\n\x05Model\x12\x11OperationMetadata\xda\x41\x11model,update_mask\x82\xd3\xe4\x93\x02\x45\x32</v1/{model.name=projects/*/locations/*/instances/*/models/*}:\x05model\x12\xa2\x02\n\x13\x45xportModelMetadata\x12=.google.cloud.financialservices.v1.ExportModelMetadataRequest\x1a\x1d.google.longrunning.Operation\"\xac\x01\xca\x41\x30\n\x1b\x45xportModelMetadataResponse\x12\x11OperationMetadata\xda\x41%model,structured_metadata_destination\x82\xd3\xe4\x93\x02K\"F/v1/{model=projects/*/locations/*/instances/*/models/*}:exportMetadata:\x01*\x12\xd7\x01\n\x0b\x44\x65leteModel\x12\x35.google.cloud.financialservices.v1.DeleteModelRequest\x1a\x1d.google.longrunning.Operation\"r\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x38*6/v1/{name=projects/*/locations/*/instances/*/models/*}\x12\xde\x01\n\x11ListEngineConfigs\x12;.google.cloud.financialservices.v1.ListEngineConfigsRequest\x1a<.google.cloud.financialservices.v1.ListEngineConfigsResponse\"N\xda\x41\x06parent\x82\xd3\xe4\x93\x02?\x12=/v1/{parent=projects/*/locations/*/instances/*}/engineConfigs\x12\xcb\x01\n\x0fGetEngineConfig\x12\x39.google.cloud.financialservices.v1.GetEngineConfigRequest\x1a/.google.cloud.financialservices.v1.EngineConfig\"L\xda\x41\x04name\x82\xd3\xe4\x93\x02?\x12=/v1/{name=projects/*/locations/*/instances/*/engineConfigs/*}\x12\x94\x02\n\x12\x43reateEngineConfig\x12<.google.cloud.financialservices.v1.CreateEngineConfigRequest\x1a\x1d.google.longrunning.Operation\"\xa0\x01\xca\x41!\n\x0c\x45ngineConfig\x12\x11OperationMetadata\xda\x41%parent,engine_config,engine_config_id\x82\xd3\xe4\x93\x02N\"=/v1/{parent=projects/*/locations/*/instances/*}/engineConfigs:\rengine_config\x12\x96\x02\n\x12UpdateEngineConfig\x12<.google.cloud.financialservices.v1.UpdateEngineConfigRequest\x1a\x1d.google.longrunning.Operation\"\xa2\x01\xca\x41!\n\x0c\x45ngineConfig\x12\x11OperationMetadata\xda\x41\x19\x65ngine_config,update_mask\x82\xd3\xe4\x93\x02\\2K/v1/{engine_config.name=projects/*/locations/*/instances/*/engineConfigs/*}:\rengine_config\x12\xce\x02\n\x1a\x45xportEngineConfigMetadata\x12\x44.google.cloud.financialservices.v1.ExportEngineConfigMetadataRequest\x1a\x1d.google.longrunning.Operation\"\xca\x01\xca\x41\x37\n\"ExportEngineConfigMetadataResponse\x12\x11OperationMetadata\xda\x41-engine_config,structured_metadata_destination\x82\xd3\xe4\x93\x02Z\"U/v1/{engine_config=projects/*/locations/*/instances/*/engineConfigs/*}:exportMetadata:\x01*\x12\xec\x01\n\x12\x44\x65leteEngineConfig\x12<.google.cloud.financialservices.v1.DeleteEngineConfigRequest\x1a\x1d.google.longrunning.Operation\"y\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02?*=/v1/{name=projects/*/locations/*/instances/*/engineConfigs/*}\x12\xcf\x01\n\x10GetEngineVersion\x12:.google.cloud.financialservices.v1.GetEngineVersionRequest\x1a\x30.google.cloud.financialservices.v1.EngineVersion\"M\xda\x41\x04name\x82\xd3\xe4\x93\x02@\x12>/v1/{name=projects/*/locations/*/instances/*/engineVersions/*}\x12\xe2\x01\n\x12ListEngineVersions\x12<.google.cloud.financialservices.v1.ListEngineVersionsRequest\x1a=.google.cloud.financialservices.v1.ListEngineVersionsResponse\"O\xda\x41\x06parent\x82\xd3\xe4\x93\x02@\x12>/v1/{parent=projects/*/locations/*/instances/*}/engineVersions\x12\xee\x01\n\x15ListPredictionResults\x12?.google.cloud.financialservices.v1.ListPredictionResultsRequest\x1a@.google.cloud.financialservices.v1.ListPredictionResultsResponse\"R\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x43\x12\x41/v1/{parent=projects/*/locations/*/instances/*}/predictionResults\x12\xdb\x01\n\x13GetPredictionResult\x12=.google.cloud.financialservices.v1.GetPredictionResultRequest\x1a\x33.google.cloud.financialservices.v1.PredictionResult\"P\xda\x41\x04name\x82\xd3\xe4\x93\x02\x43\x12\x41/v1/{name=projects/*/locations/*/instances/*/predictionResults/*}\x12\xb0\x02\n\x16\x43reatePredictionResult\x12@.google.cloud.financialservices.v1.CreatePredictionResultRequest\x1a\x1d.google.longrunning.Operation\"\xb4\x01\xca\x41%\n\x10PredictionResult\x12\x11OperationMetadata\xda\x41-parent,prediction_result,prediction_result_id\x82\xd3\xe4\x93\x02V\"A/v1/{parent=projects/*/locations/*/instances/*}/predictionResults:\x11prediction_result\x12\xb2\x02\n\x16UpdatePredictionResult\x12@.google.cloud.financialservices.v1.UpdatePredictionResultRequest\x1a\x1d.google.longrunning.Operation\"\xb6\x01\xca\x41%\n\x10PredictionResult\x12\x11OperationMetadata\xda\x41\x1dprediction_result,update_mask\x82\xd3\xe4\x93\x02h2S/v1/{prediction_result.name=projects/*/locations/*/instances/*/predictionResults/*}:\x11prediction_result\x12\xe6\x02\n\x1e\x45xportPredictionResultMetadata\x12H.google.cloud.financialservices.v1.ExportPredictionResultMetadataRequest\x1a\x1d.google.longrunning.Operation\"\xda\x01\xca\x41;\n&ExportPredictionResultMetadataResponse\x12\x11OperationMetadata\xda\x41\x31prediction_result,structured_metadata_destination\x82\xd3\xe4\x93\x02\x62\"]/v1/{prediction_result=projects/*/locations/*/instances/*/predictionResults/*}:exportMetadata:\x01*\x12\xf8\x01\n\x16\x44\x65letePredictionResult\x12@.google.cloud.financialservices.v1.DeletePredictionResultRequest\x1a\x1d.google.longrunning.Operation\"}\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x43*A/v1/{name=projects/*/locations/*/instances/*/predictionResults/*}\x12\xe6\x01\n\x13ListBacktestResults\x12=.google.cloud.financialservices.v1.ListBacktestResultsRequest\x1a>.google.cloud.financialservices.v1.ListBacktestResultsResponse\"P\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x41\x12?/v1/{parent=projects/*/locations/*/instances/*}/backtestResults\x12\xd3\x01\n\x11GetBacktestResult\x12;.google.cloud.financialservices.v1.GetBacktestResultRequest\x1a\x31.google.cloud.financialservices.v1.BacktestResult\"N\xda\x41\x04name\x82\xd3\xe4\x93\x02\x41\x12?/v1/{name=projects/*/locations/*/instances/*/backtestResults/*}\x12\xa2\x02\n\x14\x43reateBacktestResult\x12>.google.cloud.financialservices.v1.CreateBacktestResultRequest\x1a\x1d.google.longrunning.Operation\"\xaa\x01\xca\x41#\n\x0e\x42\x61\x63ktestResult\x12\x11OperationMetadata\xda\x41)parent,backtest_result,backtest_result_id\x82\xd3\xe4\x93\x02R\"?/v1/{parent=projects/*/locations/*/instances/*}/backtestResults:\x0f\x62\x61\x63ktest_result\x12\xa4\x02\n\x14UpdateBacktestResult\x12>.google.cloud.financialservices.v1.UpdateBacktestResultRequest\x1a\x1d.google.longrunning.Operation\"\xac\x01\xca\x41#\n\x0e\x42\x61\x63ktestResult\x12\x11OperationMetadata\xda\x41\x1b\x62\x61\x63ktest_result,update_mask\x82\xd3\xe4\x93\x02\x62\x32O/v1/{backtest_result.name=projects/*/locations/*/instances/*/backtestResults/*}:\x0f\x62\x61\x63ktest_result\x12\xda\x02\n\x1c\x45xportBacktestResultMetadata\x12\x46.google.cloud.financialservices.v1.ExportBacktestResultMetadataRequest\x1a\x1d.google.longrunning.Operation\"\xd2\x01\xca\x41\x39\n$ExportBacktestResultMetadataResponse\x12\x11OperationMetadata\xda\x41/backtest_result,structured_metadata_destination\x82\xd3\xe4\x93\x02^\"Y/v1/{backtest_result=projects/*/locations/*/instances/*/backtestResults/*}:exportMetadata:\x01*\x12\xf2\x01\n\x14\x44\x65leteBacktestResult\x12>.google.cloud.financialservices.v1.DeleteBacktestResultRequest\x1a\x1d.google.longrunning.Operation\"{\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x41*?/v1/{name=projects/*/locations/*/instances/*/backtestResults/*}\x1aT\xca\x41 financialservices.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\xfb\x01\n%com.google.cloud.financialservices.v1B\x0cServiceProtoP\x01ZScloud.google.com/go/financialservices/apiv1/financialservicespb;financialservicespb\xaa\x02!Google.Cloud.FinancialServices.V1\xca\x02!Google\\Cloud\\FinancialServices\\V1\xea\x02$Google::Cloud::FinancialServices::V1b\x06proto3"
23
23
 
24
- pool = Google::Protobuf::DescriptorPool.generated_pool
25
-
26
- begin
27
- pool.add_serialized_file(descriptor_data)
28
- rescue TypeError
29
- # Compatibility code: will be removed in the next major version.
30
- require 'google/protobuf/descriptor_pb'
31
- parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
32
- parsed.clear_dependency
33
- serialized = parsed.class.encode(parsed)
34
- file = pool.add_serialized_file(serialized)
35
- warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
36
- imports = [
37
- ["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
38
- ]
39
- imports.each do |type_name, expected_filename|
40
- import_file = pool.lookup(type_name).file_descriptor
41
- if import_file.name != expected_filename
42
- warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
43
- end
44
- end
45
- warn "Each proto file must use a consistent fully-qualified name."
46
- warn "This will become an error in the next major version."
47
- end
24
+ pool = ::Google::Protobuf::DescriptorPool.generated_pool
25
+ pool.add_serialized_file(descriptor_data)
48
26
 
49
27
  module Google
50
28
  module Cloud
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-financial_services-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -125,7 +125,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
125
125
  requirements:
126
126
  - - ">="
127
127
  - !ruby/object:Gem::Version
128
- version: '3.1'
128
+ version: '3.2'
129
129
  required_rubygems_version: !ruby/object:Gem::Requirement
130
130
  requirements:
131
131
  - - ">="