Skip to content

Commit 6977411

Browse files
authored
Add enable_stable_ips to PublicConnectivityRule (#113)
Add enable_stable_ips to PublicConnectivityRule and bump version to v0.15.0
1 parent 5263cf3 commit 6977411

3 files changed

Lines changed: 8 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ To use the Cloud Ops API in your project, preform the following 4 steps:
1515

1616
The client is expected to pass in a `temporal-cloud-api-version` header with the api version identifier with every request it makes to the apis. The backend will use the version to safely mutate resources. The `temporal:versioning:min_version` label specifies the minimum version of the API that supports the field.
1717

18-
Current Version `v0.14.0`
18+
Current Version `v0.15.0`
1919

2020
### URL
2121

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.14.0
1+
v0.15.0

temporal/api/cloud/connectivityrule/v1/message.proto

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,11 @@ message ConnectivityRuleSpec {
4545
}
4646

4747
// A public connectivity rule allows access to the namespace via the public internet.
48-
message PublicConnectivityRule {}
48+
message PublicConnectivityRule {
49+
// Flag to determine namespace is connected via a predictable set of IPs on public internet
50+
// temporal:versioning:min_version=v0.15.0
51+
bool enable_stable_ips = 1;
52+
}
4953

5054
// A private connectivity rule allows connections from a specific private vpc only.
5155
message PrivateConnectivityRule {
@@ -61,4 +65,4 @@ message PrivateConnectivityRule {
6165
string region = 3;
6266

6367
reserved 4;
64-
}
68+
}

0 commit comments

Comments
 (0)