Skip to content

Commit

Permalink
Regenerate SDK (#3223)
Browse files Browse the repository at this point in the history
#3213 was merged with failing tests. This regenerates the SDK to fix
tests.
  • Loading branch information
blampe authored Sep 23, 2024
1 parent febccfc commit 8a0d0c3
Show file tree
Hide file tree
Showing 8 changed files with 108 additions and 102 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,97 +13,97 @@

/**
* Specification defining the Helm chart repository to use.
*
*
*/
public final class RepositoryOptsArgs extends com.pulumi.resources.ResourceArgs {

public static final RepositoryOptsArgs Empty = new RepositoryOptsArgs();

/**
* The Repository's CA File
*
*
*/
@Import(name="caFile")
private @Nullable Output<String> caFile;

/**
* @return The Repository&#39;s CA File
*
*
*/
public Optional<Output<String>> caFile() {
return Optional.ofNullable(this.caFile);
}

/**
* The repository&#39;s cert file
*
*
*/
@Import(name="certFile")
private @Nullable Output<String> certFile;

/**
* @return The repository&#39;s cert file
*
*
*/
public Optional<Output<String>> certFile() {
return Optional.ofNullable(this.certFile);
}

/**
* The repository&#39;s cert key file
*
*
*/
@Import(name="keyFile")
private @Nullable Output<String> keyFile;

/**
* @return The repository&#39;s cert key file
*
*
*/
public Optional<Output<String>> keyFile() {
return Optional.ofNullable(this.keyFile);
}

/**
* Password for HTTP basic authentication
*
*
*/
@Import(name="password")
private @Nullable Output<String> password;

/**
* @return Password for HTTP basic authentication
*
*
*/
public Optional<Output<String>> password() {
return Optional.ofNullable(this.password);
}

/**
* Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository.
*
* Repository where to locate the requested chart. If it&#39;s a URL the chart is installed without installing the repository.
*
*/
@Import(name="repo")
private @Nullable Output<String> repo;

/**
* @return Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository.
*
* @return Repository where to locate the requested chart. If it&#39;s a URL the chart is installed without installing the repository.
*
*/
public Optional<Output<String>> repo() {
return Optional.ofNullable(this.repo);
}

/**
* Username for HTTP basic authentication
*
*
*/
@Import(name="username")
private @Nullable Output<String> username;

/**
* @return Username for HTTP basic authentication
*
*
*/
public Optional<Output<String>> username() {
return Optional.ofNullable(this.username);
Expand Down Expand Up @@ -140,9 +140,9 @@ public Builder(RepositoryOptsArgs defaults) {

/**
* @param caFile The Repository&#39;s CA File
*
*
* @return builder
*
*
*/
public Builder caFile(@Nullable Output<String> caFile) {
$.caFile = caFile;
Expand All @@ -151,19 +151,19 @@ public Builder caFile(@Nullable Output<String> caFile) {

/**
* @param caFile The Repository&#39;s CA File
*
*
* @return builder
*
*
*/
public Builder caFile(String caFile) {
return caFile(Output.of(caFile));
}

/**
* @param certFile The repository&#39;s cert file
*
*
* @return builder
*
*
*/
public Builder certFile(@Nullable Output<String> certFile) {
$.certFile = certFile;
Expand All @@ -172,19 +172,19 @@ public Builder certFile(@Nullable Output<String> certFile) {

/**
* @param certFile The repository&#39;s cert file
*
*
* @return builder
*
*
*/
public Builder certFile(String certFile) {
return certFile(Output.of(certFile));
}

/**
* @param keyFile The repository&#39;s cert key file
*
*
* @return builder
*
*
*/
public Builder keyFile(@Nullable Output<String> keyFile) {
$.keyFile = keyFile;
Expand All @@ -193,19 +193,19 @@ public Builder keyFile(@Nullable Output<String> keyFile) {

/**
* @param keyFile The repository&#39;s cert key file
*
*
* @return builder
*
*
*/
public Builder keyFile(String keyFile) {
return keyFile(Output.of(keyFile));
}

/**
* @param password Password for HTTP basic authentication
*
*
* @return builder
*
*
*/
public Builder password(@Nullable Output<String> password) {
$.password = password;
Expand All @@ -214,40 +214,40 @@ public Builder password(@Nullable Output<String> password) {

/**
* @param password Password for HTTP basic authentication
*
*
* @return builder
*
*
*/
public Builder password(String password) {
return password(Output.of(password));
}

/**
* @param repo Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository.
*
* @param repo Repository where to locate the requested chart. If it&#39;s a URL the chart is installed without installing the repository.
*
* @return builder
*
*
*/
public Builder repo(@Nullable Output<String> repo) {
$.repo = repo;
return this;
}

/**
* @param repo Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository.
*
* @param repo Repository where to locate the requested chart. If it&#39;s a URL the chart is installed without installing the repository.
*
* @return builder
*
*
*/
public Builder repo(String repo) {
return repo(Output.of(repo));
}

/**
* @param username Username for HTTP basic authentication
*
*
* @return builder
*
*
*/
public Builder username(@Nullable Output<String> username) {
$.username = username;
Expand All @@ -256,9 +256,9 @@ public Builder username(@Nullable Output<String> username) {

/**
* @param username Username for HTTP basic authentication
*
*
* @return builder
*
*
*/
public Builder username(String username) {
return username(Output.of(username));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,74 +13,74 @@
public final class RepositoryOpts {
/**
* @return The Repository&#39;s CA File
*
*
*/
private @Nullable String caFile;
/**
* @return The repository&#39;s cert file
*
*
*/
private @Nullable String certFile;
/**
* @return The repository&#39;s cert key file
*
*
*/
private @Nullable String keyFile;
/**
* @return Password for HTTP basic authentication
*
*
*/
private @Nullable String password;
/**
* @return Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository.
*
* @return Repository where to locate the requested chart. If it&#39;s a URL the chart is installed without installing the repository.
*
*/
private @Nullable String repo;
/**
* @return Username for HTTP basic authentication
*
*
*/
private @Nullable String username;

private RepositoryOpts() {}
/**
* @return The Repository&#39;s CA File
*
*
*/
public Optional<String> caFile() {
return Optional.ofNullable(this.caFile);
}
/**
* @return The repository&#39;s cert file
*
*
*/
public Optional<String> certFile() {
return Optional.ofNullable(this.certFile);
}
/**
* @return The repository&#39;s cert key file
*
*
*/
public Optional<String> keyFile() {
return Optional.ofNullable(this.keyFile);
}
/**
* @return Password for HTTP basic authentication
*
*
*/
public Optional<String> password() {
return Optional.ofNullable(this.password);
}
/**
* @return Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository.
*
* @return Repository where to locate the requested chart. If it&#39;s a URL the chart is installed without installing the repository.
*
*/
public Optional<String> repo() {
return Optional.ofNullable(this.repo);
}
/**
* @return Username for HTTP basic authentication
*
*
*/
public Optional<String> username() {
return Optional.ofNullable(this.username);
Expand Down
Loading

0 comments on commit 8a0d0c3

Please sign in to comment.