mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-10 04:19:42 +00:00
Update to go SDK docs: 15029001030
This commit is contained in:
@@ -19,7 +19,7 @@ Name | Type | Description | Notes
|
||||
**RequestType** | Pointer to [**NullableAccessRequestType**](access-request-type) | | [optional]
|
||||
**RequestedItems** | [**[]AccessRequestItem**](access-request-item) | |
|
||||
**ClientMetadata** | Pointer to **map[string]string** | Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on associated APIs such as /account-activities. | [optional]
|
||||
**RequestedForWithRequestedItems** | Pointer to [**[]RequestedForDtoRef**](requested-for-dto-ref) | Additional submit data structure with requestedFor containing requestedItems allowing distinction for each request item and Identity. * Can only be used when 'requestedFor' and 'requestedItems' are not separately provided * Adds ability to specify which account the user wants the access on, in case they have multiple accounts on a source * Allows the ability to request items with different remove dates * Also allows different combinations of request items and identities in the same request | [optional]
|
||||
**RequestedForWithRequestedItems** | Pointer to [**[]RequestedForDtoRef**](requested-for-dto-ref) | Additional submit data structure with requestedFor containing requestedItems allowing distinction for each request item and Identity. * Can only be used when 'requestedFor' and 'requestedItems' are not separately provided * Adds ability to specify which account the user wants the access on, in case they have multiple accounts on a source * Allows the ability to request items with different remove dates * Also allows different combinations of request items and identities in the same request * Only for use in GRANT_ACCESS type requests | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ Name | Type | Description | Notes
|
||||
**ClientMetadata** | Pointer to **map[string]string** | Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on associated APIs such as /account-activities and /access-request-status. | [optional]
|
||||
**RemoveDate** | Pointer to **SailPointTime** | The date the role or access profile or entitlement is no longer assigned to the specified identity. Also known as the expiration date. * Specify a date in the future. * The current SLA for the deprovisioning is 24 hours. * This date can be modified to either extend or decrease the duration of access item assignments for the specified identity. You can change the expiration date for requests for yourself or direct reports, but you cannot remove an expiration date on an already approved item. If the access request has not been approved, you can cancel it and submit a new one without the expiration. If it has already been approved, then you have to revoke the access and then re-request without the expiration. | [optional]
|
||||
**AssignmentId** | Pointer to **NullableString** | The assignmentId for a specific role assignment on the identity. This id is used to revoke that specific roleAssignment on that identity. * For use with REVOKE_ACCESS requests for roles for identities with multiple accounts on a single source. | [optional]
|
||||
**NativeIdentity** | Pointer to **NullableString** | The 'distinguishedName' field for an account on the identity, also called nativeIdentity. This nativeIdentity is used to revoke a specific attributeAssignment on the identity. * For use with REVOKE_ACCESS requests for entitlements for identities with multiple accounts on a single source. | [optional]
|
||||
**NativeIdentity** | Pointer to **NullableString** | The unique identifier for an account on the identity, designated as the account ID attribute in the source's account schema. This is used to revoke a specific attributeAssignment on the identity. * For use with REVOKE_ACCESS requests for entitlements for identities with multiple accounts on a single source. | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
|
||||
@@ -18,6 +18,7 @@ Name | Type | Description | Notes
|
||||
**ApprovalSchemes** | Pointer to [**[]EntitlementApprovalScheme**](entitlement-approval-scheme) | Ordered list of approval steps for the access request. Empty when no approval is required. | [optional]
|
||||
**RequestCommentRequired** | Pointer to **bool** | If the requester must provide a comment during access request. | [optional] [default to false]
|
||||
**DenialCommentRequired** | Pointer to **bool** | If the reviewer must provide a comment when denying the access request. | [optional] [default to false]
|
||||
**ReauthorizationRequired** | Pointer to **bool** | Is Reauthorization Required | [optional] [default to false]
|
||||
|
||||
## Methods
|
||||
|
||||
@@ -113,4 +114,29 @@ SetDenialCommentRequired sets DenialCommentRequired field to given value.
|
||||
|
||||
HasDenialCommentRequired returns a boolean if a field has been set.
|
||||
|
||||
### GetReauthorizationRequired
|
||||
|
||||
`func (o *EntitlementAccessRequestConfig) GetReauthorizationRequired() bool`
|
||||
|
||||
GetReauthorizationRequired returns the ReauthorizationRequired field if non-nil, zero value otherwise.
|
||||
|
||||
### GetReauthorizationRequiredOk
|
||||
|
||||
`func (o *EntitlementAccessRequestConfig) GetReauthorizationRequiredOk() (*bool, bool)`
|
||||
|
||||
GetReauthorizationRequiredOk returns a tuple with the ReauthorizationRequired field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetReauthorizationRequired
|
||||
|
||||
`func (o *EntitlementAccessRequestConfig) SetReauthorizationRequired(v bool)`
|
||||
|
||||
SetReauthorizationRequired sets ReauthorizationRequired field to given value.
|
||||
|
||||
### HasReauthorizationRequired
|
||||
|
||||
`func (o *EntitlementAccessRequestConfig) HasReauthorizationRequired() bool`
|
||||
|
||||
HasReauthorizationRequired returns a boolean if a field has been set.
|
||||
|
||||
|
||||
|
||||
@@ -16,6 +16,7 @@ tags: ['SDK', 'Software Development Kit', 'EntitlementRequestConfig', 'BetaEntit
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**AccessRequestConfig** | Pointer to [**EntitlementAccessRequestConfig**](entitlement-access-request-config) | | [optional]
|
||||
**RevocationRequestConfig** | Pointer to [**EntitlementRevocationRequestConfig**](entitlement-revocation-request-config) | | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
@@ -61,4 +62,29 @@ SetAccessRequestConfig sets AccessRequestConfig field to given value.
|
||||
|
||||
HasAccessRequestConfig returns a boolean if a field has been set.
|
||||
|
||||
### GetRevocationRequestConfig
|
||||
|
||||
`func (o *EntitlementRequestConfig) GetRevocationRequestConfig() EntitlementRevocationRequestConfig`
|
||||
|
||||
GetRevocationRequestConfig returns the RevocationRequestConfig field if non-nil, zero value otherwise.
|
||||
|
||||
### GetRevocationRequestConfigOk
|
||||
|
||||
`func (o *EntitlementRequestConfig) GetRevocationRequestConfigOk() (*EntitlementRevocationRequestConfig, bool)`
|
||||
|
||||
GetRevocationRequestConfigOk returns a tuple with the RevocationRequestConfig field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetRevocationRequestConfig
|
||||
|
||||
`func (o *EntitlementRequestConfig) SetRevocationRequestConfig(v EntitlementRevocationRequestConfig)`
|
||||
|
||||
SetRevocationRequestConfig sets RevocationRequestConfig field to given value.
|
||||
|
||||
### HasRevocationRequestConfig
|
||||
|
||||
`func (o *EntitlementRequestConfig) HasRevocationRequestConfig() bool`
|
||||
|
||||
HasRevocationRequestConfig returns a boolean if a field has been set.
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,64 @@
|
||||
---
|
||||
id: beta-entitlement-revocation-request-config
|
||||
title: EntitlementRevocationRequestConfig
|
||||
pagination_label: EntitlementRevocationRequestConfig
|
||||
sidebar_label: EntitlementRevocationRequestConfig
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'EntitlementRevocationRequestConfig', 'BetaEntitlementRevocationRequestConfig']
|
||||
slug: /tools/sdk/go/beta/models/entitlement-revocation-request-config
|
||||
tags: ['SDK', 'Software Development Kit', 'EntitlementRevocationRequestConfig', 'BetaEntitlementRevocationRequestConfig']
|
||||
---
|
||||
|
||||
# EntitlementRevocationRequestConfig
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**ApprovalSchemes** | Pointer to [**[]EntitlementApprovalScheme**](entitlement-approval-scheme) | Ordered list of approval steps for the access request. Empty when no approval is required. | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewEntitlementRevocationRequestConfig
|
||||
|
||||
`func NewEntitlementRevocationRequestConfig() *EntitlementRevocationRequestConfig`
|
||||
|
||||
NewEntitlementRevocationRequestConfig instantiates a new EntitlementRevocationRequestConfig object
|
||||
This constructor will assign default values to properties that have it defined,
|
||||
and makes sure properties required by API are set, but the set of arguments
|
||||
will change when the set of required properties is changed
|
||||
|
||||
### NewEntitlementRevocationRequestConfigWithDefaults
|
||||
|
||||
`func NewEntitlementRevocationRequestConfigWithDefaults() *EntitlementRevocationRequestConfig`
|
||||
|
||||
NewEntitlementRevocationRequestConfigWithDefaults instantiates a new EntitlementRevocationRequestConfig object
|
||||
This constructor will only assign default values to properties that have it defined,
|
||||
but it doesn't guarantee that properties required by API are set
|
||||
|
||||
### GetApprovalSchemes
|
||||
|
||||
`func (o *EntitlementRevocationRequestConfig) GetApprovalSchemes() []EntitlementApprovalScheme`
|
||||
|
||||
GetApprovalSchemes returns the ApprovalSchemes field if non-nil, zero value otherwise.
|
||||
|
||||
### GetApprovalSchemesOk
|
||||
|
||||
`func (o *EntitlementRevocationRequestConfig) GetApprovalSchemesOk() (*[]EntitlementApprovalScheme, bool)`
|
||||
|
||||
GetApprovalSchemesOk returns a tuple with the ApprovalSchemes field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetApprovalSchemes
|
||||
|
||||
`func (o *EntitlementRevocationRequestConfig) SetApprovalSchemes(v []EntitlementApprovalScheme)`
|
||||
|
||||
SetApprovalSchemes sets ApprovalSchemes field to given value.
|
||||
|
||||
### HasApprovalSchemes
|
||||
|
||||
`func (o *EntitlementRevocationRequestConfig) HasApprovalSchemes() bool`
|
||||
|
||||
HasApprovalSchemes returns a boolean if a field has been set.
|
||||
|
||||
|
||||
@@ -20,8 +20,6 @@ Name | Type | Description | Notes
|
||||
**Comment** | Pointer to **string** | Comment provided by requester. * Comment is required when the request is of type Revoke Access. | [optional]
|
||||
**ClientMetadata** | Pointer to **map[string]string** | Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on associated APIs such as /account-activities and /access-request-status. | [optional]
|
||||
**RemoveDate** | Pointer to **SailPointTime** | The date the role or access profile or entitlement is no longer assigned to the specified identity. Also known as the expiration date. * Specify a date in the future. * The current SLA for the deprovisioning is 24 hours. * This date can be modified to either extend or decrease the duration of access item assignments for the specified identity. You can change the expiration date for requests for yourself or direct reports, but you cannot remove an expiration date on an already approved item. If the access request has not been approved, you can cancel it and submit a new one without the expiration. If it has already been approved, then you have to revoke the access and then re-request without the expiration. | [optional]
|
||||
**AssignmentId** | Pointer to **NullableString** | The assignmentId for a specific role assignment on the identity. This id is used to revoke that specific roleAssignment on that identity. * For use with REVOKE_ACCESS requests for roles for identities with multiple accounts on a single source. | [optional]
|
||||
**NativeIdentity** | Pointer to **NullableString** | The 'distinguishedName' field for an account on the identity, also called nativeIdentity. This nativeIdentity is used to revoke a specific attributeAssignment on the identity. * For use with REVOKE_ACCESS requests for entitlements for identities with multiple accounts on a single source. | [optional]
|
||||
**AccountSelection** | Pointer to [**[]SourceItemRef**](source-item-ref) | The accounts where the access item will be provisioned to * Includes selections performed by the user in the event of multiple accounts existing on the same source * Also includes details for sources where user only has one account | [optional]
|
||||
|
||||
## Methods
|
||||
@@ -158,76 +156,6 @@ SetRemoveDate sets RemoveDate field to given value.
|
||||
|
||||
HasRemoveDate returns a boolean if a field has been set.
|
||||
|
||||
### GetAssignmentId
|
||||
|
||||
`func (o *RequestedItemDtoRef) GetAssignmentId() string`
|
||||
|
||||
GetAssignmentId returns the AssignmentId field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAssignmentIdOk
|
||||
|
||||
`func (o *RequestedItemDtoRef) GetAssignmentIdOk() (*string, bool)`
|
||||
|
||||
GetAssignmentIdOk returns a tuple with the AssignmentId field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAssignmentId
|
||||
|
||||
`func (o *RequestedItemDtoRef) SetAssignmentId(v string)`
|
||||
|
||||
SetAssignmentId sets AssignmentId field to given value.
|
||||
|
||||
### HasAssignmentId
|
||||
|
||||
`func (o *RequestedItemDtoRef) HasAssignmentId() bool`
|
||||
|
||||
HasAssignmentId returns a boolean if a field has been set.
|
||||
|
||||
### SetAssignmentIdNil
|
||||
|
||||
`func (o *RequestedItemDtoRef) SetAssignmentIdNil(b bool)`
|
||||
|
||||
SetAssignmentIdNil sets the value for AssignmentId to be an explicit nil
|
||||
|
||||
### UnsetAssignmentId
|
||||
`func (o *RequestedItemDtoRef) UnsetAssignmentId()`
|
||||
|
||||
UnsetAssignmentId ensures that no value is present for AssignmentId, not even an explicit nil
|
||||
### GetNativeIdentity
|
||||
|
||||
`func (o *RequestedItemDtoRef) GetNativeIdentity() string`
|
||||
|
||||
GetNativeIdentity returns the NativeIdentity field if non-nil, zero value otherwise.
|
||||
|
||||
### GetNativeIdentityOk
|
||||
|
||||
`func (o *RequestedItemDtoRef) GetNativeIdentityOk() (*string, bool)`
|
||||
|
||||
GetNativeIdentityOk returns a tuple with the NativeIdentity field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetNativeIdentity
|
||||
|
||||
`func (o *RequestedItemDtoRef) SetNativeIdentity(v string)`
|
||||
|
||||
SetNativeIdentity sets NativeIdentity field to given value.
|
||||
|
||||
### HasNativeIdentity
|
||||
|
||||
`func (o *RequestedItemDtoRef) HasNativeIdentity() bool`
|
||||
|
||||
HasNativeIdentity returns a boolean if a field has been set.
|
||||
|
||||
### SetNativeIdentityNil
|
||||
|
||||
`func (o *RequestedItemDtoRef) SetNativeIdentityNil(b bool)`
|
||||
|
||||
SetNativeIdentityNil sets the value for NativeIdentity to be an explicit nil
|
||||
|
||||
### UnsetNativeIdentity
|
||||
`func (o *RequestedItemDtoRef) UnsetNativeIdentity()`
|
||||
|
||||
UnsetNativeIdentity ensures that no value is present for NativeIdentity, not even an explicit nil
|
||||
### GetAccountSelection
|
||||
|
||||
`func (o *RequestedItemDtoRef) GetAccountSelection() []SourceItemRef`
|
||||
|
||||
@@ -16,6 +16,7 @@ tags: ['SDK', 'Software Development Kit', 'SourceEntitlementRequestConfig', 'Bet
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**AccessRequestConfig** | Pointer to [**EntitlementAccessRequestConfig**](entitlement-access-request-config) | | [optional]
|
||||
**RevocationRequestConfig** | Pointer to [**EntitlementRevocationRequestConfig**](entitlement-revocation-request-config) | | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
@@ -61,4 +62,29 @@ SetAccessRequestConfig sets AccessRequestConfig field to given value.
|
||||
|
||||
HasAccessRequestConfig returns a boolean if a field has been set.
|
||||
|
||||
### GetRevocationRequestConfig
|
||||
|
||||
`func (o *SourceEntitlementRequestConfig) GetRevocationRequestConfig() EntitlementRevocationRequestConfig`
|
||||
|
||||
GetRevocationRequestConfig returns the RevocationRequestConfig field if non-nil, zero value otherwise.
|
||||
|
||||
### GetRevocationRequestConfigOk
|
||||
|
||||
`func (o *SourceEntitlementRequestConfig) GetRevocationRequestConfigOk() (*EntitlementRevocationRequestConfig, bool)`
|
||||
|
||||
GetRevocationRequestConfigOk returns a tuple with the RevocationRequestConfig field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetRevocationRequestConfig
|
||||
|
||||
`func (o *SourceEntitlementRequestConfig) SetRevocationRequestConfig(v EntitlementRevocationRequestConfig)`
|
||||
|
||||
SetRevocationRequestConfig sets RevocationRequestConfig field to given value.
|
||||
|
||||
### HasRevocationRequestConfig
|
||||
|
||||
`func (o *SourceEntitlementRequestConfig) HasRevocationRequestConfig() bool`
|
||||
|
||||
HasRevocationRequestConfig returns a boolean if a field has been set.
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user