AppAttachment

Example Usage

Basic Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.apigateway.AppAttachment;
import com.pulumi.alicloud.apigateway.AppAttachmentArgs;
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) {
var foo = new AppAttachment("foo", AppAttachmentArgs.builder()
.apiId("d29d25b9cfdf4742b1a3f6537299a749")
.appId("20898181")
.groupId("aaef8cdbb404420f9398a74ed1db7fff")
.stageName("PRE")
.build());
}
}

Properties

Link copied to clipboard
val apiId: Output<String>

The api_id that app apply to access.

Link copied to clipboard
val appId: Output<String>

The app that apply to the authorization.

Link copied to clipboard
val groupId: Output<String>

The group that the api belongs to.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val stageName: Output<String>

Stage that the app apply to access.

Link copied to clipboard
val urn: Output<String>