Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .codegen/_openapi_sha
Original file line number Diff line number Diff line change
@@ -1 +1 @@
b6adc4629926d38da0869938d0217b9c824b48f9
2a91f7354f73e4b52d212181bfc7591f563ccc50
1,385 changes: 1,027 additions & 358 deletions .codegen/cli.json

Large diffs are not rendered by default.

16 changes: 16 additions & 0 deletions acceptance/bundle/refschema/out.fields.txt
Original file line number Diff line number Diff line change
Expand Up @@ -943,6 +943,7 @@ resources.jobs.*.parameters []jobs.JobParameterDefinition ALL
resources.jobs.*.parameters[*] jobs.JobParameterDefinition ALL
resources.jobs.*.parameters[*].default string ALL
resources.jobs.*.parameters[*].name string ALL
resources.jobs.*.parent_path string ALL
resources.jobs.*.performance_target jobs.PerformanceTarget ALL
resources.jobs.*.queue *jobs.QueueSettings ALL
resources.jobs.*.queue.enabled bool ALL
Expand All @@ -954,6 +955,10 @@ resources.jobs.*.run_as_user_name string REMOTE
resources.jobs.*.schedule *jobs.CronSchedule ALL
resources.jobs.*.schedule.pause_status jobs.PauseStatus ALL
resources.jobs.*.schedule.quartz_cron_expression string ALL
resources.jobs.*.schedule.sql_condition *jobs.SqlConditionConfiguration ALL
resources.jobs.*.schedule.sql_condition.sql_query_id string ALL
resources.jobs.*.schedule.sql_condition.trigger_mode jobs.SqlConditionTriggerMode ALL
resources.jobs.*.schedule.sql_condition.warehouse_id string ALL
resources.jobs.*.schedule.timezone_id string ALL
resources.jobs.*.tags map[string]string ALL
resources.jobs.*.tags.* string ALL
Expand Down Expand Up @@ -1716,6 +1721,10 @@ resources.jobs.*.trigger.pause_status jobs.PauseStatus ALL
resources.jobs.*.trigger.periodic *jobs.PeriodicTriggerConfiguration ALL
resources.jobs.*.trigger.periodic.interval int ALL
resources.jobs.*.trigger.periodic.unit jobs.PeriodicTriggerConfigurationTimeUnit ALL
resources.jobs.*.trigger.sql_condition *jobs.SqlConditionConfiguration ALL
resources.jobs.*.trigger.sql_condition.sql_query_id string ALL
resources.jobs.*.trigger.sql_condition.trigger_mode jobs.SqlConditionTriggerMode ALL
resources.jobs.*.trigger.sql_condition.warehouse_id string ALL
resources.jobs.*.trigger.table_update *jobs.TableUpdateTriggerConfiguration ALL
resources.jobs.*.trigger.table_update.condition jobs.Condition ALL
resources.jobs.*.trigger.table_update.min_time_between_triggers_seconds int ALL
Expand All @@ -1725,6 +1734,10 @@ resources.jobs.*.trigger.table_update.wait_after_last_change_seconds int ALL
resources.jobs.*.trigger_state *jobs.TriggerStateProto REMOTE
resources.jobs.*.trigger_state.file_arrival *jobs.FileArrivalTriggerState REMOTE
resources.jobs.*.trigger_state.file_arrival.using_file_events bool REMOTE
resources.jobs.*.trigger_state.sql_condition *jobs.SqlConditionState REMOTE
resources.jobs.*.trigger_state.sql_condition.latest_condition_evaluation_satisfied bool REMOTE
resources.jobs.*.trigger_state.sql_condition.latest_condition_evaluation_sql_session_id string REMOTE
resources.jobs.*.trigger_state.sql_condition.latest_condition_evaluation_sql_statement_id string REMOTE
resources.jobs.*.trigger_state.table *jobs.TableTriggerState REMOTE
resources.jobs.*.trigger_state.table.last_seen_table_states []jobs.TableState REMOTE
resources.jobs.*.trigger_state.table.last_seen_table_states[*] jobs.TableState REMOTE
Expand Down Expand Up @@ -2982,6 +2995,9 @@ resources.postgres_endpoints.*.status.group.min int REMOTE
resources.postgres_endpoints.*.status.hosts *postgres.EndpointHosts REMOTE
resources.postgres_endpoints.*.status.hosts.host string REMOTE
resources.postgres_endpoints.*.status.hosts.read_only_host string REMOTE
resources.postgres_endpoints.*.status.hosts.read_only_pooled_host string REMOTE
resources.postgres_endpoints.*.status.hosts.read_write_pooled_host string REMOTE
resources.postgres_endpoints.*.status.last_active_time *time.Time REMOTE
resources.postgres_endpoints.*.status.pending_state postgres.EndpointStatusState REMOTE
resources.postgres_endpoints.*.status.settings *postgres.EndpointSettings REMOTE
resources.postgres_endpoints.*.status.settings.pg_settings map[string]string REMOTE
Expand Down
1 change: 1 addition & 0 deletions acceptance/help/output.txt
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ Unity Catalog
resource-quotas Unity Catalog enforces resource quotas on all securable objects, which limits the number of resources that can be created.
rfa *Public Preview* Request for Access enables users to request access for Unity Catalog securables.
schemas A schema (also called a database) is the second layer of Unity Catalog’s three-level namespace.
secrets-uc *Public Preview* A secret is a Unity Catalog securable object that stores sensitive credential data (such as passwords, tokens, and keys) within a three-level namespace (**catalog_name.schema_name.secret_name**).
storage-credentials A storage credential represents an authentication and authorization mechanism for accessing data stored on your cloud tenant.
system-schemas *Public Preview* A system schema is a schema that lives within the system catalog.
table-constraints Primary key and foreign key constraints encode relationships between fields in tables.
Expand Down
8 changes: 5 additions & 3 deletions bundle/direct/dresources/grants.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,11 @@ func (r *ResourceGrants) DoUpdate(ctx context.Context, _ string, state *GrantsSt
}
removedPrincipals := removedGrantPrincipals(state.EmbeddedSlice, entry)
_, err := r.client.Grants.Update(ctx, catalog.UpdatePermissions{
SecurableType: state.SecurableType,
FullName: state.FullName,
Changes: buildGrantChanges(state.EmbeddedSlice, removedPrincipals),
SecurableType: state.SecurableType,
FullName: state.FullName,
Changes: buildGrantChanges(state.EmbeddedSlice, removedPrincipals),
OmitPermissionsInResponse: false,
ForceSendFields: nil,
})
return nil, err
}
Expand Down
1 change: 1 addition & 0 deletions bundle/direct/dresources/job.go
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ func makeCreateJob(config jobs.JobSettings) (jobs.CreateJob, error) {
Name: config.Name,
NotificationSettings: config.NotificationSettings,
Parameters: config.Parameters,
ParentPath: config.ParentPath,
PerformanceTarget: config.PerformanceTarget,
Queue: config.Queue,
RunAs: config.RunAs,
Expand Down
Loading