Skip to content

Commit d158bfb

Browse files
feat: add point_of_contact to Feature message (#5064)
* feat: Add RayMetricSpec to persistent resource PiperOrigin-RevId: 609073560 Source-Link: googleapis/googleapis@5d1dd8e Source-Link: googleapis/googleapis-gen@d3d953e Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWFpcGxhdGZvcm0vLk93bEJvdC55YW1sIiwiaCI6ImQzZDk1M2VmMjhlOTgzOTczM2QwZWY5NWU4OTZlNzE4MTc4NDA0OTUifQ== * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * feat: add point_of_contact to feature PiperOrigin-RevId: 609124793 Source-Link: googleapis/googleapis@d93e5e1 Source-Link: googleapis/googleapis-gen@70bc2e9 Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWFpcGxhdGZvcm0vLk93bEJvdC55YW1sIiwiaCI6IjcwYmMyZTkzMmFlNDFkZmM2ZWE2NWJjZTI2YWEyNWY0OWVkNjBmZWQifQ== * feat: add `point_of_contact` to `Feature` message PiperOrigin-RevId: 609142958 Source-Link: googleapis/googleapis@cc2c8aa Source-Link: googleapis/googleapis-gen@13e938a Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWFpcGxhdGZvcm0vLk93bEJvdC55YW1sIiwiaCI6IjEzZTkzOGFhNTljYmY4MDYyMjk3OGM3YTA2ZWQ3MGVmNzVlNmQ4NzAifQ== * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 6f3ab04 commit d158bfb

File tree

6 files changed

+435
-0
lines changed

6 files changed

+435
-0
lines changed

packages/google-cloud-aiplatform/protos/google/cloud/aiplatform/v1/feature.proto

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,4 +170,8 @@ message Feature {
170170
// The name of the BigQuery Table/View column hosting data for this version.
171171
// If no value is provided, will use feature_id.
172172
string version_column_name = 106;
173+
174+
// Entity responsible for maintaining this feature. Can be comma separated
175+
// list of email addresses or URIs.
176+
string point_of_contact = 107;
173177
}

packages/google-cloud-aiplatform/protos/google/cloud/aiplatform/v1beta1/feature.proto

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,4 +197,8 @@ message Feature {
197197
// The name of the BigQuery Table/View column hosting data for this version.
198198
// If no value is provided, will use feature_id.
199199
string version_column_name = 106;
200+
201+
// Entity responsible for maintaining this feature. Can be comma separated
202+
// list of email addresses or URIs.
203+
string point_of_contact = 107;
200204
}

packages/google-cloud-aiplatform/protos/google/cloud/aiplatform/v1beta1/persistent_resource.proto

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,9 @@ message RaySpec {
237237
// set.
238238
string head_node_resource_pool_id = 7
239239
[(google.api.field_behavior) = OPTIONAL];
240+
241+
// Optional. Ray metrics configurations.
242+
RayMetricSpec ray_metric_spec = 8 [(google.api.field_behavior) = OPTIONAL];
240243
}
241244

242245
// Persistent Cluster runtime information as output
@@ -274,3 +277,9 @@ message ServiceAccountSpec {
274277
// Required if any containers are specified in `ResourceRuntimeSpec`.
275278
string service_account = 2 [(google.api.field_behavior) = OPTIONAL];
276279
}
280+
281+
// Configuration for the Ray metrics.
282+
message RayMetricSpec {
283+
// Optional. Flag to disable the Ray metrics collection.
284+
bool disabled = 1 [(google.api.field_behavior) = OPTIONAL];
285+
}

packages/google-cloud-aiplatform/protos/protos.d.ts

Lines changed: 115 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)