Show / Hide Table of Contents

Class CpeDeviceShapeDetail

The detailed information about a particular CPE device type. Compare with {@link CpeDeviceShapeSummary}.

Inheritance
object
CpeDeviceShapeDetail
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CoreService.Models
Assembly: OCI.DotNetSDK.Core.dll
Syntax
public class CpeDeviceShapeDetail

Properties

CpeDeviceInfo

Declaration
[JsonProperty(PropertyName = "cpeDeviceInfo")]
public CpeDeviceInfo CpeDeviceInfo { get; set; }
Property Value
Type Description
CpeDeviceInfo

CpeDeviceShapeId

Declaration
[JsonProperty(PropertyName = "cpeDeviceShapeId")]
public string CpeDeviceShapeId { get; set; }
Property Value
Type Description
string

The OCID of the CPE device shape. This value uniquely identifies the type of CPE device.

Parameters

Declaration
[JsonProperty(PropertyName = "parameters")]
public List<CpeDeviceConfigQuestion> Parameters { get; set; }
Property Value
Type Description
List<CpeDeviceConfigQuestion>

For certain CPE devices types, the customer can provide answers to questions that are specific to the device type. This attribute contains a list of those questions. The Networking service merges the answers with other information and renders a set of CPE configuration content. To provide the answers, use {@link #updateTunnelCpeDeviceConfig(UpdateTunnelCpeDeviceConfigRequest) updateTunnelCpeDeviceConfig}.

Template

Declaration
[JsonProperty(PropertyName = "template")]
public string Template { get; set; }
Property Value
Type Description
string

A template of CPE device configuration information that will be merged with the customer's answers to the questions to render the final CPE device configuration content. Also see:

  • {@link #getCpeDeviceConfigContent(GetCpeDeviceConfigContentRequest) getCpeDeviceConfigContent}
  • {@link #getIpsecCpeDeviceConfigContent(GetIpsecCpeDeviceConfigContentRequest) getIpsecCpeDeviceConfigContent}
  • {@link #getTunnelCpeDeviceConfigContent(GetTunnelCpeDeviceConfigContentRequest) getTunnelCpeDeviceConfigContent}
In this article
Back to top