alicloud.vpc.IpamIpamResourceDiscovery
Explore with Pulumi AI
Provides a Vpc Ipam Ipam Resource Discovery resource.
IP Address Management Resource Discovery.
For information about Vpc Ipam Ipam Resource Discovery and how to use it, see What is Ipam Resource Discovery.
NOTE: Available since v1.243.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "terraform-example";
const _default = alicloud.resourcemanager.getResourceGroups({});
const defaultIpamIpamResourceDiscovery = new alicloud.vpc.IpamIpamResourceDiscovery("default", {
operatingRegionLists: ["cn-hangzhou"],
ipamResourceDiscoveryDescription: "This is a custom IPAM resource discovery.",
ipamResourceDiscoveryName: "example_resource_discovery",
});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "terraform-example"
default = alicloud.resourcemanager.get_resource_groups()
default_ipam_ipam_resource_discovery = alicloud.vpc.IpamIpamResourceDiscovery("default",
operating_region_lists=["cn-hangzhou"],
ipam_resource_discovery_description="This is a custom IPAM resource discovery.",
ipam_resource_discovery_name="example_resource_discovery")
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/resourcemanager"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
name := "terraform-example"
if param := cfg.Get("name"); param != "" {
name = param
}
_, err := resourcemanager.GetResourceGroups(ctx, &resourcemanager.GetResourceGroupsArgs{}, nil)
if err != nil {
return err
}
_, err = vpc.NewIpamIpamResourceDiscovery(ctx, "default", &vpc.IpamIpamResourceDiscoveryArgs{
OperatingRegionLists: pulumi.StringArray{
pulumi.String("cn-hangzhou"),
},
IpamResourceDiscoveryDescription: pulumi.String("This is a custom IPAM resource discovery."),
IpamResourceDiscoveryName: pulumi.String("example_resource_discovery"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var name = config.Get("name") ?? "terraform-example";
var @default = AliCloud.ResourceManager.GetResourceGroups.Invoke();
var defaultIpamIpamResourceDiscovery = new AliCloud.Vpc.IpamIpamResourceDiscovery("default", new()
{
OperatingRegionLists = new[]
{
"cn-hangzhou",
},
IpamResourceDiscoveryDescription = "This is a custom IPAM resource discovery.",
IpamResourceDiscoveryName = "example_resource_discovery",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.resourcemanager.ResourcemanagerFunctions;
import com.pulumi.alicloud.resourcemanager.inputs.GetResourceGroupsArgs;
import com.pulumi.alicloud.vpc.IpamIpamResourceDiscovery;
import com.pulumi.alicloud.vpc.IpamIpamResourceDiscoveryArgs;
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 config = ctx.config();
final var name = config.get("name").orElse("terraform-example");
final var default = ResourcemanagerFunctions.getResourceGroups();
var defaultIpamIpamResourceDiscovery = new IpamIpamResourceDiscovery("defaultIpamIpamResourceDiscovery", IpamIpamResourceDiscoveryArgs.builder()
.operatingRegionLists("cn-hangzhou")
.ipamResourceDiscoveryDescription("This is a custom IPAM resource discovery.")
.ipamResourceDiscoveryName("example_resource_discovery")
.build());
}
}
configuration:
name:
type: string
default: terraform-example
resources:
defaultIpamIpamResourceDiscovery:
type: alicloud:vpc:IpamIpamResourceDiscovery
name: default
properties:
operatingRegionLists:
- cn-hangzhou
ipamResourceDiscoveryDescription: This is a custom IPAM resource discovery.
ipamResourceDiscoveryName: example_resource_discovery
variables:
default:
fn::invoke:
function: alicloud:resourcemanager:getResourceGroups
arguments: {}
Create IpamIpamResourceDiscovery Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IpamIpamResourceDiscovery(name: string, args: IpamIpamResourceDiscoveryArgs, opts?: CustomResourceOptions);
@overload
def IpamIpamResourceDiscovery(resource_name: str,
args: IpamIpamResourceDiscoveryArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IpamIpamResourceDiscovery(resource_name: str,
opts: Optional[ResourceOptions] = None,
operating_region_lists: Optional[Sequence[str]] = None,
ipam_resource_discovery_description: Optional[str] = None,
ipam_resource_discovery_name: Optional[str] = None,
resource_group_id: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewIpamIpamResourceDiscovery(ctx *Context, name string, args IpamIpamResourceDiscoveryArgs, opts ...ResourceOption) (*IpamIpamResourceDiscovery, error)
public IpamIpamResourceDiscovery(string name, IpamIpamResourceDiscoveryArgs args, CustomResourceOptions? opts = null)
public IpamIpamResourceDiscovery(String name, IpamIpamResourceDiscoveryArgs args)
public IpamIpamResourceDiscovery(String name, IpamIpamResourceDiscoveryArgs args, CustomResourceOptions options)
type: alicloud:vpc:IpamIpamResourceDiscovery
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args IpamIpamResourceDiscoveryArgs
- 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 IpamIpamResourceDiscoveryArgs
- 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 IpamIpamResourceDiscoveryArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IpamIpamResourceDiscoveryArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IpamIpamResourceDiscoveryArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var ipamIpamResourceDiscoveryResource = new AliCloud.Vpc.IpamIpamResourceDiscovery("ipamIpamResourceDiscoveryResource", new()
{
OperatingRegionLists = new[]
{
"string",
},
IpamResourceDiscoveryDescription = "string",
IpamResourceDiscoveryName = "string",
ResourceGroupId = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := vpc.NewIpamIpamResourceDiscovery(ctx, "ipamIpamResourceDiscoveryResource", &vpc.IpamIpamResourceDiscoveryArgs{
OperatingRegionLists: pulumi.StringArray{
pulumi.String("string"),
},
IpamResourceDiscoveryDescription: pulumi.String("string"),
IpamResourceDiscoveryName: pulumi.String("string"),
ResourceGroupId: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var ipamIpamResourceDiscoveryResource = new IpamIpamResourceDiscovery("ipamIpamResourceDiscoveryResource", IpamIpamResourceDiscoveryArgs.builder()
.operatingRegionLists("string")
.ipamResourceDiscoveryDescription("string")
.ipamResourceDiscoveryName("string")
.resourceGroupId("string")
.tags(Map.of("string", "string"))
.build());
ipam_ipam_resource_discovery_resource = alicloud.vpc.IpamIpamResourceDiscovery("ipamIpamResourceDiscoveryResource",
operating_region_lists=["string"],
ipam_resource_discovery_description="string",
ipam_resource_discovery_name="string",
resource_group_id="string",
tags={
"string": "string",
})
const ipamIpamResourceDiscoveryResource = new alicloud.vpc.IpamIpamResourceDiscovery("ipamIpamResourceDiscoveryResource", {
operatingRegionLists: ["string"],
ipamResourceDiscoveryDescription: "string",
ipamResourceDiscoveryName: "string",
resourceGroupId: "string",
tags: {
string: "string",
},
});
type: alicloud:vpc:IpamIpamResourceDiscovery
properties:
ipamResourceDiscoveryDescription: string
ipamResourceDiscoveryName: string
operatingRegionLists:
- string
resourceGroupId: string
tags:
string: string
IpamIpamResourceDiscovery Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The IpamIpamResourceDiscovery resource accepts the following input properties:
- Operating
Region List<string>Lists - The list of operating regions for resource discovery.
- Ipam
Resource stringDiscovery Description - The description of resource discovery.
- Ipam
Resource stringDiscovery Name - The name of the resource
- Resource
Group stringId - The ID of the resource group
- Dictionary<string, string>
- Label list information.
- Operating
Region []stringLists - The list of operating regions for resource discovery.
- Ipam
Resource stringDiscovery Description - The description of resource discovery.
- Ipam
Resource stringDiscovery Name - The name of the resource
- Resource
Group stringId - The ID of the resource group
- map[string]string
- Label list information.
- operating
Region List<String>Lists - The list of operating regions for resource discovery.
- ipam
Resource StringDiscovery Description - The description of resource discovery.
- ipam
Resource StringDiscovery Name - The name of the resource
- resource
Group StringId - The ID of the resource group
- Map<String,String>
- Label list information.
- operating
Region string[]Lists - The list of operating regions for resource discovery.
- ipam
Resource stringDiscovery Description - The description of resource discovery.
- ipam
Resource stringDiscovery Name - The name of the resource
- resource
Group stringId - The ID of the resource group
- {[key: string]: string}
- Label list information.
- operating_
region_ Sequence[str]lists - The list of operating regions for resource discovery.
- ipam_
resource_ strdiscovery_ description - The description of resource discovery.
- ipam_
resource_ strdiscovery_ name - The name of the resource
- resource_
group_ strid - The ID of the resource group
- Mapping[str, str]
- Label list information.
- operating
Region List<String>Lists - The list of operating regions for resource discovery.
- ipam
Resource StringDiscovery Description - The description of resource discovery.
- ipam
Resource StringDiscovery Name - The name of the resource
- resource
Group StringId - The ID of the resource group
- Map<String>
- Label list information.
Outputs
All input properties are implicitly available as output properties. Additionally, the IpamIpamResourceDiscovery resource produces the following output properties:
- Create
Time string - The time when the resource discovery was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Region
Id string - The region ID of the resource
- Status string
- The status of the resource discovery instance. Value:
- Create
Time string - The time when the resource discovery was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Region
Id string - The region ID of the resource
- Status string
- The status of the resource discovery instance. Value:
- create
Time String - The time when the resource discovery was created.
- id String
- The provider-assigned unique ID for this managed resource.
- region
Id String - The region ID of the resource
- status String
- The status of the resource discovery instance. Value:
- create
Time string - The time when the resource discovery was created.
- id string
- The provider-assigned unique ID for this managed resource.
- region
Id string - The region ID of the resource
- status string
- The status of the resource discovery instance. Value:
- create_
time str - The time when the resource discovery was created.
- id str
- The provider-assigned unique ID for this managed resource.
- region_
id str - The region ID of the resource
- status str
- The status of the resource discovery instance. Value:
- create
Time String - The time when the resource discovery was created.
- id String
- The provider-assigned unique ID for this managed resource.
- region
Id String - The region ID of the resource
- status String
- The status of the resource discovery instance. Value:
Look up Existing IpamIpamResourceDiscovery Resource
Get an existing IpamIpamResourceDiscovery 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?: IpamIpamResourceDiscoveryState, opts?: CustomResourceOptions): IpamIpamResourceDiscovery
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
create_time: Optional[str] = None,
ipam_resource_discovery_description: Optional[str] = None,
ipam_resource_discovery_name: Optional[str] = None,
operating_region_lists: Optional[Sequence[str]] = None,
region_id: Optional[str] = None,
resource_group_id: Optional[str] = None,
status: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None) -> IpamIpamResourceDiscovery
func GetIpamIpamResourceDiscovery(ctx *Context, name string, id IDInput, state *IpamIpamResourceDiscoveryState, opts ...ResourceOption) (*IpamIpamResourceDiscovery, error)
public static IpamIpamResourceDiscovery Get(string name, Input<string> id, IpamIpamResourceDiscoveryState? state, CustomResourceOptions? opts = null)
public static IpamIpamResourceDiscovery get(String name, Output<String> id, IpamIpamResourceDiscoveryState state, CustomResourceOptions options)
resources: _: type: alicloud:vpc:IpamIpamResourceDiscovery get: id: ${id}
- 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.
- Create
Time string - The time when the resource discovery was created.
- Ipam
Resource stringDiscovery Description - The description of resource discovery.
- Ipam
Resource stringDiscovery Name - The name of the resource
- Operating
Region List<string>Lists - The list of operating regions for resource discovery.
- Region
Id string - The region ID of the resource
- Resource
Group stringId - The ID of the resource group
- Status string
- The status of the resource discovery instance. Value:
- Dictionary<string, string>
- Label list information.
- Create
Time string - The time when the resource discovery was created.
- Ipam
Resource stringDiscovery Description - The description of resource discovery.
- Ipam
Resource stringDiscovery Name - The name of the resource
- Operating
Region []stringLists - The list of operating regions for resource discovery.
- Region
Id string - The region ID of the resource
- Resource
Group stringId - The ID of the resource group
- Status string
- The status of the resource discovery instance. Value:
- map[string]string
- Label list information.
- create
Time String - The time when the resource discovery was created.
- ipam
Resource StringDiscovery Description - The description of resource discovery.
- ipam
Resource StringDiscovery Name - The name of the resource
- operating
Region List<String>Lists - The list of operating regions for resource discovery.
- region
Id String - The region ID of the resource
- resource
Group StringId - The ID of the resource group
- status String
- The status of the resource discovery instance. Value:
- Map<String,String>
- Label list information.
- create
Time string - The time when the resource discovery was created.
- ipam
Resource stringDiscovery Description - The description of resource discovery.
- ipam
Resource stringDiscovery Name - The name of the resource
- operating
Region string[]Lists - The list of operating regions for resource discovery.
- region
Id string - The region ID of the resource
- resource
Group stringId - The ID of the resource group
- status string
- The status of the resource discovery instance. Value:
- {[key: string]: string}
- Label list information.
- create_
time str - The time when the resource discovery was created.
- ipam_
resource_ strdiscovery_ description - The description of resource discovery.
- ipam_
resource_ strdiscovery_ name - The name of the resource
- operating_
region_ Sequence[str]lists - The list of operating regions for resource discovery.
- region_
id str - The region ID of the resource
- resource_
group_ strid - The ID of the resource group
- status str
- The status of the resource discovery instance. Value:
- Mapping[str, str]
- Label list information.
- create
Time String - The time when the resource discovery was created.
- ipam
Resource StringDiscovery Description - The description of resource discovery.
- ipam
Resource StringDiscovery Name - The name of the resource
- operating
Region List<String>Lists - The list of operating regions for resource discovery.
- region
Id String - The region ID of the resource
- resource
Group StringId - The ID of the resource group
- status String
- The status of the resource discovery instance. Value:
- Map<String>
- Label list information.
Import
Vpc Ipam Ipam Resource Discovery can be imported using the id, e.g.
$ pulumi import alicloud:vpc/ipamIpamResourceDiscovery:IpamIpamResourceDiscovery example <id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.