Automated commit by github action: 5536764085

This commit is contained in:
GitHub Action Bot
2023-07-12 21:50:48 +00:00
parent 3f5ba4773c
commit 8b2db36c52
3 changed files with 21 additions and 17 deletions

View File

@@ -1,22 +1,22 @@
get: get:
security: security:
- oauth2: [ sp:notification-mail-from-attributes:read ] - oauth2: [ sp:notification-mail-from-attributes:read ]
operationId: getMailFromAttributes operationId: getMailFromAttributes
tags: tags:
- Notifications - Notifications
summary: Get MAIL FROM Attributes summary: Get MAIL FROM Attributes
description: >- description: >-
Retrieve MAIL FROM attributes for a given AWS SES identity. Retrieve MAIL FROM attributes for a given AWS SES identity.
parameters: parameters:
- in: query - in: query
name: id name: id
required: true required: true
schema: schema:
type: string type: string
description: >- description: >-
Returns the MX and TXT record to be put in your DNS, as well as the MAIL FROM domain status Returns the MX and TXT record to be put in your DNS, as well as the MAIL FROM domain status
example: example:
bobsmith@sailpoint.com bobsmith@sailpoint.com
responses: responses:
'200': '200':
description: MAIL FROM Attributes object description: MAIL FROM Attributes object
@@ -33,4 +33,4 @@ get:
'429': '429':
$ref: '../../v3/responses/429.yaml' $ref: '../../v3/responses/429.yaml'
'500': '500':
$ref: '../../v3/responses/500.yaml' $ref: '../../v3/responses/500.yaml'

View File

@@ -1,9 +1,13 @@
type: object type: object
properties: properties:
id: identity:
type: string type: string
example: BobSmith@sailpoint.com example: bob.smith@sailpoint.com
description: The identity or domain address description: The email identity
mailFromDomain:
type: string
example: foo.sailpoint.com
description: The name of a domain that an email identity uses as a custom MAIL FROM domain
mxRecord: mxRecord:
type: string type: string
example: 10 feedback-smtp.us-east-1.amazonses.com example: 10 feedback-smtp.us-east-1.amazonses.com
@@ -20,4 +24,4 @@ properties:
- FAILED - FAILED
example: PENDING example: PENDING
description: The current status of the MAIL FROM verification description: The current status of the MAIL FROM verification
description: MAIL FROM attributes for a domain / identity description: MAIL FROM attributes for a domain / identity

View File

@@ -1324,7 +1324,7 @@ paths:
$ref: './beta/paths/managed-clusters.yaml' $ref: './beta/paths/managed-clusters.yaml'
/mail-from-attributes: /mail-from-attributes:
$ref: './beta/paths/mail-from-attributes.yaml' $ref: './beta/paths/mail-from-attributes.yaml'
/mail-from-attribute/{id}: /mail-from-attributes/{identity}:
$ref: './beta/paths/mail-from-attribute.yaml' $ref: './beta/paths/mail-from-attribute.yaml'
/mfa/{method}/config: /mfa/{method}/config:
$ref: './beta/paths/mfa-config.yaml' $ref: './beta/paths/mfa-config.yaml'