alicloud.apigateway.Model
Provides a Api Gateway Model resource.
For information about Api Gateway Model and how to use it, see What is Model.
NOTE: Available in v1.187.0+.
Example Usage
Basic Usage
using System.Collections.Generic;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var defaultGroup = new AliCloud.ApiGateway.Group("defaultGroup", new()
{
Description = "example_value",
});
var defaultModel = new AliCloud.ApiGateway.Model("defaultModel", new()
{
GroupId = defaultGroup.Id,
ModelName = "example_value",
Schema = "{\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"maximum\":100,\"exclusiveMaximum\":true,\"type\":\"integer\"},\"name\":{\"maxLength\":10,\"type\":\"string\"}}}",
Description = "example_value",
});
});
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 {
defaultGroup, err := apigateway.NewGroup(ctx, "defaultGroup", &apigateway.GroupArgs{
Description: pulumi.String("example_value"),
})
if err != nil {
return err
}
_, err = apigateway.NewModel(ctx, "defaultModel", &apigateway.ModelArgs{
GroupId: defaultGroup.ID(),
ModelName: pulumi.String("example_value"),
Schema: pulumi.String("{\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"maximum\":100,\"exclusiveMaximum\":true,\"type\":\"integer\"},\"name\":{\"maxLength\":10,\"type\":\"string\"}}}"),
Description: pulumi.String("example_value"),
})
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.Group;
import com.pulumi.alicloud.apigateway.GroupArgs;
import com.pulumi.alicloud.apigateway.Model;
import com.pulumi.alicloud.apigateway.ModelArgs;
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 defaultGroup = new Group("defaultGroup", GroupArgs.builder()
.description("example_value")
.build());
var defaultModel = new Model("defaultModel", ModelArgs.builder()
.groupId(defaultGroup.id())
.modelName("example_value")
.schema("{\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"maximum\":100,\"exclusiveMaximum\":true,\"type\":\"integer\"},\"name\":{\"maxLength\":10,\"type\":\"string\"}}}")
.description("example_value")
.build());
}
}
import pulumi
import pulumi_alicloud as alicloud
default_group = alicloud.apigateway.Group("defaultGroup", description="example_value")
default_model = alicloud.apigateway.Model("defaultModel",
group_id=default_group.id,
model_name="example_value",
schema="{\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"maximum\":100,\"exclusiveMaximum\":true,\"type\":\"integer\"},\"name\":{\"maxLength\":10,\"type\":\"string\"}}}",
description="example_value")
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const defaultGroup = new alicloud.apigateway.Group("defaultGroup", {description: "example_value"});
const defaultModel = new alicloud.apigateway.Model("defaultModel", {
groupId: defaultGroup.id,
modelName: "example_value",
schema: "{\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"maximum\":100,\"exclusiveMaximum\":true,\"type\":\"integer\"},\"name\":{\"maxLength\":10,\"type\":\"string\"}}}",
description: "example_value",
});
resources:
defaultGroup:
type: alicloud:apigateway:Group
properties:
description: example_value
defaultModel:
type: alicloud:apigateway:Model
properties:
groupId: ${defaultGroup.id}
modelName: example_value
schema: '{"type":"object","properties":{"id":{"format":"int64","maximum":100,"exclusiveMaximum":true,"type":"integer"},"name":{"maxLength":10,"type":"string"}}}'
description: example_value
Create Model Resource
new Model(name: string, args: ModelArgs, opts?: CustomResourceOptions);
@overload
def Model(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
group_id: Optional[str] = None,
model_name: Optional[str] = None,
schema: Optional[str] = None)
@overload
def Model(resource_name: str,
args: ModelArgs,
opts: Optional[ResourceOptions] = None)
func NewModel(ctx *Context, name string, args ModelArgs, opts ...ResourceOption) (*Model, error)
public Model(string name, ModelArgs args, CustomResourceOptions? opts = null)
type: alicloud:apigateway:Model
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ModelArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ModelArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ModelArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ModelArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ModelArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Model Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Model resource accepts the following input properties:
- Group
Id string The group of the model belongs to.
- Model
Name string The name of the model.
- Schema string
The schema of the model.
- Description string
The description of the model.
- Group
Id string The group of the model belongs to.
- Model
Name string The name of the model.
- Schema string
The schema of the model.
- Description string
The description of the model.
- group
Id String The group of the model belongs to.
- model
Name String The name of the model.
- schema String
The schema of the model.
- description String
The description of the model.
- group
Id string The group of the model belongs to.
- model
Name string The name of the model.
- schema string
The schema of the model.
- description string
The description of the model.
- group_
id str The group of the model belongs to.
- model_
name str The name of the model.
- schema str
The schema of the model.
- description str
The description of the model.
- group
Id String The group of the model belongs to.
- model
Name String The name of the model.
- schema String
The schema of the model.
- description String
The description of the model.
Outputs
All input properties are implicitly available as output properties. Additionally, the Model resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Id string
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
- id string
The provider-assigned unique ID for this managed resource.
- id str
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
Look up Existing Model Resource
Get an existing Model resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ModelState, opts?: CustomResourceOptions): Model
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
group_id: Optional[str] = None,
model_name: Optional[str] = None,
schema: Optional[str] = None) -> Model
func GetModel(ctx *Context, name string, id IDInput, state *ModelState, opts ...ResourceOption) (*Model, error)
public static Model Get(string name, Input<string> id, ModelState? state, CustomResourceOptions? opts = null)
public static Model get(String name, Output<String> id, ModelState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Description string
The description of the model.
- Group
Id string The group of the model belongs to.
- Model
Name string The name of the model.
- Schema string
The schema of the model.
- Description string
The description of the model.
- Group
Id string The group of the model belongs to.
- Model
Name string The name of the model.
- Schema string
The schema of the model.
- description String
The description of the model.
- group
Id String The group of the model belongs to.
- model
Name String The name of the model.
- schema String
The schema of the model.
- description string
The description of the model.
- group
Id string The group of the model belongs to.
- model
Name string The name of the model.
- schema string
The schema of the model.
- description str
The description of the model.
- group_
id str The group of the model belongs to.
- model_
name str The name of the model.
- schema str
The schema of the model.
- description String
The description of the model.
- group
Id String The group of the model belongs to.
- model
Name String The name of the model.
- schema String
The schema of the model.
Import
Api Gateway Model can be imported using the id, e.g.
$ pulumi import alicloud:apigateway/model:Model example <group_id>:<model_name>
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
alicloud
Terraform Provider.