Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add x509 authenticator configuration related resource types to IDN_CONFIG_TYPE table #6366

Merged
merged 2 commits into from
Jan 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1524,7 +1524,9 @@ INSERT INTO IDN_CONFIG_TYPE (ID, NAME, DESCRIPTION) VALUES
('1fc809a0-dc0d-4cb2-82f3-58934d389236', 'CUSTOM_TEXT', 'A resource type to keep the tenant custom text preferences.'),
('c385a42a-5697-4604-b49a-62456621e926', 'DCR_CONFIGURATION', 'A resource type to keep the DCR configurations.'),
('3e5b1f91-72d8-4fbc-94d1-1b9a4f8c3b07', 'IMPERSONATION_CONFIGURATION', 'A resource type to keep the tenant impersonation preferences.'),
('a731af34-f96a-4069-812d-30dc3b713a28', 'response-max-limit-configurations', 'A resource type to max limit configurations for API response.')
('a731af34-f96a-4069-812d-30dc3b713a28', 'response-max-limit-configurations', 'A resource type to max limit configurations for API response.'),
('91116e95-ca63-4787-be2d-de13d04d1b55', 'X509_VALIDATOR', 'A resource type to keep the x509 validators.'),
('a17952b9-0942-4669-8529-479ca481146b', 'X509_REVOCATION_VALIDATION_CA', 'A resource type to keep the x509 revocation validation certificate authorities.')
/

