Show / Hide Table of Contents

Class ServiceTypeSummary

Summary information for a service type.

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

Properties

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

Name of the service type

Remarks

Required

ResourceTypes

Declaration
[Required(ErrorMessage = "ResourceTypes is required.")]
[JsonProperty(PropertyName = "resourceTypes")]
public List<ResourceTypeSummary> ResourceTypes { get; set; }
Property Value
Type Description
List<ResourceTypeSummary>

List of resource types

Remarks

Required

In this article
Back to top