Skip to content

Commit

Permalink
chore: run make build_java
Browse files Browse the repository at this point in the history
  • Loading branch information
rquitales committed May 17, 2024
1 parent 2c637e3 commit 75cc4e7
Show file tree
Hide file tree
Showing 2 changed files with 455 additions and 0 deletions.
52 changes: 52 additions & 0 deletions sdk/java/src/main/java/com/pulumi/eks/Addon.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.eks;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import com.pulumi.eks.AddonArgs;
import com.pulumi.eks.Utilities;
import javax.annotation.Nullable;

/**
* Addon manages an EKS add-on.
* For more information about supported add-ons, see: https://docs.aws.amazon.com/eks/latest/userguide/eks-add-ons.html
*
*/
@ResourceType(type="eks:index:Addon")
public class Addon extends com.pulumi.resources.ComponentResource {
/**
*
* @param name The _unique_ name of the resulting resource.
*/
public Addon(String name) {
this(name, AddonArgs.Empty);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
*/
public Addon(String name, AddonArgs args) {
this(name, args, null);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
* @param options A bag of options that control this resource's behavior.
*/
public Addon(String name, AddonArgs args, @Nullable com.pulumi.resources.ComponentResourceOptions options) {
super("eks:index:Addon", name, args == null ? AddonArgs.Empty : args, makeResourceOptions(options, Codegen.empty()), true);
}

private static com.pulumi.resources.ComponentResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.ComponentResourceOptions options, @Nullable Output<String> id) {
var defaultOptions = com.pulumi.resources.ComponentResourceOptions.builder()
.version(Utilities.getVersion())
.build();
return com.pulumi.resources.ComponentResourceOptions.merge(defaultOptions, options, id);
}

}
Loading

0 comments on commit 75cc4e7

Please sign in to comment.