Class NetworkSourcesSummary
A network source specifies a list of source IP addresses that are allowed to make authorization requests. Use the network source in policy statements to restrict access to only requests that come from the specified IPs. For more information, see Managing Network Sources.
Inherited Members
Namespace: Oci.IdentityService.Models
Assembly: OCI.DotNetSDK.Identity.dll
Syntax
public class NetworkSourcesSummary
Properties
CompartmentId
Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type | Description |
---|---|
string | The OCID of the tenancy (root compartment) containing the network source. |
Remarks
Required
DefinedTags
Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, Dictionary<string, object>> | Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations": {"CostCenter": "42"}} |
Description
Declaration
[Required(ErrorMessage = "Description is required.")]
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type | Description |
---|---|
string | The description you assign to the network source. Does not have to be unique, and it's changeable. |
Remarks
Required
FreeformTags
Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, string> | Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"} |
Id
Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type | Description |
---|---|
string | The OCID of the network source. |
Remarks
Required
LifecycleState
Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(StringEnumConverter))]
public NetworkSources.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type | Description |
---|---|
NetworkSources.LifecycleStateEnum? | The network source object's current state. After creating a network source, make sure its |
Remarks
Required
Name
Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string | The name you assign to the network source during creation. The name must be unique across the tenancy and cannot be changed. |
Remarks
Required
PublicSourceList
Declaration
[JsonProperty(PropertyName = "publicSourceList")]
public List<string> PublicSourceList { get; set; }
Property Value
Type | Description |
---|---|
List<string> | A list of allowed public IP addresses and CIDR ranges. |
Services
Declaration
[JsonProperty(PropertyName = "services")]
public List<string> Services { get; set; }
Property Value
Type | Description |
---|---|
List<string> | -- The services attribute has no effect and is reserved for use by Oracle. -- |
TimeCreated
Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type | Description |
---|---|
DateTime? | Date and time the network source was created, in the format defined by RFC3339.
|
Remarks
Required
VirtualSourceList
Declaration
[JsonProperty(PropertyName = "virtualSourceList")]
public List<NetworkSources_virtualSourceList> VirtualSourceList { get; set; }
Property Value
Type | Description |
---|---|
List<NetworkSources_virtualSourceList> | A list of allowed VCN OCID and IP range pairs. Example: "vcnId": "ocid1.vcn.oc1.iad.aaaaaaaaexampleuniqueID", "ipRanges": [ "129.213.39.0/24" ] |