-
Notifications
You must be signed in to change notification settings - Fork 50
Update SDK to latest OpenAPI spec #1221
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
If integration tests don't run automatically, an authorized user can run them manually by following the instructions below: Trigger: Inputs:
Checks will be approved automatically on success. |
_, err = retries.New[catalog.CurrentWorkspaceBindings]( | ||
_, err = retries.New[catalog.UpdateCatalogWorkspaceBindingsResponse]( | ||
retries.OnErrors(apierr.ErrDeadlineExceeded), | ||
retries.WithTimeout(1*time.Minute), | ||
).Run(ctx, func(ctx context.Context) (*catalog.CurrentWorkspaceBindings, error) { | ||
).Run(ctx, func(ctx context.Context) (*catalog.UpdateCatalogWorkspaceBindingsResponse, error) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Highlight
@@ -43,7 +43,7 @@ func TestAccGenericPermissions(t *testing.T) { | |||
require.NoError(t, err) | |||
}) | |||
|
|||
_, err = w.Permissions.Set(ctx, iam.PermissionsRequest{ | |||
_, err = w.Permissions.Set(ctx, iam.SetObjectPermissions{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Highlight
What changes are proposed in this pull request?
Updating SDK to latest OpenAPI spec + Fix tests for backward incompatible changes
How is this tested?
CI