ResourceField¶
-
class
oci.application_migration.models.
ResourceField
(**kwargs)¶ Bases:
object
Resource object that can be used to pass details about any list of resources associated with Migrations. The List of resources are added to ConfigurationField to add the capability to pass lists of resources of any type and group.
Methods
__init__
(**kwargs)Initializes a new ResourceField object with values from keyword arguments. Attributes
group
Gets the group of this ResourceField. name
Gets the name of this ResourceField. type
[Required] Gets the type of this ResourceField. value
[Required] Gets the value of this ResourceField. -
__init__
(**kwargs)¶ Initializes a new ResourceField object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - name (str) – The value to assign to the name property of this ResourceField.
- group (str) – The value to assign to the group property of this ResourceField.
- type (str) – The value to assign to the type property of this ResourceField.
- value (str) – The value to assign to the value property of this ResourceField.
-
group
¶ Gets the group of this ResourceField. The name of the group to which this field belongs to.
Returns: The group of this ResourceField. Return type: str
-
name
¶ Gets the name of this ResourceField. The display name of the resource field.
Returns: The name of this ResourceField. Return type: str
-
type
¶ [Required] Gets the type of this ResourceField. The type of the resource field.
Returns: The type of this ResourceField. Return type: str
-
value
¶ [Required] Gets the value of this ResourceField. The value of the field.
Returns: The value of this ResourceField. Return type: str
-