Show / Hide Table of Contents

Class InstanceConfigurationInstanceOptions

Optional mutable instance options. As a part of Instance Metadata Service Security Header, This allows user to disable the legacy imds endpoints.

Inheritance
object
InstanceConfigurationInstanceOptions
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 InstanceConfigurationInstanceOptions

Properties

AreLegacyImdsEndpointsDisabled

Declaration
[JsonProperty(PropertyName = "areLegacyImdsEndpointsDisabled")]
public bool? AreLegacyImdsEndpointsDisabled { get; set; }
Property Value
Type Description
bool?

Whether to disable the legacy (/v1) instance metadata service endpoints. Customers who have migrated to /v2 should set this to true for added security. Default is false.

In this article
Back to top