com.pulumi.github.DependabotOrganizationSecretRepositories Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of github Show documentation
Show all versions of github Show documentation
A Pulumi package for creating and managing github cloud resources.
// *** 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.github;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import com.pulumi.github.DependabotOrganizationSecretRepositoriesArgs;
import com.pulumi.github.Utilities;
import com.pulumi.github.inputs.DependabotOrganizationSecretRepositoriesState;
import java.lang.Integer;
import java.lang.String;
import java.util.List;
import javax.annotation.Nullable;
/**
* This resource allows you to manage the repository allow list for existing GitHub Dependabot secrets within your GitHub organization.
* You must have write access to an organization secret to use this resource.
*
* This resource is only applicable when `visibility` of the existing organization secret has been set to `selected`.
*
* ## Example Usage
*
* <!--Start PulumiCodeChooser -->
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.github.GithubFunctions;
* import com.pulumi.github.inputs.GetRepositoryArgs;
* import com.pulumi.github.DependabotOrganizationSecret;
* import com.pulumi.github.DependabotOrganizationSecretArgs;
* import com.pulumi.github.DependabotOrganizationSecretRepositories;
* import com.pulumi.github.DependabotOrganizationSecretRepositoriesArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
*
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
*
* public static void stack(Context ctx) {
* final var repo = GithubFunctions.getRepository(GetRepositoryArgs.builder()
* .fullName("my-org/repo")
* .build());
*
* var exampleSecret = new DependabotOrganizationSecret("exampleSecret", DependabotOrganizationSecretArgs.builder()
* .secretName("example_secret_name")
* .visibility("private")
* .plaintextValue(someSecretString)
* .build());
*
* var orgSecretRepos = new DependabotOrganizationSecretRepositories("orgSecretRepos", DependabotOrganizationSecretRepositoriesArgs.builder()
* .secretName(exampleSecret.secretName())
* .selectedRepositoryIds(repo.applyValue(getRepositoryResult -> getRepositoryResult.repoId()))
* .build());
*
* }
* }
* }
*
* <!--End PulumiCodeChooser -->
*
* ## Import
*
* This resource can be imported using an ID made up of the secret name:
*
* ```sh
* $ pulumi import github:index/dependabotOrganizationSecretRepositories:DependabotOrganizationSecretRepositories test_secret_repos test_secret_name
* ```
*
*/
@ResourceType(type="github:index/dependabotOrganizationSecretRepositories:DependabotOrganizationSecretRepositories")
public class DependabotOrganizationSecretRepositories extends com.pulumi.resources.CustomResource {
/**
* Name of the existing secret
*
*/
@Export(name="secretName", refs={String.class}, tree="[0]")
private Output secretName;
/**
* @return Name of the existing secret
*
*/
public Output secretName() {
return this.secretName;
}
/**
* An array of repository ids that can access the organization secret.
*
*/
@Export(name="selectedRepositoryIds", refs={List.class,Integer.class}, tree="[0,1]")
private Output> selectedRepositoryIds;
/**
* @return An array of repository ids that can access the organization secret.
*
*/
public Output> selectedRepositoryIds() {
return this.selectedRepositoryIds;
}
/**
*
* @param name The _unique_ name of the resulting resource.
*/
public DependabotOrganizationSecretRepositories(java.lang.String name) {
this(name, DependabotOrganizationSecretRepositoriesArgs.Empty);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
*/
public DependabotOrganizationSecretRepositories(java.lang.String name, DependabotOrganizationSecretRepositoriesArgs 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 DependabotOrganizationSecretRepositories(java.lang.String name, DependabotOrganizationSecretRepositoriesArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("github:index/dependabotOrganizationSecretRepositories:DependabotOrganizationSecretRepositories", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false);
}
private DependabotOrganizationSecretRepositories(java.lang.String name, Output id, @Nullable DependabotOrganizationSecretRepositoriesState state, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("github:index/dependabotOrganizationSecretRepositories:DependabotOrganizationSecretRepositories", name, state, makeResourceOptions(options, id), false);
}
private static DependabotOrganizationSecretRepositoriesArgs makeArgs(DependabotOrganizationSecretRepositoriesArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
if (options != null && options.getUrn().isPresent()) {
return null;
}
return args == null ? DependabotOrganizationSecretRepositoriesArgs.Empty : args;
}
private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) {
var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder()
.version(Utilities.getVersion())
.build();
return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id);
}
/**
* Get an existing Host resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state
* @param options Optional settings to control the behavior of the CustomResource.
*/
public static DependabotOrganizationSecretRepositories get(java.lang.String name, Output id, @Nullable DependabotOrganizationSecretRepositoriesState state, @Nullable com.pulumi.resources.CustomResourceOptions options) {
return new DependabotOrganizationSecretRepositories(name, id, state, options);
}
}