Skip to content

Commit

Permalink
Label support for Google Managed Notebooks (#9625)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcreddy-gcp authored Dec 12, 2023
1 parent b4195a6 commit 414d6be
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
9 changes: 9 additions & 0 deletions mmv1/products/notebooks/Runtime.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -569,3 +569,12 @@ properties:
sessions stats.
output: true
output: true
- !ruby/object:Api::Type::KeyValueLabels
name: 'labels'
description: |
The labels to associate with this runtime. Label **keys** must
contain 1 to 63 characters, and must conform to [RFC 1035]
(https://www.ietf.org/rfc/rfc1035.txt). Label **values** may be
empty, but, if present, must contain 1 to 63 characters, and must
conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). No
more than 32 labels can be associated with a cluster.
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,7 @@ resource "google_notebooks_runtime" "<%= ctx[:primary_resource_id] %>" {
}
}
}
labels = {
k = "val"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,7 @@ resource "google_notebooks_runtime" "<%= ctx[:primary_resource_id] %>" {
}
}
}
labels = {
k = "val"
}
}

0 comments on commit 414d6be

Please sign in to comment.