Show / Hide Table of Contents

Class AppExtensionMulticloudServiceAppApp

This extension defines attributes specific to Apps that represent instances of Multicloud Service App

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

Properties

MulticloudPlatformUrl

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

The multicloud platform service URL which the application will invoke for runtime operations such as AWSCredentials api invocation
Added In: 2301202328
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: immutable
  • required: false
  • returned: request
  • type: string
  • uniqueness: none

MulticloudServiceType

Declaration
[Required(ErrorMessage = "MulticloudServiceType is required.")]
[JsonProperty(PropertyName = "multicloudServiceType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AppExtensionMulticloudServiceAppApp.MulticloudServiceTypeEnum? MulticloudServiceType { get; set; }
Property Value
Type Description
AppExtensionMulticloudServiceAppApp.MulticloudServiceTypeEnum?

Specifies the service type for which the application is configured for multicloud integration. For applicable external service types, app will invoke multicloud service for runtime operations
Added In: 2301202328
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: request
  • type: string
  • uniqueness: none
Remarks

Required

In this article
Back to top