Skip to content
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

Update OpenAPI spec #297

Merged
merged 2 commits into from
Jun 3, 2024
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 @@
7eb5ad9a2ed3e3f1055968a2d1014ac92c06fe92
37b925eba37dfb3d7e05b6ba2d458454ce62d3a0

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.

package com.databricks.sdk.service.catalog;

import com.databricks.sdk.support.Generated;
import com.databricks.sdk.support.ToStringer;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Collection;
import java.util.Objects;

@Generated
public class ListAccountStorageCredentialsResponse {
/** An array of metastore storage credentials. */
@JsonProperty("storage_credentials")
private Collection<StorageCredentialInfo> storageCredentials;

public ListAccountStorageCredentialsResponse setStorageCredentials(
Collection<StorageCredentialInfo> storageCredentials) {
this.storageCredentials = storageCredentials;
return this;
}

public Collection<StorageCredentialInfo> getStorageCredentials() {
return storageCredentials;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ListAccountStorageCredentialsResponse that = (ListAccountStorageCredentialsResponse) o;
return Objects.equals(storageCredentials, that.storageCredentials);
}

@Override
public int hashCode() {
return Objects.hash(storageCredentials);
}

@Override
public String toString() {
return new ToStringer(ListAccountStorageCredentialsResponse.class)
.add("storageCredentials", storageCredentials)
.toString();
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.

package com.databricks.sdk.service.marketplace;

import com.databricks.sdk.support.Generated;
import com.databricks.sdk.support.QueryParam;
import com.databricks.sdk.support.ToStringer;
import java.util.Collection;
import java.util.Objects;

/** Get one batch of listings. One may specify up to 50 IDs per request. */
@Generated
public class BatchGetListingsRequest {
/** */
@QueryParam("ids")
private Collection<String> ids;

public BatchGetListingsRequest setIds(Collection<String> ids) {
this.ids = ids;
return this;
}

public Collection<String> getIds() {
return ids;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
BatchGetListingsRequest that = (BatchGetListingsRequest) o;
return Objects.equals(ids, that.ids);
}

@Override
public int hashCode() {
return Objects.hash(ids);
}

@Override
public String toString() {
return new ToStringer(BatchGetListingsRequest.class).add("ids", ids).toString();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.

package com.databricks.sdk.service.marketplace;

import com.databricks.sdk.support.Generated;
import com.databricks.sdk.support.ToStringer;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Collection;
import java.util.Objects;

@Generated
public class BatchGetListingsResponse {
/** */
@JsonProperty("listings")
private Collection<Listing> listings;

public BatchGetListingsResponse setListings(Collection<Listing> listings) {
this.listings = listings;
return this;
}

public Collection<Listing> getListings() {
return listings;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
BatchGetListingsResponse that = (BatchGetListingsResponse) o;
return Objects.equals(listings, that.listings);
}

@Override
public int hashCode() {
return Objects.hash(listings);
}

@Override
public String toString() {
return new ToStringer(BatchGetListingsResponse.class).add("listings", listings).toString();
}
}
Loading
Loading