Show / Hide Table of Contents

Class BulkEditTagsResourceType

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

Properties

MetadataKeys

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

The metadata keys required to identify the resource.
For example, for a bucket, the value of metadataKeys will be ["namespaceName", "bucketName"]. This information will match the API documentation. See UpdateBucket and DeleteBucket.

ResourceType

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

The unique name of the resource type.

Remarks

Required

In this article
Back to top