google-cloud-ai_platform-v1 0.6.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 33122ce134f6fdcae158671f6030f39f7567eb86be57eef50c88d0cf4bf74d64
4
- data.tar.gz: bbfe65c9d208a9932e59382e3ee8f65149e169b77bb3c173da01b442ceaf4223
3
+ metadata.gz: 994af4af80fb61c03bcf54b6a3ee61c8ad651d4bec8c586a7cb1d3bf8a7ac99a
4
+ data.tar.gz: 5f52efad863eff211772e60cfecf4d74c51a100239dd389abe2e5266bae998ca
5
5
  SHA512:
6
- metadata.gz: '0940e2486fc3105ed162a34bda592621e50c65cdeda3ffd0b3c9f34cc69b494520cb17d5db074ed361253add3a7cacc97f147d5facfc807d2c8fb54ecfd8ce77'
7
- data.tar.gz: ddf2dc740944eecac604d25dd1ae650212f21b7ffe59ffe4fd012f05beb9541d36be3521c0d708813268a67766ca05bf032d2057505c03dfd5e42d985a3a35fd
6
+ metadata.gz: 0fcb7d8af3b66b17d0ff366439b7c1920d038ac66d75592841925ca84cdebbf4711aec4997621cf64798a57316f63a4243e54fb4a09a21b25bc1e156d1460f65
7
+ data.tar.gz: d6440bd65e07dc7fb7402440e435f1b56acec44b81dd034d6f590865dfa5a7c924933158f3b3451d8e0fef3619911c0f539a43597c897b32608a52036e2fc920
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module AIPlatform
23
23
  module V1
24
- VERSION = "0.6.0"
24
+ VERSION = "0.7.0"
25
25
  end
26
26
  end
27
27
  end
@@ -27,10 +27,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
27
27
  add_message "google.cloud.aiplatform.v1.ModelMonitoringObjectiveConfig.TrainingPredictionSkewDetectionConfig" do
28
28
  map :skew_thresholds, :string, :message, 1, "google.cloud.aiplatform.v1.ThresholdConfig"
29
29
  map :attribution_score_skew_thresholds, :string, :message, 2, "google.cloud.aiplatform.v1.ThresholdConfig"
30
+ optional :default_skew_threshold, :message, 6, "google.cloud.aiplatform.v1.ThresholdConfig"
30
31
  end
31
32
  add_message "google.cloud.aiplatform.v1.ModelMonitoringObjectiveConfig.PredictionDriftDetectionConfig" do
32
33
  map :drift_thresholds, :string, :message, 1, "google.cloud.aiplatform.v1.ThresholdConfig"
33
34
  map :attribution_score_drift_thresholds, :string, :message, 2, "google.cloud.aiplatform.v1.ThresholdConfig"
35
+ optional :default_drift_threshold, :message, 5, "google.cloud.aiplatform.v1.ThresholdConfig"
34
36
  end
35
37
  add_message "google.cloud.aiplatform.v1.ModelMonitoringObjectiveConfig.ExplanationConfig" do
36
38
  optional :enable_feature_attributes, :bool, 1
@@ -28,6 +28,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
28
28
  end
29
29
  add_message "google.cloud.aiplatform.v1.UploadModelResponse" do
30
30
  optional :model, :string, 1
31
+ optional :model_version_id, :string, 2
31
32
  end
32
33
  add_message "google.cloud.aiplatform.v1.GetModelRequest" do
33
34
  optional :name, :string, 1
@@ -91,6 +91,11 @@ module Google
91
91
  # Key is the feature name and value is the threshold. The threshold here is
92
92
  # against attribution score distance between the training and prediction
93
93
  # feature.
94
+ # @!attribute [rw] default_skew_threshold
95
+ # @return [::Google::Cloud::AIPlatform::V1::ThresholdConfig]
96
+ # Skew anomaly detection threshold used by all features.
97
+ # When the per-feature thresholds are not set, this field can be used to
98
+ # specify a threshold for all features.
94
99
  class TrainingPredictionSkewDetectionConfig
95
100
  include ::Google::Protobuf::MessageExts
96
101
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -125,6 +130,11 @@ module Google
125
130
  # @return [::Google::Protobuf::Map{::String => ::Google::Cloud::AIPlatform::V1::ThresholdConfig}]
126
131
  # Key is the feature name and value is the threshold. The threshold here is
127
132
  # against attribution score distance between different time windows.
133
+ # @!attribute [rw] default_drift_threshold
134
+ # @return [::Google::Cloud::AIPlatform::V1::ThresholdConfig]
135
+ # Drift anomaly detection threshold used by all features.
136
+ # When the per-feature thresholds are not set, this field can be used to
137
+ # specify a threshold for all features.
128
138
  class PredictionDriftDetectionConfig
129
139
  include ::Google::Protobuf::MessageExts
130
140
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -59,6 +59,9 @@ module Google
59
59
  # @return [::String]
60
60
  # The name of the uploaded Model resource.
61
61
  # Format: `projects/{project}/locations/{location}/models/{model}`
62
+ # @!attribute [r] model_version_id
63
+ # @return [::String]
64
+ # Output only. The version ID of the model that is uploaded.
62
65
  class UploadModelResponse
63
66
  include ::Google::Protobuf::MessageExts
64
67
  extend ::Google::Protobuf::MessageExts::ClassMethods
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-ai_platform-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-15 00:00:00.000000000 Z
11
+ date: 2022-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common