ApplicationProps
Properties for defining a Application
.
See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-ram-application
Initializer
using AlibabaCloud.SDK.ROS.CDK.Ram;
new ApplicationProps {
object AppName,
object AppType,
object DisplayName,
object AccessTokenValidity = null,
object IsMultiTenant = null,
object PredefinedScopes = null,
object RedirectUris = null,
object RefreshTokenValidity = null,
object RequiredScopes = null,
object SecretRequired = null
};
Properties
Name | Type | Description |
---|---|---|
AppName |
object |
Property appName: The name of the application. |
AppType |
object |
Property appType: The type of the application. |
DisplayName |
object |
Property displayName: The display name of the application. |
AccessTokenValidity |
object |
Property accessTokenValidity: The validity period of the access token. |
IsMultiTenant |
object |
Property isMultiTenant: Indicates whether the application can be installed by using other Alibaba Cloud accounts. |
PredefinedScopes |
object |
Property predefinedScopes: List of the scopes of application permissions. |
RedirectUris |
object |
Property redirectUris: List of the callback URLs. |
RefreshTokenValidity |
object |
Property refreshTokenValidity: The validity period of the refreshed token. |
RequiredScopes |
object |
Property requiredScopes: Required scope of application permissions. |
SecretRequired |
object |
Property secretRequired: Indicates whether a secret is required. |
AppName
Required
public object AppName { get; set; }
- Type: object
Property appName: The name of the application.
The name can be up to 64 characters in length. The name can contain letters, digits, periods (.), underscores (_), and hyphens (-).
AppType
Required
public object AppType { get; set; }
- Type: object
Property appType: The type of the application.
Valid values:
- WebApp: a web application that interacts with a browser.
- NativeApp: a native application that runs on an operating system, such as a desktop operating system or a mobile operating system.
- ServerApp: an application that accesses Alibaba Cloud services without the need of manual user logon. User provisioning is automated based on the System for Cross-Domain Identity Management (SCIM) protocol.
DisplayName
Required
public object DisplayName { get; set; }
- Type: object
Property displayName: The display name of the application.
The name can be up to 24 characters in length.
AccessTokenValidity
Optional
public object AccessTokenValidity { get; set; }
- Type: object
Property accessTokenValidity: The validity period of the access token.
Valid values: 900 to 10800. Unit: seconds. Default value: 3600.
IsMultiTenant
Optional
public object IsMultiTenant { get; set; }
- Type: object
Property isMultiTenant: Indicates whether the application can be installed by using other Alibaba Cloud accounts.
Valid values:
- true: If you do not set this parameter for applications of the NativeApp and ServerApp types, true is used.
- false: If you do not set this parameter for applications of the WebApp type, false is used.
PredefinedScopes
Optional
public object PredefinedScopes { get; set; }
- Type: object
Property predefinedScopes: List of the scopes of application permissions.
RedirectUris
Optional
public object RedirectUris { get; set; }
- Type: object
Property redirectUris: List of the callback URLs.
RefreshTokenValidity
Optional
public object RefreshTokenValidity { get; set; }
- Type: object
Property refreshTokenValidity: The validity period of the refreshed token.
Valid values: 7200 to 31536000. Unit: seconds. Default value:
- For applications of the WebApp and ServerApp types, if this parameter is left empty, the value 2592000 is used. The value 2592000 indicates that the validity period of the refreshed token is 30 days.
- For applications of the NativeApp type, if this parameter is left empty, the value 7776000 is used. The value 7776000 indicates that the validity period of the refreshed token is 90 days.
RequiredScopes
Optional
public object RequiredScopes { get; set; }
- Type: object
Property requiredScopes: Required scope of application permissions.
You can set one or more of the scopes set in the PredefinedScopes to be required, so that when a user authorizes the application, the required scopes are selected by default and cannot be canceled. Notes: If you set a RequiredScopes entry that is not within the scope of PredefinedScopes, the required range will not take effect.
SecretRequired
Optional
public object SecretRequired { get; set; }
- Type: object
Property secretRequired: Indicates whether a secret is required.
Valid values: true and false. Note:
- For applications of the WebApp and ServerApp types, this parameter is automatically set to true and cannot be changed.
- For applications of the NativeApp type, this parameter can be set to true or false. If you do not set this parameter, false is used. Applications of the NativeApp type run in untrusted environments and the secrets of these applications are not protected. Therefore, we recommend that you do not set this parameter to true unless otherwise specified.