Show / Hide Table of Contents

Class RequestResourceValidationDetails

Request to initiate resource validation.

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

Properties

IsApplicableToAllResources

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

A boolean flag that decides if all resources within the fleet should be part of the validation.

ResourceIds

Declaration
[JsonProperty(PropertyName = "resourceIds")]
public List<string> ResourceIds { get; set; }
Property Value
Type Description
List<string>

Resource OCIDS to be included for validation.

In this article
Back to top