From 5aafd183fd245a450919596fd5af4c6dba2b4913 Mon Sep 17 00:00:00 2001 From: Minhyeok LEE <130422754+raccoon-mh@users.noreply.github.com> Date: Tue, 8 Oct 2024 11:00:34 +0900 Subject: [PATCH] Update swagger.json --- swagger/swagger.json | 4889 ++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 4765 insertions(+), 124 deletions(-) diff --git a/swagger/swagger.json b/swagger/swagger.json index ef0d61b..a5f15c9 100644 --- a/swagger/swagger.json +++ b/swagger/swagger.json @@ -481,6 +481,9 @@ "200": { "description": "GetUserinfo", "headers": { + "Connection": { + "type": "string" + }, "Content-Length": { "type": "string" }, @@ -493,32 +496,34 @@ }, "schema": { "properties": { - "email": { - "example": "email", - "type": "string" - }, - "email_verified": { - "example": true, - "type": "boolean" - }, - "family_name": { - "example": "family_name", + "company": { + "example": "onecloud-dev", "type": "string" }, - "given_name": { - "example": "given_name", + "description": { + "example": "this is admin", "type": "string" }, "name": { - "example": "name", + "example": "one cloud", "type": "string" }, - "preferred_username": { - "example": "preferred_username", - "type": "string" + "roles": { + "example": [ + "platformAdmin" + ], + "items": { + "example": "platformAdmin", + "type": "string" + }, + "type": "array" }, "sub": { - "example": "xxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", + "example": "c00c3b90-db7f-4309-b273-09bd5c405291", + "type": "string" + }, + "userid": { + "example": "mcpsuper", "type": "string" } }, @@ -573,6 +578,9 @@ }, "/api/auth/validate": { "get": { + "produces": [ + "text/plain" + ], "parameters": [], "responses": { "200": { @@ -2583,7 +2591,7 @@ "tags": [ "Permission" ], - "description": "사용자는 uma_protection Role 을 가져야 한다.", + "description": "모든 권한을 가져옵니다.", "operationId": "getpermissions", "summary": "GetPermissions" } @@ -2625,7 +2633,7 @@ "tags": [ "Permission" ], - "description": "사용자는 uma_protection Role 을 가져야 한다.", + "description": "현재 권한을 CSV 형태로 가져옵니다.", "operationId": "getcurrentpermissioncsv", "summary": "GetCurrentPermissionCsv" }, @@ -2672,7 +2680,7 @@ "tags": [ "Permission" ], - "description": "사용자는 uma_protection Role 을 가져야 한다.", + "description": "CSV 기반으로 권한을 업데이트 합니다.", "operationId": "importpermissionbycsv", "summary": "ImportPermissionByCsv" } @@ -2839,7 +2847,7 @@ "tags": [ "Permission" ], - "description": "사용자는 uma_protection Role 을 가져야 한다.", + "description": "권한을 검색합니다.", "operationId": "getpermission", "summary": "GetPermission" }, @@ -2914,27 +2922,163 @@ "tags": [ "Permission" ], - "description": "사용자는 uma_protection Role 을 가져야 한다.", + "description": "권한을 OperationId를 기반으로 리소스 권한을 업데이트합니다.", "operationId": "updateresourcepermissionbyoperationid", "summary": "UpdateResourcePermissionByOperationId" } }, - "/api/poc/sts/securitykey": { - "get": { + "/api/permission/framewrok/{framework}/operationid/{operationid}/append": { + "parameters": [ + { + "in": "path", + "name": "framework", + "required": true, + "type": "string" + }, + { + "in": "path", + "name": "operationid", + "required": true, + "type": "string" + } + ], + "put": { + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "parameters": [ + { + "in": "query", + "name": "uri", + "type": "string" + }, + { + "in": "query", + "name": "operationId", + "type": "string" + }, + { + "in": "body", + "name": "body", + "schema": { + "properties": { + "desc": { + "example": "permission new desc", + "type": "string" + }, + "role": { + "example": [ + "billadmin", + "admin" + ], + "items": { + "example": "billadmin", + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } + } + ], + "responses": { + "200": { + "description": "AppendResourcePermissionPolicesByOperationId", + "headers": { + "Content-Length": { + "type": "string" + }, + "Date": { + "type": "string" + }, + "Vary": { + "type": "string" + } + }, + "schema": { + "properties": { + "status": { + "example": "success", + "type": "string" + } + }, + "type": "object" + } + } + }, + "tags": [ + "Permission" + ], + "description": "권한을 OperationId를 기반으로 리소스 권한을 업데이트합니다.", + "operationId": "appendresourcepermissionpolicesbyoperationid", + "summary": "AppendResourcePermissionPolicesByOperationId" + } + }, + "/api/permission/framewrok/{framework}/operationid/{operationid}/remove": { + "parameters": [ + { + "in": "path", + "name": "framework", + "required": true, + "type": "string" + }, + { + "in": "path", + "name": "operationid", + "required": true, + "type": "string" + } + ], + "delete": { + "consumes": [ + "application/json" + ], "produces": [ "application/json" ], "parameters": [ { - "description": "eg) aws,alibaba / aws / alibaba ", "in": "query", - "name": "providers", + "name": "uri", + "type": "string" + }, + { + "in": "query", + "name": "operationId", "type": "string" + }, + { + "in": "body", + "name": "body", + "schema": { + "properties": { + "desc": { + "example": "permission new desc", + "type": "string" + }, + "role": { + "example": [ + "billadmin", + "admin" + ], + "items": { + "example": "billadmin", + "type": "string" + }, + "type": "array" + } + }, + "type": "object" + } } ], "responses": { "200": { - "description": "Securitykey Success", + "description": "AppendResourcePermissionPolicesByOperationId Copy", "headers": { "Content-Length": { "type": "string" @@ -2948,56 +3092,4457 @@ }, "schema": { "properties": { - "AccessKeyId": { - "example": "xxxx", + "status": { + "example": "success", "type": "string" + } + }, + "type": "object" + } + } + }, + "tags": [ + "Permission" + ], + "description": "권한을 OperationId를 기반으로 리소스 권한을 업데이트합니다.", + "operationId": "deleteresourcepermissionpolicesbyoperationid", + "summary": "DeleteResourcePermissionPolicesByOperationId" + } + }, + "/api/permission/policyid/{policyid}": { + "parameters": [ + { + "in": "path", + "name": "policyid", + "required": true, + "type": "string" + } + ], + "get": { + "produces": [ + "application/json" + ], + "parameters": [], + "responses": { + "200": { + "description": "GetdependentPermissionsByPolicyId", + "headers": { + "Date": { + "type": "string" + }, + "Transfer-Encoding": { + "type": "string" + }, + "Vary": { + "type": "string" + } + }, + "schema": { + "example": [ + { + "decisionStrategy": "UNANIMOUS", + "id": "b6069eed-8bee-41e0-b637-abc000532504", + "logic": "POSITIVE", + "name": "mc-application-manager:CheckConnectionUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c9b8e43b-c2de-4cfe-a77d-f40d17fbc87d", + "logic": "POSITIVE", + "name": "mc-application-manager:CreateCatalogRefUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a6640d3a-d820-4e62-9f82-e54055ba09a2", + "logic": "POSITIVE", + "name": "mc-application-manager:CreateCatalogUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "88345098-151c-467e-9eb7-0acf86efdb42", + "logic": "POSITIVE", + "name": "mc-application-manager:CreateComponentByTextUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "51b4f5ec-cac1-4401-9ed0-92ae19cdfc86", + "logic": "POSITIVE", + "name": "mc-application-manager:CreateComponentUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ce7fad90-6e1a-4c6e-abc2-0a97ee35206c", + "logic": "POSITIVE", + "name": "mc-application-manager:CreateManifestUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "69da4415-591a-4a14-8979-5981616bf792", + "logic": "POSITIVE", + "name": "mc-application-manager:CreateRepositoryUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e9b094bc-45e8-4497-b97b-bdc5ee410db9", + "logic": "POSITIVE", + "name": "mc-application-manager:CreateRepositoryUsingPOST_1", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d7ed9760-effe-46d3-bced-93527d0b1f16", + "logic": "POSITIVE", + "name": "mc-application-manager:DeleteCatalogRefWorkflowUsingDELETE", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "34ff1ea2-a447-4d10-a966-ccd700fedaed", + "logic": "POSITIVE", + "name": "mc-application-manager:DeleteCatalogUsingDELETE", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "64b3a71a-9117-4555-b729-8d73be798ea9", + "logic": "POSITIVE", + "name": "mc-application-manager:DeleteComponentUsingDELETE", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "63588187-e3db-4e7c-87bd-ee08a9edb5b5", + "logic": "POSITIVE", + "name": "mc-application-manager:DeleteOssTypeUsingDELETE", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "bedfca4a-071e-4cbc-b42a-36c66f6a1050", + "logic": "POSITIVE", + "name": "mc-application-manager:DeleteOssUsingDELETE", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "fe41b360-d5cb-48d8-b12a-03192c693551", + "logic": "POSITIVE", + "name": "mc-application-manager:DeleteRepositoryFileUsingDELETE", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c6ebadbd-08c7-4a20-b16e-a4f197723fde", + "logic": "POSITIVE", + "name": "mc-application-manager:DeleteRepositoryUsingDELETE", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "54570ff2-7edc-46d7-92b6-9cbb8dac570b", + "logic": "POSITIVE", + "name": "mc-application-manager:DeleteRepositoryUsingDELETE_1", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "5f0937fd-2cdd-4fc0-ae7f-22df9ca51593", + "logic": "POSITIVE", + "name": "mc-application-manager:DetailOssTypeUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "1b683f5a-a63a-4b02-a38a-17bf89dd5aa0", + "logic": "POSITIVE", + "name": "mc-application-manager:DetailOssUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "01f25034-4dcb-4295-969f-09a806c4dea4", + "logic": "POSITIVE", + "name": "mc-application-manager:ErrorHtmlUsingDELETE", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d5abefc5-f9e9-481c-ac9c-aaeb8fae23cb", + "logic": "POSITIVE", + "name": "mc-application-manager:ErrorHtmlUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "87bf33ae-6169-45f6-8fa3-11ccfba3b6c1", + "logic": "POSITIVE", + "name": "mc-application-manager:ErrorHtmlUsingHEAD", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "743b1af2-899d-4d36-99ac-deac7fd894ca", + "logic": "POSITIVE", + "name": "mc-application-manager:ErrorHtmlUsingOPTIONS", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "1dbca8fe-427d-4c88-991a-21cb404b44c8", + "logic": "POSITIVE", + "name": "mc-application-manager:ErrorHtmlUsingPATCH", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "be5592ca-dc84-4636-90d3-5e8fb43ec229", + "logic": "POSITIVE", + "name": "mc-application-manager:ErrorHtmlUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "cb8e93c7-4d1f-421a-8299-097e874e33df", + "logic": "POSITIVE", + "name": "mc-application-manager:ErrorHtmlUsingPUT", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "32b786fa-f188-4012-9873-5d38101dfbc0", + "logic": "POSITIVE", + "name": "mc-application-manager:ExecWorkflowUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "71204089-7783-459c-86d9-ee280d95df16", + "logic": "POSITIVE", + "name": "mc-application-manager:GenerateConfigmapYamlUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c48208d7-8e59-49ed-b858-c59a70cd6471", + "logic": "POSITIVE", + "name": "mc-application-manager:GenerateDeploymentYamlUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "578ab77f-587d-46fd-8f4d-058d0deef475", + "logic": "POSITIVE", + "name": "mc-application-manager:GenerateHPAYamlUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "4c178ccc-d796-4dc8-89b8-cd60250ab39f", + "logic": "POSITIVE", + "name": "mc-application-manager:GeneratePodYamlUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9fd5a47f-413b-43f6-9caf-ff7c0177f7ff", + "logic": "POSITIVE", + "name": "mc-application-manager:GenerateServiceYamlUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "fd84d6f1-849e-4494-82f7-8c1ab54595cb", + "logic": "POSITIVE", + "name": "mc-application-manager:GetArtifactHubListUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a3704c62-a575-4a86-a77a-f1dbb1b6151d", + "logic": "POSITIVE", + "name": "mc-application-manager:GetCatalogDetailUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "cbd2abb8-9792-4772-8c72-589c718cfceb", + "logic": "POSITIVE", + "name": "mc-application-manager:GetCatalogListUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a9d01f6e-a03a-4cef-8560-dbdaede2be4b", + "logic": "POSITIVE", + "name": "mc-application-manager:GetCatalogReferenceUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a5c32b22-5339-494a-812c-422be3c2f3fa", + "logic": "POSITIVE", + "name": "mc-application-manager:GetComponentDetailByNameUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "72736290-260d-4b16-9ecb-286ed058a002", + "logic": "POSITIVE", + "name": "mc-application-manager:GetComponentListUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "4ed781de-3c28-4b69-8f99-0979b86e00ed", + "logic": "POSITIVE", + "name": "mc-application-manager:GetDockerHubListUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "19764548-c9f8-43bf-95c5-ba8c6fc5bcb3", + "logic": "POSITIVE", + "name": "mc-application-manager:GetManifestDetailTxtUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "47f70782-ba86-4291-8a62-dd1311f6ffc0", + "logic": "POSITIVE", + "name": "mc-application-manager:GetManifestDetailUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "08fdd31c-e06f-477d-8c17-4cde56bee6b0", + "logic": "POSITIVE", + "name": "mc-application-manager:GetManifestUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "84678b8e-fc0e-4d75-a85a-85fdb8bc68eb", + "logic": "POSITIVE", + "name": "mc-application-manager:GetOssListUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "270ee189-4fec-41c3-a442-3098a16a5d46", + "logic": "POSITIVE", + "name": "mc-application-manager:GetOssListUsingGET_1", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "661b9c45-dd22-47b5-bc7f-a332102385b5", + "logic": "POSITIVE", + "name": "mc-application-manager:GetOssTypeListUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f85161e7-6243-4fc3-9152-8ec0a52f4de7", + "logic": "POSITIVE", + "name": "mc-application-manager:GetRepositoryDetailByNameUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "293c390e-0f9a-4841-8313-fbf453450d16", + "logic": "POSITIVE", + "name": "mc-application-manager:GetRepositoryFileUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "830dde84-7a1d-4a43-93cd-789cac9aad00", + "logic": "POSITIVE", + "name": "mc-application-manager:GetRepositoryListUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "4047fc21-9e36-4cf0-a0ee-2c2a7f8c8303", + "logic": "POSITIVE", + "name": "mc-application-manager:GetRepositoryListUsingGET_1", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ff4c1c35-6e8d-4e8a-b1e9-c06ed13b2b10", + "logic": "POSITIVE", + "name": "mc-application-manager:GetRepositoryUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "1b5f934f-141b-40a6-a060-2e1dee4a8c98", + "logic": "POSITIVE", + "name": "mc-application-manager:InsertRepositoryUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b45d33fb-a778-464f-b909-4a0d3a851d4f", + "logic": "POSITIVE", + "name": "mc-application-manager:IsOssInfoDuplicatedUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "653e7701-e12c-445c-9b99-f6ead2e857b6", + "logic": "POSITIVE", + "name": "mc-application-manager:OpenapiJsonUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c2cd6aaa-3761-4463-8e1a-841029986155", + "logic": "POSITIVE", + "name": "mc-application-manager:OpenapiJsonUsingGET_1", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "0cd8380c-7e9c-4667-ac0c-d5a4054a638d", + "logic": "POSITIVE", + "name": "mc-application-manager:OpenapiYamlUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f8cb68f8-62b1-4c17-bf3a-570ba5871759", + "logic": "POSITIVE", + "name": "mc-application-manager:RedirectToUiUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ebaa171b-c77b-4ef9-afeb-65fb97442a91", + "logic": "POSITIVE", + "name": "mc-application-manager:RegistOssTypeUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "6e47df29-2d34-4a08-b2c8-477c92814246", + "logic": "POSITIVE", + "name": "mc-application-manager:RegistOssUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "316fa0d8-2944-42bd-a580-28942041c95e", + "logic": "POSITIVE", + "name": "mc-application-manager:SaveManifestUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "20b9cf62-b9a1-43f5-a65b-e994ed31d7e8", + "logic": "POSITIVE", + "name": "mc-application-manager:UpdateCatalogUsingPUT", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d797d1aa-fd5d-4f0f-9a84-4dc4fb680aef", + "logic": "POSITIVE", + "name": "mc-application-manager:UpdateManifestUsingDELETE", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "818eb066-7bf0-437f-9f50-99161bf49b15", + "logic": "POSITIVE", + "name": "mc-application-manager:UpdateManifestUsingPUT", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f0a1a937-fb8b-47f2-a524-03d05d865b35", + "logic": "POSITIVE", + "name": "mc-application-manager:UpdateOssTypeUsingPATCH", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "8d65849c-e0a4-4273-9057-fe489927519e", + "logic": "POSITIVE", + "name": "mc-application-manager:UpdateOssUsingPATCH", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ff4b9aff-b26a-4b46-8e08-d9d5c6f5f65c", + "logic": "POSITIVE", + "name": "mc-application-manager:UpdateRepositoryUsingPUT", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "96166797-f085-4466-936e-71e81566b4a5", + "logic": "POSITIVE", + "name": "mc-application-manager:UpdateRepositoryUsingPUT_1", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9c4a20fc-c8eb-4918-a91d-817f56074fa0", + "logic": "POSITIVE", + "name": "mc-application-manager:UploadFilesUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f3b797c5-4dfa-47e5-b606-571f8ef58ee8", + "logic": "POSITIVE", + "name": "mc-cost-optimizer:GetBillAsset", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "87016547-e4aa-47de-b6ff-1f891b4950af", + "logic": "POSITIVE", + "name": "mc-cost-optimizer:GetBillingBaseInfo", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a8911f91-6930-482a-a6cf-56e1262f0551", + "logic": "POSITIVE", + "name": "mc-cost-optimizer:GetCurMonthBill", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "8615c5d5-268a-4fc2-8d11-dda7f6b8a238", + "logic": "POSITIVE", + "name": "mc-cost-optimizer:GetInvoice", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "009675c7-6130-4352-a050-73525f507f92", + "logic": "POSITIVE", + "name": "mc-cost-optimizer:GetProjects", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9e8436eb-237d-4c20-86cd-8f79c4bdb5c7", + "logic": "POSITIVE", + "name": "mc-cost-optimizer:GetSummary", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a4059b31-347d-4f31-871d-9b6c3e2b421e", + "logic": "POSITIVE", + "name": "mc-cost-optimizer:GetTop5Bill", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "86ae1621-0c99-400a-923f-ec00bc17aaf6", + "logic": "POSITIVE", + "name": "mc-cost-optimizer:GetUnusedRec", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f35183b7-3fe3-42c8-be2c-6f43ad8722cb", + "logic": "POSITIVE", + "name": "mc-cost-optimizer:GetWorkspaces", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9b03a996-defd-4836-aa3c-79457a8e9c4b", + "logic": "POSITIVE", + "name": "mc-data-manager:GenerateDynamodb", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "fd1bee9a-8a8d-4d84-b074-1cc83b652b10", + "logic": "POSITIVE", + "name": "mc-data-manager:GenerateFirestore", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "cc8c0b78-1427-4fab-9b57-089cd64caa50", + "logic": "POSITIVE", + "name": "mc-data-manager:GenerateGcp", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "719dbb0a-6a94-4903-95d9-72f3f9a558d0", + "logic": "POSITIVE", + "name": "mc-data-manager:GenerateLinux", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "bf381eee-a13a-449d-b4da-126e5871d3d4", + "logic": "POSITIVE", + "name": "mc-data-manager:GenerateMongodb", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "3e4cc588-5702-47b7-ae26-04662635f88f", + "logic": "POSITIVE", + "name": "mc-data-manager:GenerateMysql", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "acd30def-a400-4ab7-ac5a-4a5cf38aa800", + "logic": "POSITIVE", + "name": "mc-data-manager:GenerateNcp", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "3d1f0712-dc86-4c40-8cc7-5cbff8a7ffde", + "logic": "POSITIVE", + "name": "mc-data-manager:GenerateS3", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "17ecf5fe-e0a6-4a73-8c0d-084a39edb7e4", + "logic": "POSITIVE", + "name": "mc-data-manager:GenerateWindows", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "85e01a2f-1061-4073-b9fd-340e2dc33813", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationDynamodbFirestore", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "6e21a976-2b02-4495-b842-d15c853bf827", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationDynamodbMongodb", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "33459f0d-3efe-416a-8d09-07bb285e5d31", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationFirestoreDynamodb", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "fbc427ef-a1f9-4a68-a26b-af854f3657ea", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationFirestoreMongodb", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "938bcc62-e378-4a8a-a612-3cc3f86555ac", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationGcpLinux", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "18b62417-aa60-48e3-98d8-d82b5d6c0a04", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationGcpNcp", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "37f2de5f-8ee3-46c9-9a2f-ae21b1bef65b", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationGcpS3", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "222f6fde-2a5b-4802-a79f-7aeebce97729", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationGcpWindows", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "bad376a2-6df5-4655-89f4-eae6577e4ec6", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationLinuxGcp", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c57dffc9-f04b-4f86-afb5-740dfc23909d", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationLinuxNcp", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e76c8179-5364-48d0-a387-e963334afbfa", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationLinuxS3", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "076044c3-3b55-467c-9362-c40a65f84c0d", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationMongodbDynamodb", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e3f44c99-b775-4fb0-9758-01762b00553c", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationMongodbFirestore", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "129dfb6e-c6be-4dbc-8a5e-7358920a8fd9", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationMysql", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f369cc2f-f701-44ec-baa0-67df7c2d3f97", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationNcpGcp", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ca071419-edb1-4114-a9db-9bf4f8ae05d2", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationNcpLinux", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e663fad1-7d46-454a-8aec-e8786a4f61ed", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationNcpS3", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b4b4c3ce-4936-4a7f-a489-8e26aee255ed", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationNcpWindows", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c5b0deef-a319-405f-abc1-7a5f382fab4d", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationS3Gcp", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "49798a67-af26-4ef2-ad92-fc2649efcce5", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationS3Linux", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "66fd9688-1471-41ae-8ae4-7fb50131ff2a", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationS3Ncp", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "96eebb81-4c2c-4cdb-bc94-cfca34b51e4a", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationS3Windows", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e3069dd4-d389-4e72-afec-438daa855801", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationWindowsGcp", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "af64e57b-e438-4b74-a7ca-5b0dd282ea5f", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationWindowsNcp", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a2f8d703-959c-4627-85dc-7fe7bdfa099f", + "logic": "POSITIVE", + "name": "mc-data-manager:MigrationWindowsS3", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f972477d-b558-4f90-9c5d-f54a255e3101", + "logic": "POSITIVE", + "name": "mc-iam-manager:Activeuser", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "dedf035e-4fe5-4c3b-9f4a-eb1ae31c8458", + "logic": "POSITIVE", + "name": "mc-iam-manager:Authgetuservalidate", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "73a4bc68-bff7-471a-a40c-af9a23fb64a0", + "logic": "POSITIVE", + "name": "mc-iam-manager:Createapiresourcesbyapiyaml", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "340f0f17-60ad-434e-9d4a-9b2729efc6e5", + "logic": "POSITIVE", + "name": "mc-iam-manager:Createmenuresourcesbymenuyaml", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "98b798c1-a7e1-48ca-9b76-8d2083f09eb9", + "logic": "POSITIVE", + "name": "mc-iam-manager:Createproject", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "2b7e3740-b49f-416b-83c8-390275dba839", + "logic": "POSITIVE", + "name": "mc-iam-manager:Createresource", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "44b8241b-83cd-495c-b289-d86b5f3eb8ce", + "logic": "POSITIVE", + "name": "mc-iam-manager:Createrole", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "8abb208b-4811-458f-9f6d-5b315db96ac1", + "logic": "POSITIVE", + "name": "mc-iam-manager:Createuser", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ea66a53b-edb8-48c1-ade9-bfb8a995bf49", + "logic": "POSITIVE", + "name": "mc-iam-manager:Createworkspace", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "7535ad43-3e83-44ed-9e4b-15ae75241f76", + "logic": "POSITIVE", + "name": "mc-iam-manager:Createworkspaceuserrolemappingbyname", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f7d3d0d3-5578-4512-b444-759f0b03f935", + "logic": "POSITIVE", + "name": "mc-iam-manager:Deactiveuser", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "27a0c64c-3794-4c32-a6d2-a3b4b09d5ce4", + "logic": "POSITIVE", + "name": "mc-iam-manager:Deleteprojectbyid", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "86cab557-1680-4fca-b08d-729327cc990a", + "logic": "POSITIVE", + "name": "mc-iam-manager:Deleteresource", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "8be4732b-bf9b-492a-a352-f4450226dcde", + "logic": "POSITIVE", + "name": "mc-iam-manager:Deleterolebyid", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d00ad7c8-3190-4ef9-b45b-5ca433dca88c", + "logic": "POSITIVE", + "name": "mc-iam-manager:Deleteuser", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "415c664f-2eaa-4088-9e2f-ec83c3cd8a2e", + "logic": "POSITIVE", + "name": "mc-iam-manager:Deleteworkspacebyid", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "10ec35e1-8db7-4fe1-a257-b2b05c742e1f", + "logic": "POSITIVE", + "name": "mc-iam-manager:Deleteworkspaceprojectmappingbyid", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c14eddf3-2c40-46a3-929d-5ae1970a8d13", + "logic": "POSITIVE", + "name": "mc-iam-manager:Deleteworkspaceuserrolemapping", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e780908c-086a-4c4a-898e-4cfe612c633e", + "logic": "POSITIVE", + "name": "mc-iam-manager:Getallavailablemenus", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "3e309f08-4a5a-4ad4-b2ab-b5effcf76e30", + "logic": "POSITIVE", + "name": "mc-iam-manager:Getallpermissions", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "7474708f-2263-4146-a8e9-c796f5c3072c", + "logic": "POSITIVE", + "name": "mc-iam-manager:Getcerts", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "396b6367-e270-4caa-adf4-86a1c09857f1", + "logic": "POSITIVE", + "name": "mc-iam-manager:Getcurrentpermissioncsv", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "2e6f7eee-f236-4309-9a27-ed4739d3dd65", + "logic": "POSITIVE", + "name": "mc-iam-manager:Getmenuresources", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "0921c8a1-eef8-4f8f-b067-5824f416e30b", + "logic": "POSITIVE", + "name": "mc-iam-manager:Getpermission", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "547fbebc-8ffc-4729-88ce-23480f5b8346", + "logic": "POSITIVE", + "name": "mc-iam-manager:Getpermissions", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f39eaf16-25fe-4b3a-9fa2-f61a814798f7", + "logic": "POSITIVE", + "name": "mc-iam-manager:Getpermissionticket", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "64031d73-b368-4ef9-9fcf-8e30c9366fb5", + "logic": "POSITIVE", + "name": "mc-iam-manager:Getprojectbyid", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f0f2c8ac-9e1f-476d-a3f8-fec9c2ee95b7", + "logic": "POSITIVE", + "name": "mc-iam-manager:Getprojectlist", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "214b1e66-e574-4977-84d3-170c293af7da", + "logic": "POSITIVE", + "name": "mc-iam-manager:Getresources", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "422b25a4-4f88-47ad-b183-c47243693db9", + "logic": "POSITIVE", + "name": "mc-iam-manager:Getrolebyid", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "dea49a4c-be10-4802-a167-6892d23f69f1", + "logic": "POSITIVE", + "name": "mc-iam-manager:GetrolebypolicyidNotuse", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "8ad8ac93-fa59-413f-89c8-ba8c247b462e", + "logic": "POSITIVE", + "name": "mc-iam-manager:Getrolelist", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "45c8cfaa-6fe8-4c2f-bc93-c66551a32a25", + "logic": "POSITIVE", + "name": "mc-iam-manager:Gettokeninfo", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "26542692-6ec4-40d4-b7eb-ee78df647cca", + "logic": "POSITIVE", + "name": "mc-iam-manager:Getuserinfo", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "3c99e447-5c14-4d01-8985-5e48ce22c55a", + "logic": "POSITIVE", + "name": "mc-iam-manager:Getusers", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b3672933-2e4f-4ceb-b2b3-4e3fb3bc53a1", + "logic": "POSITIVE", + "name": "mc-iam-manager:Getworkspacebyid", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "379a19b6-9386-4848-af25-96906b0c763c", + "logic": "POSITIVE", + "name": "mc-iam-manager:Getworkspacelist", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e42c3ca7-5d09-422b-8ac3-7e9b6103e2cb", + "logic": "POSITIVE", + "name": "mc-iam-manager:Getworkspaceuserrolemappingbyid", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "01add86a-3918-4a7f-b98b-4d6744cbbea1", + "logic": "POSITIVE", + "name": "mc-iam-manager:Getworkspaceuserrolemappinglistbyuserid", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "28b4d378-3d9b-4267-8983-c3d116a34a35", + "logic": "POSITIVE", + "name": "mc-iam-manager:Getworkspaceuserrolemappinglistbyworkspaceid", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "85faef32-c0d1-4cdf-bebd-9d1d368b38cd", + "logic": "POSITIVE", + "name": "mc-iam-manager:Getworkspaceuserrolemappinglistorderbyworkspace", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a01d1f47-0499-49b1-85dc-b6d227646174", + "logic": "POSITIVE", + "name": "mc-iam-manager:Getwpmappinglistbyworkspaceid", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9ae1336e-87e8-4126-9ed9-a9a83a507b50", + "logic": "POSITIVE", + "name": "mc-iam-manager:Getwpmappinglistorderbyworkspace", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "509da26c-fecf-4653-85da-94c899866334", + "logic": "POSITIVE", + "name": "mc-iam-manager:Importpermissionbycsv", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ff6a0172-02b7-4c9f-8f97-de18741424fc", + "logic": "POSITIVE", + "name": "mc-iam-manager:Login", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "295966de-6c94-43d5-882a-88a7886ec99d", + "logic": "POSITIVE", + "name": "mc-iam-manager:Loginrefresh", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "20041a02-1116-4f02-b7d2-31f4d006bb34", + "logic": "POSITIVE", + "name": "mc-iam-manager:Logout", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b1b44413-5d7b-4982-ad04-c817224e505f", + "logic": "POSITIVE", + "name": "mc-iam-manager:Readyz", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "7bd51ca0-6c8e-41e2-8768-7aaf788aeec7", + "logic": "POSITIVE", + "name": "mc-iam-manager:Resetmenuresource", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "2eb70b65-a60b-4265-bfed-18624c993b42", + "logic": "POSITIVE", + "name": "mc-iam-manager:Resetresource", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "7d2c6cf3-2ede-4ebb-b453-23efdc2642bc", + "logic": "POSITIVE", + "name": "mc-iam-manager:Searchprojectsbyname", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "1ac7cdd8-58c9-45c8-bc19-ddff198d834a", + "logic": "POSITIVE", + "name": "mc-iam-manager:Searchrolesbyname", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "6ea35f7e-e2f8-4677-ace7-00e1131d7ead", + "logic": "POSITIVE", + "name": "mc-iam-manager:Searchworkspacesbyname", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "1bcaae56-24b2-408f-9e5e-df37c78e4f95", + "logic": "POSITIVE", + "name": "mc-iam-manager:SecuritykeyNotuse", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "2c665a74-6874-46ac-91fe-e82085e5697c", + "logic": "POSITIVE", + "name": "mc-iam-manager:Syncprojectlistwithmcinfra", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e1e4808a-f99d-419c-959a-3179294ef0bb", + "logic": "POSITIVE", + "name": "mc-iam-manager:Updateprojectbyid", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "623660c4-8c41-4e52-9efa-43cb7d103045", + "logic": "POSITIVE", + "name": "mc-iam-manager:UpdateresourceDeprecated", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "dc942135-7c66-48b2-8908-1b0f254ace35", + "logic": "POSITIVE", + "name": "mc-iam-manager:Updateresourcepermissionbyoperationid", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f790c5f0-5c83-40ae-ab35-5d77f6a19ae7", + "logic": "POSITIVE", + "name": "mc-iam-manager:Updaterolebyid", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "83519d2b-6f82-45b3-b95e-aa77bcc1b008", + "logic": "POSITIVE", + "name": "mc-iam-manager:UpdateuseinfoNotuse", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d080c472-0bb7-46ba-a752-01d6d5d0f2ad", + "logic": "POSITIVE", + "name": "mc-iam-manager:Updateuser", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "88042e1b-d41a-499d-8d9a-b50ea632cd9c", + "logic": "POSITIVE", + "name": "mc-iam-manager:Updateworkspacebyid", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "532582f2-7b6c-4ef2-b49c-631230638125", + "logic": "POSITIVE", + "name": "mc-iam-manager:Updatewpmappings", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "bf4a396c-87f8-410e-84c8-ffbe609d67ed", + "logic": "POSITIVE", + "name": "mc-infra-connector:Add-Nlb-Vms", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "32eafac2-7e3b-477b-81bd-7703cec9c47b", + "logic": "POSITIVE", + "name": "mc-infra-connector:Add-Nodegroup", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "696a77b4-88fc-4b84-9454-4f9db4238480", + "logic": "POSITIVE", + "name": "mc-infra-connector:Add-Rules-Securitygroup", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9d062665-22c6-4de8-8980-120c0d2bcf0f", + "logic": "POSITIVE", + "name": "mc-infra-connector:Add-Subnet", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e079355c-2992-4867-9e3a-ae237a5abcdc", + "logic": "POSITIVE", + "name": "mc-infra-connector:Any-Call", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b6c3f6db-4c7d-40f3-8434-7975d04b7e87", + "logic": "POSITIVE", + "name": "mc-infra-connector:Attach-Disk", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "1e09e386-4c62-47f4-9994-c56c46c94299", + "logic": "POSITIVE", + "name": "mc-infra-connector:Change-Nodegroup-Scaling", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "4627845f-b58f-4aa3-b50e-5f0beaae3e55", + "logic": "POSITIVE", + "name": "mc-infra-connector:Control-Vm", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "db69652b-01ef-41f7-8855-2234de1cca5c", + "logic": "POSITIVE", + "name": "mc-infra-connector:Count-All-Clusters", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a8e2c980-c8cb-4480-a023-82876c72f6f8", + "logic": "POSITIVE", + "name": "mc-infra-connector:Count-All-Connections", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "4a794e92-0a31-498b-bb20-0bce5724faf4", + "logic": "POSITIVE", + "name": "mc-infra-connector:Count-All-Disks", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d69f2900-646d-4ec8-aa36-7a0dc9cdad33", + "logic": "POSITIVE", + "name": "mc-infra-connector:Count-All-Keys", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "41248c51-2a1c-4cf3-b7d8-9610291edc48", + "logic": "POSITIVE", + "name": "mc-infra-connector:Count-All-Myimages", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "5b9613b9-cfd6-4dc5-bfa8-6634d40ad82f", + "logic": "POSITIVE", + "name": "mc-infra-connector:Count-All-Nlbs", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "db80d7c3-4cf1-4bbe-963b-c076ff0be41e", + "logic": "POSITIVE", + "name": "mc-infra-connector:Count-All-Securitygroups", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "8ca7671b-079c-4fb7-be59-cc9d5b3326e5", + "logic": "POSITIVE", + "name": "mc-infra-connector:Count-All-Subnets", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "1f3be656-2f0f-4f04-af49-f59c164b3638", + "logic": "POSITIVE", + "name": "mc-infra-connector:Count-All-Vms", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e3d0f08b-8fcc-4bde-9bb4-a2b484ca812e", + "logic": "POSITIVE", + "name": "mc-infra-connector:Count-All-Vpcs", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "4ace42cf-d706-4418-912b-1f2748bff5fc", + "logic": "POSITIVE", + "name": "mc-infra-connector:Count-Clusters-By-Connection", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ed4ed684-37f7-49ae-be8c-15f18d24e12d", + "logic": "POSITIVE", + "name": "mc-infra-connector:Count-Connections-By-Provider", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c626c8ca-3068-41b2-889c-86c66c789dbe", + "logic": "POSITIVE", + "name": "mc-infra-connector:Count-Disks-By-Connection", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "fa1df31e-3027-448b-8e61-4aad6f7f599b", + "logic": "POSITIVE", + "name": "mc-infra-connector:Count-Keys-By-Connection", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "fc4dbd6e-f627-417c-bea9-32f7edc2362f", + "logic": "POSITIVE", + "name": "mc-infra-connector:Count-Myimages-By-Connection", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "2f2a1ded-4ba6-4e49-a441-0a59159bd3d6", + "logic": "POSITIVE", + "name": "mc-infra-connector:Count-Nlbs-By-Connection", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "dc96edcc-b467-4f7f-b1b6-23d9a1a48d39", + "logic": "POSITIVE", + "name": "mc-infra-connector:Count-Securitygroups-By-Connection", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9fe92bff-accb-44b3-a101-d9b6c5a0aa90", + "logic": "POSITIVE", + "name": "mc-infra-connector:Count-Subnets-By-Connection", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a8fac111-7b42-4dd9-8964-386ffe0f218b", + "logic": "POSITIVE", + "name": "mc-infra-connector:Count-Vms-By-Connection", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d8a2020a-d1b7-4295-beb3-c2c411d656ee", + "logic": "POSITIVE", + "name": "mc-infra-connector:Count-Vpcs-By-Connection", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "fe37f114-fa79-48a4-b60a-02b75440471d", + "logic": "POSITIVE", + "name": "mc-infra-connector:Create-Cluster", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "11e3310b-c2e2-4660-834f-8728480e35f6", + "logic": "POSITIVE", + "name": "mc-infra-connector:Create-Connection-Config", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a274af41-4fda-47b2-8fae-0b514cf83e02", + "logic": "POSITIVE", + "name": "mc-infra-connector:Create-Disk", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "850200b7-4207-4f5f-bb2c-d7fa89cab86a", + "logic": "POSITIVE", + "name": "mc-infra-connector:Create-Key", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e7f683b3-328c-4a48-8536-f3957749e1d2", + "logic": "POSITIVE", + "name": "mc-infra-connector:Create-Nlb", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b94aa3b8-8095-4661-a778-9a24a3722807", + "logic": "POSITIVE", + "name": "mc-infra-connector:Create-Securitygroup", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "555e072c-55c1-45a0-ab08-e58e4cc597ba", + "logic": "POSITIVE", + "name": "mc-infra-connector:Create-Vpc", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a26b3125-5f91-4ad2-abf1-1ec23350ba05", + "logic": "POSITIVE", + "name": "mc-infra-connector:Delete-Cluster", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9864e3de-9458-4e14-869c-b722f371af3f", + "logic": "POSITIVE", + "name": "mc-infra-connector:Delete-Connection-Config", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "426d1bc9-f1e1-4665-a152-5a33865245ac", + "logic": "POSITIVE", + "name": "mc-infra-connector:Delete-Csp-Cluster", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d729c487-a588-4d6f-9088-a00676eeb73c", + "logic": "POSITIVE", + "name": "mc-infra-connector:Delete-Csp-Disk", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "26dcc5cf-a50a-4795-8015-7b28c1cbe41e", + "logic": "POSITIVE", + "name": "mc-infra-connector:Delete-Csp-Key", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "93764274-4ae4-4375-a731-b3b33ec8c418", + "logic": "POSITIVE", + "name": "mc-infra-connector:Delete-Csp-Myimage", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ab2a9158-a04c-4fe4-987f-579477d1fcff", + "logic": "POSITIVE", + "name": "mc-infra-connector:Delete-Csp-Nlb", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "5b519cf3-4de5-42bd-8276-800472be01a7", + "logic": "POSITIVE", + "name": "mc-infra-connector:Delete-Csp-Securitygroup", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "86d9d193-cbca-483a-96c0-920cb63f8775", + "logic": "POSITIVE", + "name": "mc-infra-connector:Delete-Csp-Vpc", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "322c346f-3e9d-4e93-a797-1b8e9f95da2a", + "logic": "POSITIVE", + "name": "mc-infra-connector:Delete-Disk", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9fa53350-d996-48dd-9b74-b715af985fe2", + "logic": "POSITIVE", + "name": "mc-infra-connector:Delete-Key", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "0c2fe9f8-d9b8-4ce9-ab60-51c41411cf5b", + "logic": "POSITIVE", + "name": "mc-infra-connector:Delete-Myimage", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b2820e02-9c07-4501-976b-fba8fc1cd658", + "logic": "POSITIVE", + "name": "mc-infra-connector:Delete-Nlb", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "90e5adfa-6962-49cf-a06b-8f8c9e6a703d", + "logic": "POSITIVE", + "name": "mc-infra-connector:Delete-Securitygroup", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "66f8af5d-3d53-40cf-946a-70a9c0b97830", + "logic": "POSITIVE", + "name": "mc-infra-connector:Delete-Vpc", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c35a6239-449c-4a53-ae47-329465ba2e0e", + "logic": "POSITIVE", + "name": "mc-infra-connector:Detach-Disk", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "352aebfe-78b0-4902-87be-35df10c564e8", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Cloud-Driver", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "0d26f7b6-b5ea-44c9-859c-d1a4a8ecc80d", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Cloudos-Metainfo", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "eb240c32-7db3-4fed-af47-3005e544430e", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Cluster", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a68ccf34-19d7-4fba-a6f6-0ec7374b1133", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Cluster-Owner-Vpc", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "6be007bd-0a4f-47ea-ba23-9f6941480a25", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Connection-Config", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "02ce1c82-2ad0-46d6-97b7-ecab075ac95a", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Credential", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "93deb99b-6128-4087-ad9d-25172fb7b0f7", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Csp-Vm", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "be3c2dae-0f64-4c42-af17-29b866ac3afa", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Disk", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "8638db48-3b53-4691-800b-5c59cc9c4b35", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Image", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "38406e7c-431f-4234-9260-0b60f2f21f75", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Key", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e9e3e292-1a81-4233-b109-b52e4f49d8c6", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Myimage", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "4aaaf135-d6b1-49fe-9080-cf83497a1a06", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Nlb", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "60f47af0-2c05-40fa-a530-77fb39b2bc90", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Nlb-Owner-Vpc", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b7a826f9-0b6c-4376-b573-f50e2a3511a8", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Org-Vm-Spec", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d4830397-bd64-48b0-a3c9-fdf62372d375", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Price-Info", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "00794d65-6300-48a7-9842-c3d5909946df", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Region", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "6bf1f1b3-65ff-4957-8e92-ad6360dee742", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Region-Zone", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "98136fe0-59c1-482e-9474-65b5823a4357", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Region-Zone-Preconfig", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ab5f1ccf-e7d1-4765-a235-b3bcaeea939b", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Securitygroup", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "130aa53f-ca02-4176-ab00-fefd061b849d", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Sg-Owner-Vpc", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b53a199d-5f43-4b4d-a23b-bc315b9358af", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Vm", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f5abf030-5113-4690-b1b9-376eb5400d24", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Vmgroup-Healthinfo", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "36512a11-3942-4e4a-b8ab-68a8944b2ea3", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Vm-Spec", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "5e3c9a31-e2d6-48ab-b4aa-f99df0bd8b1c", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Vm-Status", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e77f0ef5-86b0-47ac-b065-4cbfb60a890d", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Vm-Using-Rs", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "75943bfb-2da4-4870-a542-92c3ed6d6287", + "logic": "POSITIVE", + "name": "mc-infra-connector:Get-Vpc", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "34bdab8d-0315-42cf-ac65-72697a245d27", + "logic": "POSITIVE", + "name": "mc-infra-connector:Health-Check-Health", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "5998d6e1-357e-48fc-ae74-2b17fe504328", + "logic": "POSITIVE", + "name": "mc-infra-connector:Health-Check-Healthcheck", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d9021ce2-3078-4fab-bd14-b6a83b3c94a5", + "logic": "POSITIVE", + "name": "mc-infra-connector:Health-Check-Ping", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "2ce6f440-15c3-4c0f-a0ea-f36e448702f8", + "logic": "POSITIVE", + "name": "mc-infra-connector:Health-Check-Readyz", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "141f0565-a1c2-4456-9ac6-6a7c7e187848", + "logic": "POSITIVE", + "name": "mc-infra-connector:Increase-Disk-Size", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "091ae24b-b6d4-4115-8705-dab4a751645d", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-All-Cluster", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "2071141e-f76d-4c5c-972c-9aaa7c5efb0e", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-All-Disk", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "30b2aa41-9202-4647-8145-7205904af35f", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-All-Key", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "01462b4a-99af-49bd-b33d-e73db665183d", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-All-Myimage", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "89302737-8bec-469d-b22b-15957d5087ad", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-All-Nlb", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "4ecd859f-04bf-4ee6-be28-ce15eb45d48c", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-All-Securitygroups", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "1d9e3f1a-c47f-4223-921a-d9a790bff5a8", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-All-Vm", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "730a68b3-b319-4312-ada7-33872b801064", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-All-Vpc", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a19794a7-6838-4002-a6d8-90be79c3bb4f", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-Cloud-Drivers", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "8ba011af-6204-4cec-92d5-13f9901bf2f7", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-Cloudos", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "949bc40e-b7d9-47f3-8a2e-79b0e9446cb5", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-Cluster", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "92840e43-f989-4fcf-9e88-ad28ec0eef9f", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-Connection-Configs", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "0b093415-e31b-41bc-89b8-ff2cc8989e89", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-Credentials", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ca4567a2-0a85-48c1-90a9-91d93470b553", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-Disk", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "1c0a0438-6174-4c4d-b2b0-0d55395e4cda", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-Image", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ec4bd573-571e-49d2-b72b-ee6c82edf166", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-Key", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "055dadad-3729-4e4b-9877-a58ed16be0fb", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-Myimage", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "205f2062-7ca2-4f02-98a9-0ef5117c7b52", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-Nlb", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "84c3093b-c2d4-4825-b7eb-5dc7a9b4056d", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-Org-Region", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "81dcb821-4e39-4791-97ee-a79d8e4d9496", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-Org-Vm-Spec", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "196c0a22-12c5-414d-9ef9-4152e0bf2aec", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-Org-Zone", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "2e33a17e-becb-4976-ac14-4f442d49ed01", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-Preconfigured-Original-Org-Region", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "06556476-8797-4d4a-abe6-934f8ce0fc05", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-Product-Family", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "7d0959b0-ab59-43e4-854f-ae287c88a179", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-Regions", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9c915faf-2aab-45f6-96ee-8292fe543522", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-Region-Zone", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "0697274d-7495-4e1f-96f8-10e204587341", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-Region-Zone-Preconfig", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ec4490db-7adb-4d17-8a47-d64d7bec1e46", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-Securitygroup", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d2041914-18ca-45c5-bf1e-c8ee22810fea", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-Vm", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a8266daa-f36f-43d0-bb56-a6baedcb0790", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-Vm-Spec", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "19009e1b-2ecc-42aa-8d6b-b040acaedf81", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-Vm-Status", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "36f761b3-21f6-4358-829c-bb494e9fe094", + "logic": "POSITIVE", + "name": "mc-infra-connector:List-Vpc", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "bbc5508b-e627-4ca8-8cb7-aaa20f5647d3", + "logic": "POSITIVE", + "name": "mc-infra-connector:Register-Cloud-Driver", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "354eca2f-3f45-41da-aa23-5babd8b688b7", + "logic": "POSITIVE", + "name": "mc-infra-connector:Register-Cluster", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "12288f2a-9558-4f79-a0bc-74cfbbbfab70", + "logic": "POSITIVE", + "name": "mc-infra-connector:Register-Credential", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "1bce0a5b-fa67-46d0-9585-d3e641e2caa0", + "logic": "POSITIVE", + "name": "mc-infra-connector:Register-Disk", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "69cce524-9482-4b89-b313-927aaa6624aa", + "logic": "POSITIVE", + "name": "mc-infra-connector:Register-Key", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f812df80-d667-490e-ac08-242a0496f162", + "logic": "POSITIVE", + "name": "mc-infra-connector:Register-Myimage", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "692112fc-4ecb-4193-bea3-0bd5254bada1", + "logic": "POSITIVE", + "name": "mc-infra-connector:Register-Nlb", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "6f92dfef-b875-4992-9aea-8760bf74b432", + "logic": "POSITIVE", + "name": "mc-infra-connector:Register-Region", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "70e3b74e-6d75-4bbc-88e5-1abf0a79e833", + "logic": "POSITIVE", + "name": "mc-infra-connector:Register-Securitygroup", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "68034f43-b480-43cb-a08a-4f034ec52b4a", + "logic": "POSITIVE", + "name": "mc-infra-connector:Register-Subnet", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "cada3cc8-6ce8-45ee-814b-35d015e9e3ad", + "logic": "POSITIVE", + "name": "mc-infra-connector:Register-Vm", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d060d2f9-a3fa-4f24-aa68-e0cec285ad8c", + "logic": "POSITIVE", + "name": "mc-infra-connector:Register-Vpc", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "5f325698-7c65-4724-b0b6-4abdde96b074", + "logic": "POSITIVE", + "name": "mc-infra-connector:Remove-Csp-Subnet", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9f822127-bf57-47ea-86c9-63727cae2bff", + "logic": "POSITIVE", + "name": "mc-infra-connector:Remove-Nlb-Vms", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "619fbc1a-1055-405a-ad94-8796d1db5db0", + "logic": "POSITIVE", + "name": "mc-infra-connector:Remove-Nodegroup", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "aa257045-8702-41ed-bbbf-02255eba89ab", + "logic": "POSITIVE", + "name": "mc-infra-connector:Remove-Rules-Securitygroup", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "44bb4d78-a322-4c21-88d6-bffc80cbf888", + "logic": "POSITIVE", + "name": "mc-infra-connector:Remove-Subnet", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "23bf226d-8a7c-4a7f-a229-b8a5b2bc9d2d", + "logic": "POSITIVE", + "name": "mc-infra-connector:Set-Nodegroup-Autoscaling", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d8d2891b-9b92-41e4-9939-ad29fa46304f", + "logic": "POSITIVE", + "name": "mc-infra-connector:Snapshot-Vm", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "7c886bd7-10a3-4e9e-9eff-b1936283d7af", + "logic": "POSITIVE", + "name": "mc-infra-connector:Start-Vm", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "784258cd-2013-4250-95ab-e6faa4a35dbd", + "logic": "POSITIVE", + "name": "mc-infra-connector:Terminate-Csp-Vm", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "3a6b3b11-0f7d-4e84-a3cc-edb47ab414ab", + "logic": "POSITIVE", + "name": "mc-infra-connector:Terminate-Vm", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "7f79f795-5044-4bda-96fc-1cc914a992f0", + "logic": "POSITIVE", + "name": "mc-infra-connector:Unregister-Cloud-Driver", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "93ef01c8-d7e6-4273-966c-53b29278d653", + "logic": "POSITIVE", + "name": "mc-infra-connector:Unregister-Cluster", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b29a2af1-fea9-4a7b-b857-71bd8a5d0b68", + "logic": "POSITIVE", + "name": "mc-infra-connector:Unregister-Credential", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "88ddeb2b-f0d4-4239-a904-6c523baef897", + "logic": "POSITIVE", + "name": "mc-infra-connector:Unregister-Disk", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d520939b-5533-4433-a5c7-517c8236e0e2", + "logic": "POSITIVE", + "name": "mc-infra-connector:Unregister-Key", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ad60abe4-99de-4ddc-abc0-66d7a0175e58", + "logic": "POSITIVE", + "name": "mc-infra-connector:Unregister-Myimage", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "2ecca7a4-1e92-4110-9f65-a16da1f1a768", + "logic": "POSITIVE", + "name": "mc-infra-connector:Unregister-Nlb", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "69c9ebd9-1a2c-4fb3-883c-d724e002c238", + "logic": "POSITIVE", + "name": "mc-infra-connector:Unregister-Region", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "3d1ce1a6-d3dd-4117-92aa-289dc6c725f6", + "logic": "POSITIVE", + "name": "mc-infra-connector:Unregister-Securitygroup", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e098640e-c913-4dea-8b4d-f684d215f83f", + "logic": "POSITIVE", + "name": "mc-infra-connector:Unregister-Subnet", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "33bea378-ee10-428c-8f9b-ce0bb16c9b1b", + "logic": "POSITIVE", + "name": "mc-infra-connector:Unregister-Vm", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "8282dff2-afd1-42b4-a868-12d254afae42", + "logic": "POSITIVE", + "name": "mc-infra-connector:Unregister-Vpc", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9c683bde-602f-4a74-9bcd-7cff9c00c376", + "logic": "POSITIVE", + "name": "mc-infra-connector:Upgrade-Cluster", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "726ac118-cabd-48d7-b803-f1adacf623a7", + "logic": "POSITIVE", + "name": "mc-infra-connector:Upload-Cloud-Driver", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a5fe3a71-f196-4e88-aa72-7523601e33f6", + "logic": "POSITIVE", + "name": "mc-infra-manager:Addnlbvms", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "bfdd9871-34d3-422b-a8c1-e2d148941e75", + "logic": "POSITIVE", + "name": "mc-infra-manager:Checkhttpversion", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "664514a3-ce4a-45b1-82d7-19602f427982", + "logic": "POSITIVE", + "name": "mc-infra-manager:Checknodegroupsonk8screation", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "1c73ef93-56dd-4cb6-8296-1160dd22bbf0", + "logic": "POSITIVE", + "name": "mc-infra-manager:Checkresource", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "7a9b327c-eb57-46a1-8f07-5652f82dd4f6", + "logic": "POSITIVE", + "name": "mc-infra-manager:Createorupdatelabel", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c4bba2a7-5045-4e0e-bd37-a881b5754368", + "logic": "POSITIVE", + "name": "mc-infra-manager:Createsharedresource", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a174741d-71c0-4e81-abf5-8f43b546c375", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delallcustomimage", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "0fe10b91-c678-44e6-8a4b-b5436680d1aa", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delalldatadisk", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c59db106-636c-4fd5-a1b5-ecff02869532", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delallimage", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c6e8647d-9e01-4d33-a5dc-da7c5adc1655", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delallmci", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "6f0444ff-1f16-48a8-a993-59217808d597", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delallmcipolicy", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ca1a7ef2-5da8-4dc7-a05b-7e383ebc6abf", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delallnlb", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a53ece58-cf2f-48ab-b4c7-b1bfdac9d54d", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delallns", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9f875725-ec30-4863-8b62-5fdfdd2f4f4c", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delallsecuritygroup", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c3d7fbe5-a7d7-4777-bfe7-e5b4ea0b925c", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delallsharedresources", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "41c35b1d-b28d-4063-8dc9-e4820fa7fabd", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delallsshkey", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "408f1779-cab4-4404-b6a8-17c7bda097e7", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delallvnet", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "463fe9cd-ea69-4e01-a1d5-50b10284096e", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delcustomimage", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e161f60a-ef6d-414b-b806-a53bbca033bb", + "logic": "POSITIVE", + "name": "mc-infra-manager:Deldatadisk", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "039fe82d-327e-406c-bdf8-1b92dc7d0bb7", + "logic": "POSITIVE", + "name": "mc-infra-manager:Deleteallk8scluster", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a5f0c6a8-47d6-431d-ace8-8ab79359958a", + "logic": "POSITIVE", + "name": "mc-infra-manager:Deleteallrequests", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "769555e4-8b34-44dd-a497-aa1d33246796", + "logic": "POSITIVE", + "name": "mc-infra-manager:Deletederegistersubnet", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "2ac1db57-bb10-491c-ad91-7f5e31c8de30", + "logic": "POSITIVE", + "name": "mc-infra-manager:Deletederegistervnet", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "1cd9e4c4-6305-442f-b1b9-667e3f0c0820", + "logic": "POSITIVE", + "name": "mc-infra-manager:Deletek8scluster", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b3df346a-c531-40c2-bf25-84c365342bec", + "logic": "POSITIVE", + "name": "mc-infra-manager:Deletek8snodegroup", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f3776c9e-0936-46c6-bf4b-e4550e111bb7", + "logic": "POSITIVE", + "name": "mc-infra-manager:Deleteobject", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "41204585-9ac1-41a4-af01-b74a7d54fb0e", + "logic": "POSITIVE", + "name": "mc-infra-manager:Deleteobjects", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "acc73cb9-980f-4680-86f9-1ae0be524efd", + "logic": "POSITIVE", + "name": "mc-infra-manager:Deleterequest", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "6d96b3ff-685f-4296-992f-72fafe92bdc6", + "logic": "POSITIVE", + "name": "mc-infra-manager:Deletesitetositevpn", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "695cc3b7-5ad3-4483-ad54-a01aeb540ae7", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delfirewallrules", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f1c0b593-2293-48f4-b1d3-f3c94484dce3", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delimage", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9e3794b0-2e3b-4272-9f40-ec11d15bef61", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delmci", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "239ae845-89ab-49a2-86d1-28d102905273", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delmcipolicy", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "42890495-6cc6-4ba5-9527-dc17b6fc690f", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delmcivm", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d77ee3dc-7321-40c2-9fee-ab155fce81de", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delnlb", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a72a39a4-fd69-4036-bb1f-dd496e52edbf", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delns", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "16a5a61c-1a19-43ea-a298-b4f5c05d3609", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delsecuritygroup", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "861ba815-f938-41b0-b92e-b14e351afabe", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delspec", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "83afe37e-3d69-4a87-821b-aeac34f4b83f", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delsshkey", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "5d636325-67f5-431d-9fce-ac6cb587948c", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delsubnet", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "be15f74f-e281-4552-a093-555bf2827c40", + "logic": "POSITIVE", + "name": "mc-infra-manager:Delvnet", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ac5b3760-923a-4762-bd5c-1e8108d474c7", + "logic": "POSITIVE", + "name": "mc-infra-manager:Fetchimages", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "af93913d-1cf7-437a-845a-85d3c93238cc", + "logic": "POSITIVE", + "name": "mc-infra-manager:Fetchspecs", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b04af4ea-b670-49bc-a95c-50ecc26cfe3e", + "logic": "POSITIVE", + "name": "mc-infra-manager:Filterspecsbyrange", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ded54e3b-c5eb-44e9-9a6d-3dc70b34a302", + "logic": "POSITIVE", + "name": "mc-infra-manager:Forwardanyreqtoany", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c823df3e-8a76-407d-88cd-fa3b0407f97c", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getallbenchmark", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b60216ec-238f-4851-8e2f-ce4094ea14d4", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getallconfig", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9374d120-ae9c-4fb7-859b-d91bf8683317", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getallcustomimage", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "93325d8d-50c0-4145-bf00-41083a189816", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getalldatadisk", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ddb0f29c-c7bb-421b-8b4f-738b86a5022a", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getallimage", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "67a8b7a2-cdbb-40b5-9eff-196c487f1e32", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getallk8scluster", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "30d79284-edd6-4a4d-a4b3-e8bc9db80e06", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getallmci", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "3ebfb292-6d6e-49e5-92db-eb42082d62c4", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getallmcipolicy", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "1113e8f5-b9aa-49f9-a56d-45ea26982985", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getallnlb", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "be5e6045-4053-45e3-a04a-2434d7476180", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getallns", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c0b993fe-b90c-4966-8abd-c08af453722a", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getallrequests", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b6cc0780-4662-4eaf-91d4-66d90d8f28ad", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getallsecuritygroup", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "64e139d3-95d5-434e-9cc8-ddf7e173d790", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getallsshkey", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "44bcc0c4-ab01-4b5e-9700-3030c51f2fac", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getallsubnet", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "714c5b29-19e7-4c84-b987-65a7110fd308", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getallvnet", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "297fc467-1e8a-4eee-816a-670276a911b7", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getavailablek8sclusternodeimage", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "4c14c138-c03e-45c7-8216-78e7880cb107", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getavailablek8sclusterversion", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c5d974cd-3a89-41c2-97e0-a9a4f3cad94b", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getbastionnodes", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9209a4e6-1f89-46c6-8314-457cfabcfe34", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getbenchmark", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "96d893ad-03c6-408d-9544-136d44e3aefd", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getcloudinfo", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "94007edf-6694-4474-ae4c-8873de7ad298", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getconfig", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "84c109e0-e3e6-44b7-b656-34f00aa71174", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getconnconfig", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "267bd2d2-a22c-42f6-9f49-ee39b3bbca2c", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getconnconfiglist", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "09e0d0aa-b97c-4cd2-849c-be18518fb10e", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getcontrolmci", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "1d632a22-3da8-4847-b72c-55ab6756ed50", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getcontrolmcivm", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "35dbcc18-b7ab-486c-b274-ae098576c5f0", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getcustomimage", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "09140178-4069-4c20-94a2-c763c9ccaaa9", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getdatadisk", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a8b70a58-d97e-46b2-9516-900705602b24", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getimage", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "3ad3678b-c3f7-4464-b4a5-4282fbdb8bc1", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getk8scluster", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "299e69cc-bb07-4849-9109-b3cc5bb24773", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getk8sclusterinfo", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "5c824386-d4b3-4c46-975d-1615a77f651c", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getlabels", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "73d24a83-8488-40e0-9700-c46bf7aeeea2", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getlatencybenchmark", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "bb583ae2-70cf-4b5d-bc1e-377b0e5083ab", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getmci", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ea73ea92-b749-475a-8930-053711cb41f9", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getmcigroupids", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "979e1d84-7eba-4755-ad19-3d19eef91d19", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getmcigroupvms", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "091f295f-5dc9-4915-bb4e-08fde9b6a2d4", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getmcipolicy", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "aa7942db-f6ce-4b75-82f5-e2fa9a33fc12", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getmcivm", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "90f61301-a194-4a0c-8789-199fd363a40f", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getmonitordata", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "0fcd92a9-71f7-4098-ae9d-51781d6621d5", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getnlb", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f5af8585-3fcf-4ed2-af22-410d2e2841ef", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getnlbhealth", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a47b9bf3-787a-42e4-b7de-0613a89ecf84", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getns", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e86d51e8-0866-482e-b81e-9e4afcb425ca", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getobject", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "6057366c-7840-4ed3-a104-6a2672c5b6fd", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getobjects", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "cd647195-6242-4a2a-8709-510144d519f0", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getproviderlist", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "81ba6c7a-87c1-4123-9510-de02065daf56", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getpublickeyforcredentialencryption", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "35d1ca3f-937e-4846-8ea2-4cffa711ea6c", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getreadyz", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "2ec2071e-758f-41a0-a816-a03ebbd22d68", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getregion", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "2311e553-6115-4011-a7dd-670d75448f58", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getregions", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "23e8d8f7-17df-415a-a88f-491ff1600e3c", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getrequest", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "0e153477-adbb-4465-b4e8-15a24ed84a62", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getrequeststatusofsitetositevpn", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "5a148cdc-6025-4cc2-9dcc-76f5e3baa6f2", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getresourcesbylabelselector", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "46cc012a-93d0-46e8-804d-6a56c304c667", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getsecuritygroup", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "3fd529cc-ce03-45fe-8f37-1fa8e0bf0722", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getsitesinmci", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e62fdf02-628b-4c4d-a3e3-d7bfb1bd5579", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getsitetositevpn", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "856163b8-b604-492e-b554-11ad468bf8ce", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getspec", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "3bfd9e53-f6a0-472e-b7b2-6fa5dd0fc02d", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getsshkey", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "15eed8e4-049e-45cf-942a-bb630f07b8c3", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getsubnet", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d2a8502b-c085-47ac-871d-9ebae1497d21", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getsystemlabelinfo", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e142a771-97a0-4d7e-b3f5-23700794000e", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getvmdatadisk", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "77c88e39-6225-4229-ab0a-c43af31920f0", + "logic": "POSITIVE", + "name": "mc-infra-manager:Getvnet", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "caa9207e-69a8-4f12-8fc0-cc26d884aaff", + "logic": "POSITIVE", + "name": "mc-infra-manager:Initallconfig", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a5ede9f1-053c-49a4-bbf4-7e4a30927802", + "logic": "POSITIVE", + "name": "mc-infra-manager:Initconfig", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "aba73c5a-a04a-449e-85e0-e9ac084b67f3", + "logic": "POSITIVE", + "name": "mc-infra-manager:Inspectresources", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9862a07b-adda-4eb4-99ba-b24cdbc46200", + "logic": "POSITIVE", + "name": "mc-infra-manager:Inspectresourcesoverview", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f18e30e6-084b-4edb-8e18-1b37d8ec5b2b", + "logic": "POSITIVE", + "name": "mc-infra-manager:Loadassets", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "4f76ee2e-3f50-4bc0-a570-21cb81a4ab95", + "logic": "POSITIVE", + "name": "mc-infra-manager:Lookupimage", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e7725eb7-5fee-4003-8f8f-9fd65ed86c52", + "logic": "POSITIVE", + "name": "mc-infra-manager:Lookupimagelist", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b566c6c7-3cee-4714-abae-b795509003a9", + "logic": "POSITIVE", + "name": "mc-infra-manager:Lookupspec", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "66048ffc-cd28-4eea-bac5-78f9c1f40170", + "logic": "POSITIVE", + "name": "mc-infra-manager:Lookupspeclist", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "2bc3121e-3f5b-49bc-8a69-0442deafd4b7", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postcmdmci", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "78c34145-ee3d-4ed3-abf9-70b8c497f2c9", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postconfig", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "8c1b79eb-1a68-4866-aaaf-d52c7fa54b42", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postcustomimage", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "235683e1-ba67-46c8-9d6f-d841072059c0", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postdatadisk", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c282bb4c-962d-4249-81e3-fa24beb694f9", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postfiletomci", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "3216bc7c-afab-4bf6-81ad-d88cf9f44f15", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postfirewallrules", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "081de21b-d276-4942-8a89-4e3215b5cb30", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postimage", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "5b579ca2-01f5-4d97-9ba2-f6de3a49bcdc", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postinstallbenchmarkagenttomci", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "4d5870bd-5598-4edf-9100-d3c40bb2b874", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postinstallmonitoragenttomci", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e9d9b6c5-a470-43d5-b29a-82783acfe494", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postk8scluster", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f7e65ee0-441d-4ff8-bb34-b2bb06b95e69", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postk8snodegroup", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "205e53f9-fde9-42b8-8ff1-3678c7a2f6ed", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postmci", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "504a6543-89b8-4e27-b49e-a1dae8c84c96", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postmcidynamic", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d9d90dae-9a9e-47f4-86d3-2a76616bc8e6", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postmcidynamiccheckrequest", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c11b63a3-a315-4bf1-95e8-283a472f3007", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postmcipolicy", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "50127898-c772-49a2-80cd-9d75141401d0", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postmcisubgroupscaleout", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "2d56fdf7-a144-42cc-ad0e-98b650cd4cb3", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postmcivm", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ccb29980-ccdd-4e56-b8c2-78bdfba60ba3", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postmcivmdynamic", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9f295ef4-194e-4d20-94ec-5a2f3f3f3b8b", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postmcivmsnapshot", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "24618577-74b3-45b9-b02d-8796cc7f752c", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postmcnlb", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a5ce2d4c-afef-4a6d-95e4-7c2de0fba64b", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postnlb", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "70e4ba2e-571e-4ee6-946f-d9cbc4948141", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postns", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "317204f9-472b-43ee-b9c5-5c36becf1b0e", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postregistercspnativevm", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "3e02c98d-6849-4d96-9f6f-1e5f01675071", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postregistersubnet", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "da999c23-0ff7-44e6-b6b5-fe64f499ab3a", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postregistervnet", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d584d1d0-6aa2-4e7d-9233-48045af426af", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postsecuritygroup", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b04e26c1-7fbb-4939-ae97-54852461fe21", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postsitetositevpn", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c4c3736a-17b4-436f-9894-2f9921d1dfff", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postspec", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c41edf44-0b89-477b-abed-bc8b234b47fb", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postsshkey", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c4f8beeb-9914-4c52-b4f0-56d38b6e681f", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postsubnet", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "8b15a298-a706-4803-8f5e-656377edd837", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postsystemmci", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "23fdde6f-c7c6-4275-bb52-b7211a434503", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postteststreamresponse", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "fe5bb3e7-2d8d-4cd1-a8a1-a0742bf84e1c", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postutiltodesignnetwork", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "76df28a2-7b29-4a57-b523-d4d10d8dc7a4", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postutiltodesignvnet", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "811b8964-acb8-41e8-a114-bbd571783d20", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postutiltovalidatenetwork", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ca76a843-1914-4aab-8c38-c95b7e32f607", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postvmdatadisk", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a92e334c-7949-4778-b0c0-4496b064e86a", + "logic": "POSITIVE", + "name": "mc-infra-manager:Postvnet", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "81b39bb0-bd8a-44dd-acc5-e3b42b2679d8", + "logic": "POSITIVE", + "name": "mc-infra-manager:Putchangek8snodegroupautoscalesize", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "7295ba98-05f2-408a-98d7-f224c48ae70f", + "logic": "POSITIVE", + "name": "mc-infra-manager:Putdatadisk", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "50f2f8d3-7334-4fdb-8bf1-a9671304c156", + "logic": "POSITIVE", + "name": "mc-infra-manager:Putimage", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f0962477-4714-41fb-a964-5d60e01a6e63", + "logic": "POSITIVE", + "name": "mc-infra-manager:Putmonitoragentstatusinstalled", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "4cf10fb1-6e90-475b-8133-889209582b94", + "logic": "POSITIVE", + "name": "mc-infra-manager:Putns", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "8c9b0770-e2db-45c8-a59f-f900c928eb7b", + "logic": "POSITIVE", + "name": "mc-infra-manager:Putsetk8snodegroupautoscaling", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "78df72ec-cac6-4ce9-9266-7c083726ebe8", + "logic": "POSITIVE", + "name": "mc-infra-manager:Putsitetositevpn", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "af3460e7-85fa-4c30-97ac-69e219f4fa60", + "logic": "POSITIVE", + "name": "mc-infra-manager:Putspec", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "4f7d250b-07d1-483e-b5ab-ead731626aaa", + "logic": "POSITIVE", + "name": "mc-infra-manager:Putsshkey", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f11f4e8e-1d0e-4de0-91e7-ed44a59f8441", + "logic": "POSITIVE", + "name": "mc-infra-manager:Putupgradek8scluster", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "77076300-9063-46c9-99ec-75d778598044", + "logic": "POSITIVE", + "name": "mc-infra-manager:Putvmdatadisk", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b68b1f16-c605-480e-bc95-b3d2771647e5", + "logic": "POSITIVE", + "name": "mc-infra-manager:Recommendvm", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "8b191ab3-adf4-429e-b675-fff96a2b6bfe", + "logic": "POSITIVE", + "name": "mc-infra-manager:Registercredential", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a11ab7d3-c438-4007-8dc5-0badbe6a89e3", + "logic": "POSITIVE", + "name": "mc-infra-manager:Registercspnativeresources", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "33ce0c15-39a9-48d9-ac9c-df21be0df058", + "logic": "POSITIVE", + "name": "mc-infra-manager:Registercspnativeresourcesall", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c11f24e0-919c-4dcb-881a-adc3ac462203", + "logic": "POSITIVE", + "name": "mc-infra-manager:Removebastionnodes", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "dbd26b0c-2274-479a-a9c9-689674ff82d9", + "logic": "POSITIVE", + "name": "mc-infra-manager:Removelabel", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d818ac1b-537f-4f9a-a0a7-06ddd28f1e33", + "logic": "POSITIVE", + "name": "mc-infra-manager:Removenlbvms", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "1b454c91-f214-4ad8-9ba0-7b76ec512105", + "logic": "POSITIVE", + "name": "mc-infra-manager:Retrieveregionlistfromcsp", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "563e959a-2d3c-43ba-b3f3-17811ffd6038", + "logic": "POSITIVE", + "name": "mc-infra-manager:Searchimage", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "966dc410-9451-4ca4-af8b-aebcda49e93d", + "logic": "POSITIVE", + "name": "mc-infra-manager:Setbastionnodes", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "46e8ebdb-e944-4482-8649-2627e3b8dfa9", + "logic": "POSITIVE", + "name": "mc-infra-manager:Testjwtauth", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "39b415f8-7a5b-4944-9673-c839612fb083", + "logic": "POSITIVE", + "name": "mc-observability:CreateEmailUserUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "3732d512-cde5-45a0-97ac-141f72bd3753", + "logic": "POSITIVE", + "name": "mc-observability:CreateSlackUserUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "8efd269e-b608-498d-8a63-0913bd77f835", + "logic": "POSITIVE", + "name": "mc-observability:CreateUsingPOST_2", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "2529e1c1-ff49-491f-ac98-4947a2b22976", + "logic": "POSITIVE", + "name": "mc-observability:DeleteAnomalyDetectionTarget", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a2a26fd0-d765-4e8d-a538-d4a78332bfd7", + "logic": "POSITIVE", + "name": "mc-observability:DeleteEmailUserUsingDELETE", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9a24f1c9-177d-48a2-a727-be90549be8fd", + "logic": "POSITIVE", + "name": "mc-observability:DELETE_items", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "8dd6e62a-858a-4c88-96fb-a02b74fcdc09", + "logic": "POSITIVE", + "name": "mc-observability:DeleteSlackUserUsingDELETE", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "33b02133-f3d2-4e94-be76-3ded80a18de5", + "logic": "POSITIVE", + "name": "mc-observability:DELETE_storages", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d565214a-cdc0-4917-8de1-23b551169419", + "logic": "POSITIVE", + "name": "mc-observability:DELETE_target", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "3468897e-d8ad-4880-a490-d22cd9493b1e", + "logic": "POSITIVE", + "name": "mc-observability:DeleteUsingDELETE_2", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "6c1eb264-6a9e-4405-bb60-8835fa9b5294", + "logic": "POSITIVE", + "name": "mc-observability:GetAllAnomalyDetectionTargets", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "baa6f157-f891-4bbb-9f38-f88164d0c23e", + "logic": "POSITIVE", + "name": "mc-observability:GetAnomalyDetectionOptions", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "47856964-df19-4055-a119-f16300f60c82", + "logic": "POSITIVE", + "name": "mc-observability:GetAnomalyDetectionResults", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "cbf35708-8127-40c5-b4dd-b7db9873442c", + "logic": "POSITIVE", + "name": "mc-observability:GetEmailUserListUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "94653289-88ee-44d8-82d3-214ca2e30221", + "logic": "POSITIVE", + "name": "mc-observability:GET_InfluxDBInfo", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "41c1f0c6-6d25-41b4-9814-057d07bfb0b9", + "logic": "POSITIVE", + "name": "mc-observability:GET_InfluxDBs", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "7b95643c-36b5-453f-9f19-aabacec73006", + "logic": "POSITIVE", + "name": "mc-observability:GET_InfluxDBTag", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "0973a01e-c37a-4400-86a6-abedc42f2c9a", + "logic": "POSITIVE", + "name": "mc-observability:GET_items", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "bb11b737-7108-4a84-b412-ed2176225da6", + "logic": "POSITIVE", + "name": "mc-observability:GET_Metric", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "1ef0c99a-d00c-4066-9d12-da89a4d53e8b", + "logic": "POSITIVE", + "name": "mc-observability:GET_plugins", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "303e96b9-c878-407a-a6e4-54ae554be010", + "logic": "POSITIVE", + "name": "mc-observability:GetPredictionHistory", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "2c67132d-cfa2-4a84-ab19-e8bba6f261a7", + "logic": "POSITIVE", + "name": "mc-observability:GetPredictionOptions", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9384da74-8ea4-4f6f-8271-0dc743ab4ba7", + "logic": "POSITIVE", + "name": "mc-observability:GetSlackUserListUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e8cbbd1b-5d7d-4361-ac75-f20b56e24c7b", + "logic": "POSITIVE", + "name": "mc-observability:GetSpecificAnomalyDetectionTarget", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9cc521c4-c64a-4d8f-be70-c0ee93ef2363", + "logic": "POSITIVE", + "name": "mc-observability:GET_storages", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f5a12cb4-d5cb-46b3-be3f-c65420e08cab", + "logic": "POSITIVE", + "name": "mc-observability:GET_targets", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "2b13cb58-ec82-4f3b-8dfa-764f57f93bbe", + "logic": "POSITIVE", + "name": "mc-observability:ListUsingGET_4", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "5fbf189b-0ae8-4353-8f48-b57aa661228e", + "logic": "POSITIVE", + "name": "mc-observability:ListUsingGET_5", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e3c43e97-8329-492e-b3e6-08f58be72039", + "logic": "POSITIVE", + "name": "mc-observability:POST_items", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "87c57e70-eeb3-4481-801a-bff415dd2e42", + "logic": "POSITIVE", + "name": "mc-observability:POST_storages", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "622454f8-6b67-4240-94a1-eae2f69feb76", + "logic": "POSITIVE", + "name": "mc-observability:POST_target", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "592a21ba-1686-40d0-9f78-d1706ae7440d", + "logic": "POSITIVE", + "name": "mc-observability:PredictMetrics", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f640e247-050a-4f37-8206-912b468378c1", + "logic": "POSITIVE", + "name": "mc-observability:PUT_items", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d652ff55-6300-465f-9648-708d47865fb0", + "logic": "POSITIVE", + "name": "mc-observability:PUT_storages", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "baf2253f-c7ff-4123-93c0-a79c011cf65e", + "logic": "POSITIVE", + "name": "mc-observability:PUT_target", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "3ca0c8c6-21a4-4aed-b432-707324102eb7", + "logic": "POSITIVE", + "name": "mc-observability:RegisterAnomalyDetectionTarget", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "11d519ba-ee61-417a-b8e7-a5cff0495309", + "logic": "POSITIVE", + "name": "mc-observability:SetTargetsUsingPUT", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b8ad9ab8-af09-408d-baea-f22407b110e3", + "logic": "POSITIVE", + "name": "mc-observability:UpdateAnomalyDetectionTarget", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "3c31a890-6c70-49c1-ad6f-e29ecc36280f", + "logic": "POSITIVE", + "name": "mc-observability:UpdateUsingPATCH_3", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "bfb410f4-dd71-45fc-8f38-c1a48e3d3ff7", + "logic": "POSITIVE", + "name": "mc-web-console:accesscontrolsmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "006f1268-66aa-4b45-b51d-5baf801b7f55", + "logic": "POSITIVE", + "name": "mc-web-console:accountnaccessmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "682b6737-70fe-489f-b639-6b7f04aba2be", + "logic": "POSITIVE", + "name": "mc-web-console:alarmshistorymenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "14b48c7c-c753-4bc4-b221-ea46bdd11ab9", + "logic": "POSITIVE", + "name": "mc-web-console:analyticsmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "162f8824-1650-4f09-81b6-4b5dfacbd3f2", + "logic": "POSITIVE", + "name": "mc-web-console:Anycontroller", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c015c550-6712-4c32-a3a2-b86c21f18a94", + "logic": "POSITIVE", + "name": "mc-web-console:Availabledisktypebyproviderregion", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "5775af4d-aa97-400a-a383-c8462d21fa7d", + "logic": "POSITIVE", + "name": "mc-web-console:cloudoverviewmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "95496a07-06c3-4b89-b79b-ccee62e18c2a", + "logic": "POSITIVE", + "name": "mc-web-console:cloudresourcesmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c3043bc0-2e03-4d8c-b292-262df726f419", + "logic": "POSITIVE", + "name": "mc-web-console:cloudspsmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "db7bf677-8b23-4ae4-b913-80720ddd6f34", + "logic": "POSITIVE", + "name": "mc-web-console:costanalysismenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9bf17812-fe38-45a7-92ae-f6bddaba84ec", + "logic": "POSITIVE", + "name": "mc-web-console:Createmenuresources", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e7e05eb5-9fe2-4db8-adef-2bc74fc91fed", + "logic": "POSITIVE", + "name": "mc-web-console:credentialsmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "0006d791-0630-49b1-ae5f-f1d9cc045dfd", + "logic": "POSITIVE", + "name": "mc-web-console:Disklookup", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "7b243644-8ef2-4edb-8e49-20eab3aaaf3b", + "logic": "POSITIVE", + "name": "mc-web-console:environmentmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b2651279-d686-4700-a6a8-8fad00973a3d", + "logic": "POSITIVE", + "name": "mc-web-console:eventsntracesmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b8971185-f27a-4210-8f40-c013a9077748", + "logic": "POSITIVE", + "name": "mc-web-console:eventtracemenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "3aa23694-85e9-41bd-aa00-bbe70fe664cb", + "logic": "POSITIVE", + "name": "mc-web-console:Getmenutree", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "230a4dfe-509e-4c1f-9859-abe853fccf23", + "logic": "POSITIVE", + "name": "mc-web-console:logconfigmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "344d8987-34cf-4b05-81b9-c478d2847d29", + "logic": "POSITIVE", + "name": "mc-web-console:loginscreen", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ea8e21d7-84b7-420d-b675-66a66d7262c9", + "logic": "POSITIVE", + "name": "mc-web-console:logmanagemenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "4e338b44-9b2d-4d73-bf36-ae0a81ed1c44", + "logic": "POSITIVE", + "name": "mc-web-console:managemenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f0653d0a-d328-43b1-bbc3-21f78a82a0c9", + "logic": "POSITIVE", + "name": "mc-web-console:mcismonitoringmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "70bb656f-c478-4b26-a536-4bb9ae3e5cf8", + "logic": "POSITIVE", + "name": "mc-web-console:mciswlsmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "33186003-feba-488d-8ba4-9f207e2a09af", + "logic": "POSITIVE", + "name": "mc-web-console:membersmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a82ad1b7-23ab-4b01-ba8e-25f02eba3dcf", + "logic": "POSITIVE", + "name": "mc-web-console:monitoringconfigmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "0411d675-e20f-4cd0-a11e-9f16a1186add", + "logic": "POSITIVE", + "name": "mc-web-console:monitoringsmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "dcbf0f49-ab54-402e-86e4-3c3c45ef9ca0", + "logic": "POSITIVE", + "name": "mc-web-console:myimagesmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b97ce4ab-3bf7-4fa3-bdbd-9319beb92e18", + "logic": "POSITIVE", + "name": "mc-web-console:networksmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b836b82a-6c7f-4059-8751-3b1550e247e1", + "logic": "POSITIVE", + "name": "mc-web-console:operationsmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "da34caa0-bb26-4af2-b50b-c4adda150c8d", + "logic": "POSITIVE", + "name": "mc-web-console:organizationsmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "4214c3e3-922d-46e2-941f-cba8c9bc21d7", + "logic": "POSITIVE", + "name": "mc-web-console:pmkwlsmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "4adcd80a-7da7-4909-b289-72f24dbc225b", + "logic": "POSITIVE", + "name": "mc-web-console:projectsmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b7d9071a-09d1-43d6-8c11-cda9b5c6b052", + "logic": "POSITIVE", + "name": "mc-web-console:rolesmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9c4a8e30-c907-4fa3-b4d5-ab3bb886b2dc", + "logic": "POSITIVE", + "name": "mc-web-console:settingsmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "fd9e1b4e-207f-4722-b5db-e80c87e533ec", + "logic": "POSITIVE", + "name": "mc-web-console:thirdpartymonitoringmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "5f2ee7cd-e0d3-40dc-9415-51f3b34127f1", + "logic": "POSITIVE", + "name": "mc-web-console:thresholdconfigmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "226a1e2d-1dc5-4585-afab-7d4a4fe1becb", + "logic": "POSITIVE", + "name": "mc-web-console:usersmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "7e19ded6-7ed8-4437-b7ba-942d9115838b", + "logic": "POSITIVE", + "name": "mc-web-console:Webgetuserinfo", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "7a3f354b-0fbd-4560-ba10-4af19204fa52", + "logic": "POSITIVE", + "name": "mc-web-console:Weblogin", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d5eb0067-759c-4543-a506-525500fbdb7e", + "logic": "POSITIVE", + "name": "mc-web-console:Webloginrefresh", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "f61c220e-973a-4b8b-9fbd-2c16a007507f", + "logic": "POSITIVE", + "name": "mc-web-console:Weblogout", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "3415e1fe-2462-45f3-84db-12cadce0ddcb", + "logic": "POSITIVE", + "name": "mc-web-console:Webvalidate", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e10e768b-bc54-47ef-8935-ff4e6409d19b", + "logic": "POSITIVE", + "name": "mc-web-console:workloadsmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "878c9395-a371-4e3e-a7ee-b79899ac053a", + "logic": "POSITIVE", + "name": "mc-web-console:workspacesmenu", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "26184587-9ed9-418f-99bc-5a39faf5917c", + "logic": "POSITIVE", + "name": "mc-workflow-manager:CheckConnectionUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a66211ce-62e2-4e99-9049-078725f94829", + "logic": "POSITIVE", + "name": "mc-workflow-manager:DeleteEventListnerUsingDELETE", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "28076b84-130f-43d1-acf5-fff7c2560079", + "logic": "POSITIVE", + "name": "mc-workflow-manager:DeleteOssTypeUsingDELETE", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "a722be4c-e85e-47e4-856f-3fb32acb17ea", + "logic": "POSITIVE", + "name": "mc-workflow-manager:DeleteOssUsingDELETE", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d9a68eff-6d23-49d2-874b-da5d345633c8", + "logic": "POSITIVE", + "name": "mc-workflow-manager:DeleteWorkflowStageTypeUsingDELETE", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9ccb8a8e-20dc-4b3c-a4f2-9e22d57a4a53", + "logic": "POSITIVE", + "name": "mc-workflow-manager:DeleteWorkflowStageUsingDELETE", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e3cbdd9d-d6f1-4092-a0fb-67a27197c6bf", + "logic": "POSITIVE", + "name": "mc-workflow-manager:DeleteWorkflowUsingDELETE", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "eaaa6976-6a73-4ff7-b068-2b31ec14918b", + "logic": "POSITIVE", + "name": "mc-workflow-manager:DetailEventListenerUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "1dd134d6-58fd-433e-bf12-a8aabcf1ef4e", + "logic": "POSITIVE", + "name": "mc-workflow-manager:DetailOssTypeUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "e27a4f3c-3f09-41e9-aa35-8006db6f941f", + "logic": "POSITIVE", + "name": "mc-workflow-manager:DetailOssUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "223191a5-b407-45fe-b2dc-6d7fdbdc3e88", + "logic": "POSITIVE", + "name": "mc-workflow-manager:DetailWorkflowStageTypeUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "bea29c7f-cf99-4da6-88e0-e7cd995f92d3", + "logic": "POSITIVE", + "name": "mc-workflow-manager:DetailWorkflowStageUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "2b6e5f1c-208d-4fbe-ac29-8efefe05d2af", + "logic": "POSITIVE", + "name": "mc-workflow-manager:GetDefaultWorkflowStageUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "fb941ded-d97c-491c-9dba-f2a901323ef5", + "logic": "POSITIVE", + "name": "mc-workflow-manager:GetEventListenerListUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c9a1c0ae-7276-4b56-b212-5653d1bf9de0", + "logic": "POSITIVE", + "name": "mc-workflow-manager:GetOssListUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "10a16f18-d958-4e65-8d15-766b23f2d46c", + "logic": "POSITIVE", + "name": "mc-workflow-manager:GetOssListUsingGET_1", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "8f8ff5a0-c77f-4727-8471-5c2c0cdeb307", + "logic": "POSITIVE", + "name": "mc-workflow-manager:GetOssTypeListUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "62fe3e0f-a234-4a27-a4ab-6e58166c0d1e", + "logic": "POSITIVE", + "name": "mc-workflow-manager:GetWorkflowHistoryListUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "5010475c-b99f-4bb5-b640-554069d1f4d3", + "logic": "POSITIVE", + "name": "mc-workflow-manager:GetWorkflowListUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "8d8c8451-7993-48e3-8d6b-7d18cffee0c9", + "logic": "POSITIVE", + "name": "mc-workflow-manager:GetWorkflowParamListUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c9a763c5-207b-4a5a-9ecc-b52c324ab0f6", + "logic": "POSITIVE", + "name": "mc-workflow-manager:GetWorkflowStageListUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "980b58a3-2348-457f-b523-a43c5b95d71d", + "logic": "POSITIVE", + "name": "mc-workflow-manager:GetWorkflowStageListUsingGET_1", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "d6a5aa23-ccc4-4973-a1e4-a1c804189895", + "logic": "POSITIVE", + "name": "mc-workflow-manager:GetWorkflowStageListUsingGET_2", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "758b1690-8d2d-4e27-84c3-e69163f47e04", + "logic": "POSITIVE", + "name": "mc-workflow-manager:GetWorkflowTemplateUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "34982257-54f8-4905-b757-425159bf6ca9", + "logic": "POSITIVE", + "name": "mc-workflow-manager:GetWorkflowUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ccdf7f1e-abb5-4606-96e4-c9f4fff92e86", + "logic": "POSITIVE", + "name": "mc-workflow-manager:IsOssInfoDuplicatedUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "8e1ff839-a9fa-4b05-bf79-b8904d27f56e", + "logic": "POSITIVE", + "name": "mc-workflow-manager:IsWorkflowNameDuplicatedUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "cb5d5a0a-6ca0-41c9-82fb-752cf6e9abce", + "logic": "POSITIVE", + "name": "mc-workflow-manager:IsWorkflowStageNameDuplicatedUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "65776e56-1ca4-4156-97f5-0630016c34f2", + "logic": "POSITIVE", + "name": "mc-workflow-manager:OpenapiJsonUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9d87f533-672b-40dc-885b-bf1f3b025941", + "logic": "POSITIVE", + "name": "mc-workflow-manager:OpenapiJsonUsingGET_1", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "ec6a345c-cf4c-4419-bcf1-0baa82849a01", + "logic": "POSITIVE", + "name": "mc-workflow-manager:OpenapiYamlUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "62f41ad9-eb4c-42db-9384-98476919e78a", + "logic": "POSITIVE", + "name": "mc-workflow-manager:RedirectToUiUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "99dc10cf-0178-4f91-8d2d-df68d19c1167", + "logic": "POSITIVE", + "name": "mc-workflow-manager:RegistEventListnerUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "c99270a7-e016-4594-888a-81ad5c8fac45", + "logic": "POSITIVE", + "name": "mc-workflow-manager:RegistOssTypeUsingPOST", + "type": "resource" }, - "Expiration": { - "example": "2024-04-09T00:51:43Z", - "type": "string" + { + "decisionStrategy": "UNANIMOUS", + "id": "9f2eea99-2a2a-4f7b-afde-82d91edb4c48", + "logic": "POSITIVE", + "name": "mc-workflow-manager:RegistOssUsingPOST", + "type": "resource" }, - "SecretAccessKey": { - "example": "xxxx", - "type": "string" + { + "decisionStrategy": "UNANIMOUS", + "id": "94c235cd-9b06-437d-ba89-b7f7de9876cc", + "logic": "POSITIVE", + "name": "mc-workflow-manager:RegistWorkflowStageUsingPOST", + "type": "resource" }, - "SessionToken": { - "example": "xxxx", - "type": "string" - } - }, - "type": "object" - } - }, - "503": { - "description": "Securitykey CSP err", - "headers": { - "Content-Length": { - "type": "string" - }, - "Date": { - "type": "string" - }, - "Vary": { - "type": "string" - } - }, - "schema": { - "properties": { - "err": { - "example": "provided CSP is not supported", - "type": "string" + { + "decisionStrategy": "UNANIMOUS", + "id": "603fa04f-47f8-4578-91bf-e321f28896e2", + "logic": "POSITIVE", + "name": "mc-workflow-manager:RegistWorkflowStageUsingPOST_1", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "0c1aa736-d8b0-4114-aa9f-1942c45b1027", + "logic": "POSITIVE", + "name": "mc-workflow-manager:RegistWorkflowUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "589b045b-edff-46f5-a1ce-b68bc4bb524e", + "logic": "POSITIVE", + "name": "mc-workflow-manager:RunEventListenerUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "2d17171e-1c5b-48ce-a506-24c2e510f0dd", + "logic": "POSITIVE", + "name": "mc-workflow-manager:RunWorkflowGetUsingGET", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "30319c54-5bb6-4c45-b4f1-4fcb035dd686", + "logic": "POSITIVE", + "name": "mc-workflow-manager:RunWorkflowPostUsingPOST", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "51f39be4-23fa-403a-a0b0-e5a0e675c849", + "logic": "POSITIVE", + "name": "mc-workflow-manager:UpdateEventListnerUsingPATCH", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "cc4540e7-1b8b-47c1-b864-ec410bee6f90", + "logic": "POSITIVE", + "name": "mc-workflow-manager:UpdateOssTypeUsingPATCH", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "bd7467d4-0b12-4e2c-9974-3d09c917eebb", + "logic": "POSITIVE", + "name": "mc-workflow-manager:UpdateOssUsingPATCH", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "b3d87d3a-556f-436b-864c-1064160ca351", + "logic": "POSITIVE", + "name": "mc-workflow-manager:UpdateWorkflowStageTypeUsingPATCH", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "9b1431f1-c5b2-4c5f-a795-059d2e5711e9", + "logic": "POSITIVE", + "name": "mc-workflow-manager:UpdateWorkflowStageUsingPATCH", + "type": "resource" + }, + { + "decisionStrategy": "UNANIMOUS", + "id": "bf7e2df3-50ac-4217-ac7f-e4e49e797e54", + "logic": "POSITIVE", + "name": "mc-workflow-manager:UpdateWorkflowUsingPATCH", + "type": "resource" } + ], + "items": { + "properties": { + "decisionStrategy": { + "example": "UNANIMOUS", + "type": "string" + }, + "id": { + "example": "b6069eed-8bee-41e0-b637-abc000532504", + "type": "string" + }, + "logic": { + "example": "POSITIVE", + "type": "string" + }, + "name": { + "example": "mc-application-manager:CheckConnectionUsingPOST", + "type": "string" + }, + "type": { + "example": "resource", + "type": "string" + } + }, + "type": "object" }, - "type": "object" + "type": "array" } } }, "tags": [ - "SecurityToken" + "Permission" ], - "description": "임시보안자격증명 발급요청\n\nPOC 단계.\n\nAWS / Alibaba OIDC 기반 Keyclaok IDP 사용으로 연결 설정 필요", - "operationId": "securitykeyNotuse", - "summary": "Securitykey#notuse" + "description": "권한을 검색합니다.", + "operationId": "getdependentpermissionsbypolicyid", + "summary": "GetdependentPermissionsByPolicyId" } }, "/api/prj": { @@ -3578,7 +8123,7 @@ "tags": [ "Resource" ], - "description": "사용자는 uma_protection Role 을 가져야 한다.", + "description": "리소스의 정보를 검색합니다.", "operationId": "getresources", "summary": "GetResources" }, @@ -3606,28 +8151,28 @@ "schema": { "example": [ { - "framework": "testFw", - "method": "GET", - "operationId": "testOperation", - "uri": "/test/operation" + "framework": "mc-web-console", + "method": "POST", + "operationId": "GetWorkspaceRoles", + "uri": "/api/getworkspaceroles" } ], "items": { "properties": { "framework": { - "example": "testFw", + "example": "mc-web-console", "type": "string" }, "method": { - "example": "GET", + "example": "POST", "type": "string" }, "operationId": { - "example": "testOperation", + "example": "GetWorkspaceRoles", "type": "string" }, "uri": { - "example": "/test/operation", + "example": "/api/getworkspaceroles", "type": "string" } }, @@ -3718,7 +8263,7 @@ "tags": [ "Resource" ], - "description": "사용자는 uma_protection Role 을 가져야 한다.", + "description": "리소스를 생성합니다.", "operationId": "createresource", "summary": "CreateResource" } @@ -5869,7 +10414,7 @@ "tags": [ "Resource" ], - "description": "사용자는 uma_protection Role 을 가져야 한다.", + "description": "mc-admin-cli 에서 생성한 api yaml을 바탕으로 모든 리소스를 등록합니다. \n리소스가 중복될시 오류를 반환하고 업데이트 하지 않습니다.", "operationId": "createapiresourcesbyapiyaml", "summary": "CreateApiResourcesByApiYaml" } @@ -6071,7 +10616,7 @@ "tags": [ "Resource" ], - "description": "사용자는 uma_protection Role 을 가져야 한다.", + "description": "mc-web-console 등 menu yaml을 사용해서 메뉴 리소스를 등록합니다.", "operationId": "createmenuresourcesbymenuyaml", "summary": "CreateMenuResourcesByMenuYaml" } @@ -6118,7 +10663,7 @@ "tags": [ "Resource" ], - "description": "DeleteResource", + "description": "리소스를 삭제합니다.", "operationId": "deleteresource", "summary": "DeleteResource" }, @@ -6182,9 +10727,9 @@ "tags": [ "Resource" ], - "description": "사용자는 uma_protection Role 을 가져야 한다.", - "operationId": "updateresourceDeprecated", - "summary": "UpdateResource#deprecated" + "description": "리소스를 업데이트 합니다.", + "operationId": "updateresource", + "summary": "UpdateResource" } }, "/api/resource/menus": { @@ -6483,7 +11028,7 @@ "tags": [ "Resource" ], - "description": "사용자는 uma_protection Role 을 가져야 한다.", + "description": "메뉴 리소스를 검색합니다.", "operationId": "getmenuresources", "summary": "GetMenuResources" } @@ -6528,7 +11073,7 @@ "tags": [ "Resource" ], - "description": "ResetResource", + "description": "모든 리소스를 삭제합니다.", "operationId": "resetresource", "summary": "ResetResource" } @@ -6573,7 +11118,7 @@ "tags": [ "Resource" ], - "description": "ResetMenuResource", + "description": "모든 메뉴 리소스를 삭제합니다.", "operationId": "resetmenuresource", "summary": "ResetMenuResource" } @@ -6583,7 +11128,14 @@ "produces": [ "application/json" ], - "parameters": [], + "parameters": [ + { + "description": "default is false", + "in": "query", + "name": "platformRole", + "type": "string" + } + ], "responses": { "200": { "description": "GetRoleList", @@ -6667,7 +11219,7 @@ }, "post": { "consumes": [ - "application/json" + "text/plain" ], "produces": [ "application/json" @@ -6677,17 +11229,8 @@ "in": "body", "name": "body", "schema": { - "properties": { - "description": { - "example": "admin Role", - "type": "string" - }, - "name": { - "example": "admin", - "type": "string" - } - }, - "type": "object" + "format": "binary", + "type": "string" } } ], @@ -6782,7 +11325,7 @@ "tags": [ "Role" ], - "description": "role 수정", + "description": "role 삭제", "operationId": "deleterolebyid", "summary": "DeleteRoleById" }, @@ -6841,7 +11384,7 @@ }, "put": { "consumes": [ - "text/plain" + "application/json" ], "produces": [ "application/json" @@ -6851,8 +11394,13 @@ "in": "body", "name": "body", "schema": { - "format": "binary", - "type": "string" + "properties": { + "description": { + "example": "New Role desc", + "type": "string" + } + }, + "type": "object" } } ], @@ -6928,6 +11476,12 @@ "in": "query", "name": "option", "type": "string" + }, + { + "description": "default is false", + "in": "query", + "name": "platformRole", + "type": "string" } ], "responses": { @@ -8076,7 +12630,7 @@ } }, "tags": [ - "Ticket" + "AccessTicket" ], "description": "사용자는 uma_protection Role 을 가져야 한다.", "operationId": "getallpermissions", @@ -8157,7 +12711,7 @@ } }, "tags": [ - "Ticket" + "AccessTicket" ], "description": "사용자는 uma_protection Role 을 가져야 한다.", "operationId": "getpermissionticket", @@ -8241,13 +12795,101 @@ } }, "tags": [ - "Ticket" + "AccessTicket" ], - "description": "사용자는 uma_protection Role 을 가져야 한다.", + "description": "해당 프레임워크 사용자에게 할당된 메뉴 리스트를 반환합니다.", "operationId": "getallavailablemenus", "summary": "GetAllAvailableMenus" } }, + "/api/tool/keycloak/role/sync": { + "get": { + "produces": [ + "application/json" + ], + "parameters": [], + "responses": { + "200": { + "description": "SyncProjectListWithMcInfra", + "headers": { + "Content-Length": { + "type": "string" + }, + "Date": { + "type": "string" + }, + "Vary": { + "type": "string" + } + }, + "schema": { + "example": [ + { + "created_at": "2024-08-22T07:55:33.333617Z", + "description": null, + "id": "75872e3b-8d74-4164-869f-ed351e0cdb6a", + "name": "default", + "ns_id": "default", + "updated_at": "2024-08-22T07:55:33.333617Z" + }, + { + "created_at": "2024-08-22T07:55:33.340937Z", + "description": null, + "id": "8644aee9-b765-4bc1-a272-e6ddc20ba764", + "name": "ns01", + "ns_id": "ns01", + "updated_at": "2024-08-22T07:55:33.340937Z" + }, + { + "created_at": "2024-08-22T07:55:33.346841Z", + "description": null, + "id": "3f795052-6ea3-4709-88b7-0f907811e45d", + "name": "system", + "ns_id": "system", + "updated_at": "2024-08-22T07:55:33.346841Z" + } + ], + "items": { + "properties": { + "created_at": { + "example": "2024-08-22T07:55:33.333617Z", + "type": "string" + }, + "description": { + "example": null, + "x-nullable": true + }, + "id": { + "example": "75872e3b-8d74-4164-869f-ed351e0cdb6a", + "type": "string" + }, + "name": { + "example": "default", + "type": "string" + }, + "ns_id": { + "example": "default", + "type": "string" + }, + "updated_at": { + "example": "2024-08-22T07:55:33.333617Z", + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + } + } + }, + "tags": [ + "Tool" + ], + "description": "연결된 TB(mcinframanager)의 NS 리스트를 Project List 로 등록. \n \n기존 등록된 project 와 중복이 발생하면 오류 발생. 새로운 환경에서 첫 회 실행하는 것을 추천.", + "operationId": "syncrolelistwithkeycloak", + "summary": "SyncRoleListWithKeycloak" + } + }, "/api/tool/mcinfra/sync": { "get": { "produces": [ @@ -8468,7 +13110,7 @@ "tags": [ "User" ], - "description": "사용자는 uma_protection Role 을 가져야 한다.", + "description": "사용자를 ID로 검색합니다.", "operationId": "getusers", "summary": "GetUsers" }, @@ -8485,8 +13127,12 @@ "name": "body", "schema": { "properties": { + "description": { + "example": "user description is here", + "type": "string" + }, "email": { - "example": "email@mcmpemail.com", + "example": "testuser@mcmpemail.com", "type": "string" }, "firstName": { @@ -8538,7 +13184,7 @@ "tags": [ "User" ], - "description": "사용자는 uma_protection Role 을 가져야 한다.", + "description": "유저를 등록합니다.", "operationId": "createuser", "summary": "Createuser" } @@ -8594,7 +13240,7 @@ "tags": [ "User" ], - "description": "사용자는 uma_protection Role 을 가져야 한다.", + "description": "권한 있는 사용자가 해당 유저를 활성화합니다.", "operationId": "activeuser", "summary": "ActiveUser" } @@ -8650,7 +13296,7 @@ "tags": [ "User" ], - "description": "사용자는 uma_protection Role 을 가져야 한다.", + "description": "권한 있는 사용자가 해당 유저를 비활성화합니다.", "operationId": "deactiveuser", "summary": "DeactiveUser" } @@ -8698,7 +13344,7 @@ "tags": [ "User" ], - "description": "사용자는 uma_protection Role 을 가져야 한다.", + "description": "사용자를 삭제합니다.", "operationId": "deleteuser", "summary": "DeleteUser" }, @@ -8765,7 +13411,7 @@ "tags": [ "User" ], - "description": "사용자는 uma_protection Role 을 가져야 한다.", + "description": "사용자 정보를 업데이트 합니다.", "operationId": "updateuser", "summary": "UpdateUser" } @@ -9369,17 +14015,16 @@ "properties": { "projectIds": { "example": [ - "6f2c27bb-f6ec-433d-9422-3da545a69f3b", - "b2a5faf9-4c1b-4a7e-a0cf-0f603246e144" + "c80ec812-a635-4c9e-97e7-0182120045d4" ], "items": { - "example": "6f2c27bb-f6ec-433d-9422-3da545a69f3b", + "example": "c80ec812-a635-4c9e-97e7-0182120045d4", "type": "string" }, "type": "array" }, "workspaceId": { - "example": "37b4fe7f-8501-4f4a-b4ef-31ddfca903e6", + "example": "aa52e3c5-c9d1-489e-ae71-6af61a8eab59", "type": "string" } }, @@ -9978,7 +14623,7 @@ "schema": { "properties": { "roleId": { - "example": "79638320-6949-45f1-9273-aec9919f33f4", + "example": "efbd4bcb-fec2-49fc-8a8c-ec09255ec978", "type": "string" }, "userId": { @@ -9986,7 +14631,7 @@ "type": "string" }, "workspaceId": { - "example": "ea56aaff-ccfa-4fe2-b5cd-7a4ad21ef3e1", + "example": "aa52e3c5-c9d1-489e-ae71-6af61a8eab59", "type": "string" } }, @@ -10503,7 +15148,7 @@ "name": "Auth" }, { - "name": "Ticket" + "name": "AccessTicket" }, { "name": "User" @@ -10535,10 +15180,6 @@ }, { "name": "Tool" - }, - { - "description": "CSP sts token 요청", - "name": "SecurityToken" } ] }