MonitoredResourceAliasCredential¶
- 
class oci.stack_monitoring.models.MonitoredResourceAliasCredential(**kwargs)¶
- Bases: - object- Monitored Resource Alias Credential Details - Methods - __init__(**kwargs)- Initializes a new MonitoredResourceAliasCredential object with values from keyword arguments. - Attributes - credential- [Required] Gets the credential of this MonitoredResourceAliasCredential. - name- [Required] Gets the name of this MonitoredResourceAliasCredential. - source- [Required] Gets the source of this MonitoredResourceAliasCredential. - 
__init__(**kwargs)¶
- Initializes a new MonitoredResourceAliasCredential object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - source (str) – The value to assign to the source property of this MonitoredResourceAliasCredential.
- name (str) – The value to assign to the name property of this MonitoredResourceAliasCredential.
- credential (oci.stack_monitoring.models.MonitoredResourceAliasSourceCredential) – The value to assign to the credential property of this MonitoredResourceAliasCredential.
 
 - 
credential¶
- [Required] Gets the credential of this MonitoredResourceAliasCredential. - Returns: - The credential of this MonitoredResourceAliasCredential. - Return type: - oci.stack_monitoring.models.MonitoredResourceAliasSourceCredential 
 - 
name¶
- [Required] Gets the name of this MonitoredResourceAliasCredential. The name of the alias, within the context of the source. - Returns: - The name of this MonitoredResourceAliasCredential. - Return type: - str 
 - 
source¶
- [Required] Gets the source of this MonitoredResourceAliasCredential. The source type and source name combination,delimited with (.) separator. Example: {source type}.{source name} and source type max char limit is 63. - Returns: - The source of this MonitoredResourceAliasCredential. - Return type: - str 
 
-