Skip to content

Commit 34b622d

Browse files
revert postgres changes
1 parent a5d21b1 commit 34b622d

File tree

2 files changed

+68
-17
lines changed

2 files changed

+68
-17
lines changed

.github/workflows/tagging.yml

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,17 @@
22
name: tagging
33

44
on:
5-
# Manual dispatch.
65
workflow_dispatch:
7-
# No inputs are required for the manual dispatch.
8-
9-
# Runs at 8:00 UTC on Tuesday, Wednesday, and Thursday. To enable automated
10-
# tagging for a repository, simply add it to the if block of the tag job.
11-
schedule:
12-
- cron: '0 8 * * TUE,WED,THU'
6+
# Enable for automatic tagging
7+
#schedule:
8+
# - cron: '0 0 * * TUE'
139

1410
# Ensure that only a single instance of the workflow is running at a time.
1511
concurrency:
1612
group: "tagging"
1713

1814
jobs:
1915
tag:
20-
# Only run the tag job if the trigger is manual (workflow_dispatch) or
21-
# the repository has been approved for automated releases.
22-
#
23-
# To disable release for a repository, simply exclude it from the if
24-
# condition.
25-
if: >-
26-
github.event_name == 'workflow_dispatch' ||
27-
github.repository == 'databricks/databricks-sdk-go' ||
28-
github.repository == 'databricks/databricks-sdk-py' ||
29-
github.repository == 'databricks/databricks-sdk-java'
3016
environment: "release-is"
3117
runs-on:
3218
group: databricks-deco-testing-runner-group

bundle/internal/schema/annotations_openapi.yml

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -815,6 +815,71 @@ github.com/databricks/cli/bundle/config/resources.Pipeline:
815815
Usage policy of this pipeline.
816816
"x-databricks-preview": |-
817817
PRIVATE
818+
github.com/databricks/cli/bundle/config/resources.PostgresBranch:
819+
"expire_time":
820+
"description": |-
821+
Absolute expiration timestamp. When set, the branch will expire at this time.
822+
"is_protected":
823+
"description": |-
824+
When set to true, protects the branch from deletion and reset. Associated compute endpoints and the project cannot be deleted while the branch is protected.
825+
"no_expiry":
826+
"description": |-
827+
Explicitly disable expiration. When set to true, the branch will not expire.
828+
If set to false, the request is invalid; provide either ttl or expire_time instead.
829+
"source_branch":
830+
"description": |-
831+
The name of the source branch from which this branch was created (data lineage for point-in-time recovery).
832+
If not specified, defaults to the project's default branch.
833+
Format: projects/{project_id}/branches/{branch_id}
834+
"source_branch_lsn":
835+
"description": |-
836+
The Log Sequence Number (LSN) on the source branch from which this branch was created.
837+
"source_branch_time":
838+
"description": |-
839+
The point in time on the source branch from which this branch was created.
840+
"ttl":
841+
"description": |-
842+
Relative time-to-live duration. When set, the branch will expire at creation_time + ttl.
843+
github.com/databricks/cli/bundle/config/resources.PostgresEndpoint:
844+
"autoscaling_limit_max_cu":
845+
"description": |-
846+
The maximum number of Compute Units. Minimum value is 0.5.
847+
"autoscaling_limit_min_cu":
848+
"description": |-
849+
The minimum number of Compute Units. Minimum value is 0.5.
850+
"disabled":
851+
"description": |-
852+
Whether to restrict connections to the compute endpoint.
853+
Enabling this option schedules a suspend compute operation.
854+
A disabled compute endpoint cannot be enabled by a connection or
855+
console action.
856+
"endpoint_type":
857+
"description": |-
858+
The endpoint type. A branch can only have one READ_WRITE endpoint.
859+
"no_suspension":
860+
"description": |-
861+
When set to true, explicitly disables automatic suspension (never suspend).
862+
Should be set to true when provided.
863+
"settings":
864+
"description": |-
865+
A collection of settings for a compute endpoint.
866+
"suspend_timeout_duration":
867+
"description": |-
868+
Duration of inactivity after which the compute endpoint is automatically suspended.
869+
If specified should be between 60s and 604800s (1 minute to 1 week).
870+
github.com/databricks/cli/bundle/config/resources.PostgresProject:
871+
"default_endpoint_settings":
872+
"description": |-
873+
A collection of settings for a compute endpoint.
874+
"display_name":
875+
"description": |-
876+
Human-readable project name. Length should be between 1 and 256 characters.
877+
"history_retention_duration":
878+
"description": |-
879+
The number of seconds to retain the shared history for point in time recovery for all branches in this project. Value should be between 0s and 2592000s (up to 30 days).
880+
"pg_version":
881+
"description": |-
882+
The major Postgres version number. Supported versions are 16 and 17.
818883
github.com/databricks/cli/bundle/config/resources.QualityMonitor:
819884
"assets_dir":
820885
"description": |-

0 commit comments

Comments
 (0)