alicloud.apigateway.getService
Using this data source can enable API gateway service automatically. If the service has been enabled, it will return Opened
.
For information about API Gateway and how to use it, see What is API Gateway.
NOTE: Available in v1.96.0+
Example Usage
using System.Collections.Generic;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var open = AliCloud.ApiGateway.GetService.Invoke(new()
{
Enable = "On",
});
});
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/apigateway"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := apigateway.GetService(ctx, &apigateway.GetServiceArgs{
Enable: pulumi.StringRef("On"),
}, nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.apigateway.ApigatewayFunctions;
import com.pulumi.alicloud.apigateway.inputs.GetServiceArgs;
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 open = ApigatewayFunctions.getService(GetServiceArgs.builder()
.enable("On")
.build());
}
}
import pulumi
import pulumi_alicloud as alicloud
open = alicloud.apigateway.get_service(enable="On")
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const open = alicloud.apigateway.getService({
enable: "On",
});
variables:
open:
fn::invoke:
Function: alicloud:apigateway:getService
Arguments:
enable: On
Using getService
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getService(args: GetServiceArgs, opts?: InvokeOptions): Promise<GetServiceResult>
function getServiceOutput(args: GetServiceOutputArgs, opts?: InvokeOptions): Output<GetServiceResult>
def get_service(enable: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetServiceResult
def get_service_output(enable: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetServiceResult]
func GetService(ctx *Context, args *GetServiceArgs, opts ...InvokeOption) (*GetServiceResult, error)
func GetServiceOutput(ctx *Context, args *GetServiceOutputArgs, opts ...InvokeOption) GetServiceResultOutput
> Note: This function is named GetService
in the Go SDK.
public static class GetService
{
public static Task<GetServiceResult> InvokeAsync(GetServiceArgs args, InvokeOptions? opts = null)
public static Output<GetServiceResult> Invoke(GetServiceInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetServiceResult> getService(GetServiceArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: alicloud:apigateway/getService:getService
arguments:
# arguments dictionary
The following arguments are supported:
- Enable string
Setting the value to
On
to enable the service. If has been enabled, return the result. Valid values: "On" or "Off". Default to "Off".
- Enable string
Setting the value to
On
to enable the service. If has been enabled, return the result. Valid values: "On" or "Off". Default to "Off".
- enable String
Setting the value to
On
to enable the service. If has been enabled, return the result. Valid values: "On" or "Off". Default to "Off".
- enable string
Setting the value to
On
to enable the service. If has been enabled, return the result. Valid values: "On" or "Off". Default to "Off".
- enable str
Setting the value to
On
to enable the service. If has been enabled, return the result. Valid values: "On" or "Off". Default to "Off".
- enable String
Setting the value to
On
to enable the service. If has been enabled, return the result. Valid values: "On" or "Off". Default to "Off".
getService Result
The following output properties are available:
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
alicloud
Terraform Provider.