CREATE TABLE IDN_CONFIG_RESOURCE (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -985,7 +985,9 @@ INSERT INTO IDN_CONFIG_TYPE (ID, NAME, DESCRIPTION) VALUES
('1fc809a0-dc0d-4cb2-82f3-58934d389236', 'CUSTOM_TEXT', 'A resource type to keep the tenant custom text preferences.'),
('c385a42a-5697-4604-b49a-62456621e926', 'DCR_CONFIGURATION', 'A resource type to keep the DCR configurations.'),
('3e5b1f91-72d8-4fbc-94d1-1b9a4f8c3b07', 'IMPERSONATION_CONFIGURATION', 'A resource type to keep the tenant impersonation preferences.'),
('a731af34-f96a-4069-812d-30dc3b713a28', 'response-max-limit-configurations', 'A resource type to max limit configurations for API response.');
('a731af34-f96a-4069-812d-30dc3b713a28', 'response-max-limit-configurations', 'A resource type to max limit configurations for API response.'),
('91116e95-ca63-4787-be2d-de13d04d1b55', 'X509_VALIDATOR', 'A resource type to keep the x509 validators.'),
('a17952b9-0942-4669-8529-479ca481146b', 'X509_REVOCATION_VALIDATION_CA', 'A resource type to keep the x509 revocation validation certificate authorities.');

CREATE TABLE IF NOT EXISTS IDN_CONFIG_RESOURCE (
ID VARCHAR(255) NOT NULL,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1093,7 +1093,9 @@ INSERT INTO IDN_CONFIG_TYPE (ID, NAME, DESCRIPTION) VALUES
('1fc809a0-dc0d-4cb2-82f3-58934d389236', 'CUSTOM_TEXT', 'A resource type to keep the tenant custom text preferences.'),
('c385a42a-5697-4604-b49a-62456621e926', 'DCR_CONFIGURATION', 'A resource type to keep the DCR configurations.'),
('3e5b1f91-72d8-4fbc-94d1-1b9a4f8c3b07', 'IMPERSONATION_CONFIGURATION', 'A resource type to keep the tenant impersonation preferences.'),
('a731af34-f96a-4069-812d-30dc3b713a28', 'response-max-limit-configurations', 'A resource type to max limit configurations for API response.');
('a731af34-f96a-4069-812d-30dc3b713a28', 'response-max-limit-configurations', 'A resource type to max limit configurations for API response.'),
('91116e95-ca63-4787-be2d-de13d04d1b55', 'X509_VALIDATOR', 'A resource type to keep the x509 validators.'),
('a17952b9-0942-4669-8529-479ca481146b', 'X509_REVOCATION_VALIDATION_CA', 'A resource type to keep the x509 revocation validation certificate authorities.');

IF NOT EXISTS (SELECT * FROM SYS.OBJECTS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].[IDN_CONFIG_RESOURCE]')
AND TYPE IN (N'U'))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,9 @@ INSERT INTO IDN_CONFIG_TYPE (ID, NAME, DESCRIPTION) VALUES
('1fc809a0-dc0d-4cb2-82f3-58934d389236', 'CUSTOM_TEXT', 'A resource type to keep the tenant custom text preferences.'),
('c385a42a-5697-4604-b49a-62456621e926', 'DCR_CONFIGURATION', 'A resource type to keep the DCR configurations.'),
('3e5b1f91-72d8-4fbc-94d1-1b9a4f8c3b07', 'IMPERSONATION_CONFIGURATION', 'A resource type to keep the tenant impersonation preferences.'),
('a731af34-f96a-4069-812d-30dc3b713a28', 'response-max-limit-configurations', 'A resource type to max limit configurations for API response.');
('a731af34-f96a-4069-812d-30dc3b713a28', 'response-max-limit-configurations', 'A resource type to max limit configurations for API response.'),
('91116e95-ca63-4787-be2d-de13d04d1b55', 'X509_VALIDATOR', 'A resource type to keep the x509 validators.'),
('a17952b9-0942-4669-8529-479ca481146b', 'X509_REVOCATION_VALIDATION_CA', 'A resource type to keep the x509 revocation validation certificate authorities.');

CREATE TABLE IF NOT EXISTS IDN_CONFIG_RESOURCE (
ID VARCHAR(255) NOT NULL,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1014,7 +1014,9 @@ INSERT INTO IDN_CONFIG_TYPE (ID, NAME, DESCRIPTION) VALUES
('1fc809a0-dc0d-4cb2-82f3-58934d389236', 'CUSTOM_TEXT', 'A resource type to keep the tenant custom text preferences.'),
('c385a42a-5697-4604-b49a-62456621e926', 'DCR_CONFIGURATION', 'A resource type to keep the DCR configurations.'),
('3e5b1f91-72d8-4fbc-94d1-1b9a4f8c3b07', 'IMPERSONATION_CONFIGURATION', 'A resource type to keep the tenant impersonation preferences.'),
('a731af34-f96a-4069-812d-30dc3b713a28', 'response-max-limit-configurations', 'A resource type to max limit configurations for API response.');
('a731af34-f96a-4069-812d-30dc3b713a28', 'response-max-limit-configurations', 'A resource type to max limit configurations for API response.'),
('91116e95-ca63-4787-be2d-de13d04d1b55', 'X509_VALIDATOR', 'A resource type to keep the x509 validators.'),
('a17952b9-0942-4669-8529-479ca481146b', 'X509_REVOCATION_VALIDATION_CA', 'A resource type to keep the x509 revocation validation certificate authorities.');

CREATE TABLE IF NOT EXISTS IDN_CONFIG_RESOURCE (
ID VARCHAR(255) NOT NULL,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1698,6 +1698,10 @@ INTO IDN_CONFIG_TYPE (ID, NAME, DESCRIPTION) VALUES
('3e5b1f91-72d8-4fbc-94d1-1b9a4f8c3b07', 'IMPERSONATION_CONFIGURATION', 'A resource type to keep the tenant impersonation preferences.')
INTO IDN_CONFIG_TYPE (ID, NAME, DESCRIPTION) VALUES
('a731af34-f96a-4069-812d-30dc3b713a28', 'response-max-limit-configurations', 'A resource type to max limit configurations for API response.')
INTO IDN_CONFIG_TYPE (ID, NAME, DESCRIPTION) VALUES
('91116e95-ca63-4787-be2d-de13d04d1b55', 'X509_VALIDATOR', 'A resource type to keep the x509 validators.')
INTO IDN_CONFIG_TYPE (ID, NAME, DESCRIPTION) VALUES
('a17952b9-0942-4669-8529-479ca481146b', 'X509_REVOCATION_VALIDATION_CA', 'A resource type to keep the x509 revocation validation certificate authorities.')
SELECT 1 FROM dual
/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1547,6 +1547,10 @@ INTO IDN_CONFIG_TYPE (ID, NAME, DESCRIPTION) VALUES
('3e5b1f91-72d8-4fbc-94d1-1b9a4f8c3b07', 'IMPERSONATION_CONFIGURATION', 'A resource type to keep the tenant impersonation preferences.')
INTO IDN_CONFIG_TYPE (ID, NAME, DESCRIPTION) VALUES
('a731af34-f96a-4069-812d-30dc3b713a28', 'response-max-limit-configurations', 'A resource type to max limit configurations for API response.')
INTO IDN_CONFIG_TYPE (ID, NAME, DESCRIPTION) VALUES
('91116e95-ca63-4787-be2d-de13d04d1b55', 'X509_VALIDATOR', 'A resource type to keep the x509 validators.')
INTO IDN_CONFIG_TYPE (ID, NAME, DESCRIPTION) VALUES
('a17952b9-0942-4669-8529-479ca481146b', 'X509_REVOCATION_VALIDATION_CA', 'A resource type to keep the x509 revocation validation certificate authorities.')
SELECT 1 FROM dual
/
CREATE TABLE IDN_CONFIG_RESOURCE (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1210,7 +1210,9 @@ INSERT INTO IDN_CONFIG_TYPE (ID, NAME, DESCRIPTION) VALUES
('1fc809a0-dc0d-4cb2-82f3-58934d389236', 'CUSTOM_TEXT', 'A resource type to keep the tenant custom text preferences.'),
('c385a42a-5697-4604-b49a-62456621e926', 'DCR_CONFIGURATION', 'A resource type to keep the DCR configurations.'),
('3e5b1f91-72d8-4fbc-94d1-1b9a4f8c3b07', 'IMPERSONATION_CONFIGURATION', 'A resource type to keep the tenant impersonation preferences.'),
('a731af34-f96a-4069-812d-30dc3b713a28', 'response-max-limit-configurations', 'A resource type to max limit configurations for API response.');
('a731af34-f96a-4069-812d-30dc3b713a28', 'response-max-limit-configurations', 'A resource type to max limit configurations for API response.'),
('91116e95-ca63-4787-be2d-de13d04d1b55', 'X509_VALIDATOR', 'A resource type to keep the x509 validators.'),
('a17952b9-0942-4669-8529-479ca481146b', 'X509_REVOCATION_VALIDATION_CA', 'A resource type to keep the x509 revocation validation certificate authorities.');

DROP TABLE IF EXISTS IDN_CONFIG_RESOURCE;
CREATE TABLE IDN_CONFIG_RESOURCE (
Expand Down
Loading