mso.SchemaSiteExternalEpgSelector
Explore with Pulumi AI
Create SchemaSiteExternalEpgSelector Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SchemaSiteExternalEpgSelector(name: string, args: SchemaSiteExternalEpgSelectorArgs, opts?: CustomResourceOptions);
@overload
def SchemaSiteExternalEpgSelector(resource_name: str,
args: SchemaSiteExternalEpgSelectorArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SchemaSiteExternalEpgSelector(resource_name: str,
opts: Optional[ResourceOptions] = None,
external_epg_name: Optional[str] = None,
ip: Optional[str] = None,
schema_id: Optional[str] = None,
site_id: Optional[str] = None,
template_name: Optional[str] = None,
name: Optional[str] = None,
schema_site_external_epg_selector_id: Optional[str] = None)
func NewSchemaSiteExternalEpgSelector(ctx *Context, name string, args SchemaSiteExternalEpgSelectorArgs, opts ...ResourceOption) (*SchemaSiteExternalEpgSelector, error)
public SchemaSiteExternalEpgSelector(string name, SchemaSiteExternalEpgSelectorArgs args, CustomResourceOptions? opts = null)
public SchemaSiteExternalEpgSelector(String name, SchemaSiteExternalEpgSelectorArgs args)
public SchemaSiteExternalEpgSelector(String name, SchemaSiteExternalEpgSelectorArgs args, CustomResourceOptions options)
type: mso:SchemaSiteExternalEpgSelector
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 SchemaSiteExternalEpgSelectorArgs
- 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 SchemaSiteExternalEpgSelectorArgs
- 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 SchemaSiteExternalEpgSelectorArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SchemaSiteExternalEpgSelectorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SchemaSiteExternalEpgSelectorArgs
- 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 schemaSiteExternalEpgSelectorResource = new Mso.SchemaSiteExternalEpgSelector("schemaSiteExternalEpgSelectorResource", new()
{
ExternalEpgName = "string",
Ip = "string",
SchemaId = "string",
SiteId = "string",
TemplateName = "string",
Name = "string",
SchemaSiteExternalEpgSelectorId = "string",
});
example, err := mso.NewSchemaSiteExternalEpgSelector(ctx, "schemaSiteExternalEpgSelectorResource", &mso.SchemaSiteExternalEpgSelectorArgs{
ExternalEpgName: pulumi.String("string"),
Ip: pulumi.String("string"),
SchemaId: pulumi.String("string"),
SiteId: pulumi.String("string"),
TemplateName: pulumi.String("string"),
Name: pulumi.String("string"),
SchemaSiteExternalEpgSelectorId: pulumi.String("string"),
})
var schemaSiteExternalEpgSelectorResource = new SchemaSiteExternalEpgSelector("schemaSiteExternalEpgSelectorResource", SchemaSiteExternalEpgSelectorArgs.builder()
.externalEpgName("string")
.ip("string")
.schemaId("string")
.siteId("string")
.templateName("string")
.name("string")
.schemaSiteExternalEpgSelectorId("string")
.build());
schema_site_external_epg_selector_resource = mso.SchemaSiteExternalEpgSelector("schemaSiteExternalEpgSelectorResource",
external_epg_name="string",
ip="string",
schema_id="string",
site_id="string",
template_name="string",
name="string",
schema_site_external_epg_selector_id="string")
const schemaSiteExternalEpgSelectorResource = new mso.SchemaSiteExternalEpgSelector("schemaSiteExternalEpgSelectorResource", {
externalEpgName: "string",
ip: "string",
schemaId: "string",
siteId: "string",
templateName: "string",
name: "string",
schemaSiteExternalEpgSelectorId: "string",
});
type: mso:SchemaSiteExternalEpgSelector
properties:
externalEpgName: string
ip: string
name: string
schemaId: string
schemaSiteExternalEpgSelectorId: string
siteId: string
templateName: string
SchemaSiteExternalEpgSelector 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 SchemaSiteExternalEpgSelector resource accepts the following input properties:
- External
Epg stringName - Ip string
- Schema
Id string - Site
Id string - Template
Name string - Name string
- Schema
Site stringExternal Epg Selector Id
- External
Epg stringName - Ip string
- Schema
Id string - Site
Id string - Template
Name string - Name string
- Schema
Site stringExternal Epg Selector Id
- external
Epg StringName - ip String
- schema
Id String - site
Id String - template
Name String - name String
- schema
Site StringExternal Epg Selector Id
- external
Epg stringName - ip string
- schema
Id string - site
Id string - template
Name string - name string
- schema
Site stringExternal Epg Selector Id
- external_
epg_ strname - ip str
- schema_
id str - site_
id str - template_
name str - name str
- schema_
site_ strexternal_ epg_ selector_ id
- external
Epg StringName - ip String
- schema
Id String - site
Id String - template
Name String - name String
- schema
Site StringExternal Epg Selector Id
Outputs
All input properties are implicitly available as output properties. Additionally, the SchemaSiteExternalEpgSelector 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 SchemaSiteExternalEpgSelector Resource
Get an existing SchemaSiteExternalEpgSelector 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?: SchemaSiteExternalEpgSelectorState, opts?: CustomResourceOptions): SchemaSiteExternalEpgSelector
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
external_epg_name: Optional[str] = None,
ip: Optional[str] = None,
name: Optional[str] = None,
schema_id: Optional[str] = None,
schema_site_external_epg_selector_id: Optional[str] = None,
site_id: Optional[str] = None,
template_name: Optional[str] = None) -> SchemaSiteExternalEpgSelector
func GetSchemaSiteExternalEpgSelector(ctx *Context, name string, id IDInput, state *SchemaSiteExternalEpgSelectorState, opts ...ResourceOption) (*SchemaSiteExternalEpgSelector, error)
public static SchemaSiteExternalEpgSelector Get(string name, Input<string> id, SchemaSiteExternalEpgSelectorState? state, CustomResourceOptions? opts = null)
public static SchemaSiteExternalEpgSelector get(String name, Output<String> id, SchemaSiteExternalEpgSelectorState state, CustomResourceOptions options)
resources: _: type: mso:SchemaSiteExternalEpgSelector 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.
- External
Epg stringName - Ip string
- Name string
- Schema
Id string - Schema
Site stringExternal Epg Selector Id - Site
Id string - Template
Name string
- External
Epg stringName - Ip string
- Name string
- Schema
Id string - Schema
Site stringExternal Epg Selector Id - Site
Id string - Template
Name string
- external
Epg StringName - ip String
- name String
- schema
Id String - schema
Site StringExternal Epg Selector Id - site
Id String - template
Name String
- external
Epg stringName - ip string
- name string
- schema
Id string - schema
Site stringExternal Epg Selector Id - site
Id string - template
Name string
- external_
epg_ strname - ip str
- name str
- schema_
id str - schema_
site_ strexternal_ epg_ selector_ id - site_
id str - template_
name str
- external
Epg StringName - ip String
- name String
- schema
Id String - schema
Site StringExternal Epg Selector Id - site
Id String - template
Name String
Package Details
- Repository
- mso ciscodevnet/terraform-provider-mso
- License
- Notes
- This Pulumi package is based on the
mso
Terraform Provider.