Class ApimResource
The Resource definition.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.ApiManagement.dll
Syntax
public class ApimResource : Microsoft.Rest.Azure.IResource
Constructors
ApimResource()
Initializes a new instance of the ApimResource class.
Declaration
public ApimResource ();
ApimResource(String, String, String, IDictionary<String,String>)
Initializes a new instance of the ApimResource class.
Declaration
public ApimResource (string id = null, string name = null, string type = null, System.Collections.Generic.IDictionary<string,string> tags = null);
Parameters
|
String
id
Resource ID. |
|
String
name
Resource name. |
|
String
type
Resource type for API Management resource is set to Microsoft.ApiManagement. |
|
IDictionary<String,String>
tags
Resource tags. |
Properties
Id
Gets resource ID.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="id")]
public string Id { get; }
Property Value
|
String
|
Name
Gets resource name.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="name")]
public string Name { get; }
Property Value
|
String
|
Tags
Gets or sets resource tags.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="tags")]
public System.Collections.Generic.IDictionary<string,string> Tags { get; set; }
Property Value
|
IDictionary<String,String>
|
Type
Gets resource type for API Management resource is set to Microsoft.ApiManagement.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="type")]
public string Type { get; }
Property Value
|
String
|