mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 04:19:37 +00:00
Update python SDK docs: 15528463639
This commit is contained in:
@@ -24,6 +24,8 @@ Name | Type | Description | Notes
|
||||
**description** | **str** | Description of machine identity | [optional]
|
||||
**manually_edited** | **bool** | Indicates if the machine identity has been manually edited | [optional] [default to False]
|
||||
**attributes** | **object** | A map of custom machine identity attributes | [optional]
|
||||
**subtype** | **str** | The subtype value associated to the machine identity | [required]
|
||||
**owners** | [**MachineIdentityDtoOwners**](machine-identity-dto-owners) | | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
@@ -39,7 +41,16 @@ modified='2015-05-28T14:07:17Z',
|
||||
business_application='ADService',
|
||||
description='',
|
||||
manually_edited=True,
|
||||
attributes={"Region":"EU"}
|
||||
attributes={"Region":"EU"},
|
||||
subtype='Application',
|
||||
owners=sailpoint.v2025.models.machine_identity_dto_owners.MachineIdentityDto_owners(
|
||||
primary_identity = sailpoint.v2025.models.machine_identity_dto_owners_primary_identity.MachineIdentityDto_owners_primaryIdentity(),
|
||||
secondary_identities = [
|
||||
sailpoint.v2025.models.base_reference_dto.BaseReferenceDto(
|
||||
type = 'IDENTITY',
|
||||
id = '2c91808568c529c60168cca6f90c1313',
|
||||
name = 'William Wilson', )
|
||||
], )
|
||||
)
|
||||
|
||||
```
|
||||
|
||||
@@ -0,0 +1,41 @@
|
||||
---
|
||||
id: v2025-machine-identity-dto-owners
|
||||
title: MachineIdentityDtoOwners
|
||||
pagination_label: MachineIdentityDtoOwners
|
||||
sidebar_label: MachineIdentityDtoOwners
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'MachineIdentityDtoOwners', 'V2025MachineIdentityDtoOwners']
|
||||
slug: /tools/sdk/python/v2025/models/machine-identity-dto-owners
|
||||
tags: ['SDK', 'Software Development Kit', 'MachineIdentityDtoOwners', 'V2025MachineIdentityDtoOwners']
|
||||
---
|
||||
|
||||
# MachineIdentityDtoOwners
|
||||
|
||||
The owner configuration associated to the machine identity
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**primary_identity** | **object** | Defines the identity which is selected as the primary owner | [required]
|
||||
**secondary_identities** | [**[]BaseReferenceDto**](base-reference-dto) | Defines the identities which are selected as secondary owners | [required]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.v2025.models.machine_identity_dto_owners import MachineIdentityDtoOwners
|
||||
|
||||
machine_identity_dto_owners = MachineIdentityDtoOwners(
|
||||
primary_identity=sailpoint.v2025.models.machine_identity_dto_owners_primary_identity.MachineIdentityDto_owners_primaryIdentity(),
|
||||
secondary_identities=[
|
||||
sailpoint.v2025.models.base_reference_dto.BaseReferenceDto(
|
||||
type = 'IDENTITY',
|
||||
id = '2c91808568c529c60168cca6f90c1313',
|
||||
name = 'William Wilson', )
|
||||
]
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user