Documentation Index

Fetch the complete documentation index at: https://api-fin.ncloud-docs.com/llms.txt

Use this file to discover all available pages before exploring further.

Assignment IP ACL 목록 조회

Prev Next

Assignment에 추가한 IP ACL 목록을 조회합니다.

요청

요청 형식을 설명합니다. 요청 형식은 다음과 같습니다.

메서드 URI
GET /api/v1/assignments/{assignmentId}/ip-acls

요청 헤더

Ncloud Single Sign-On API에서 공통으로 사용하는 헤더에 대한 정보는 Ncloud Single Sign-On 요청 헤더를 참조해 주십시오.

요청 경로 파라미터

요청 경로 파라미터에 대한 설명은 다음과 같습니다.

필드 타입 필수 여부 설명
assignmentId String Required Assignment 아이디

요청 예시

요청 예시는 다음과 같습니다.

curl --location --request GET 'https://sso.apigw.fin-ntruss.com/api/v1/assignments/e1653f17-****-****-****-deb664fb8a2f/ip-acls' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}'

응답

응답 형식을 설명합니다.

응답 바디

응답 바디에 대한 설명은 다음과 같습니다.

필드 타입 필수 여부 설명
consoleAccessIpAcls Array - 콘솔 접근 가능 IP ACL 목록: consoleAccessIpAcls
apiAccessIpAcls Array - API Gateway 접근 가능 IP ACL 목록: apiAccessIpAcls

consoleAccessIpAcls

consoleAccessIpAcls에 대한 설명은 다음과 같습니다.

필드 타입 필수 여부 설명
ipAclId String - IP ACL 아이디
ipAclName String - IP ACL 이름
description String - IP ACL 설명
nrn String - IP ACL에 대한 네이버 클라우드 플랫폼 리소스 식별 값
accessIps Array - 접근 가능 IP ACL 목록
  • 추가된 IP ACL이 없는 경우, 빈 값 []으로 표시
createdAt String - IP ACL 생성 일시
  • ISO 8601 형식
updatedAt String - IP ACL 수정 일시
  • ISO 8601 형식

apiAccessIpAcls

apiAccessIpAcls에 대한 설명은 다음과 같습니다.

필드 타입 필수 여부 설명
ipAclId String - IP ACL 아이디
ipAclName String - IP ACL 이름
description String - IP ACL 설명
nrn String - IP ACL에 대한 네이버 클라우드 플랫폼 리소스 식별 값
accessIps Array - 접근 가능 IP ACL 목록
  • 추가된 IP ACL이 없는 경우, 빈 값 []으로 표시
createdAt String - IP ACL 생성 일시
  • ISO 8601 형식
updatedAt String - IP ACL 수정 일시
  • ISO 8601 형식

응답 상태 코드

Ncloud Single Sign-On API에서 공통으로 사용하는 응답 상태 코드에 대한 정보는 Ncloud Single Sign-On 응답 상태 코드를 참조해 주십시오.

응답 예시

응답 예시는 다음과 같습니다.

{
    "consoleAccessIpAcls" : [
        {
            "ipAclId" : "5bf4cad0-****-****-****-cd51bba3fe23",
            "ipAclName" : "ipacl000",
            "description" : "ipacl decription",
            "nrn" : "nrn:PUB:SSO::*******:IPACL/5bf4cad0-****-****-****-cd51bba3fe23",
            "accessIps" : [
                "***.***.***.***"
            ],
            "createdAt" : "2025-01-13T06:33:19Z",
            "updatedAt" : "2025-01-13T06:36:29Z"
        }
    ],
    "apiAccessIpAcls" : [
        {
            "ipAclId" : "5bf4cad0-****-****-****-cd51bba3fe23",
            "ipAclName" : "ipacl000",
            "description" : "ipacl decription",
            "nrn" : "nrn:PUB:SSO::*******:IPACL/5bf4cad0-****-****-****-cd51bba3fe23",
            "accessIps" : [
                "***.***.***.***"
            ],
            "createdAt" : "2025-01-13T06:33:19Z",
            "updatedAt" : "2025-01-13T06:36:29Z"
        }
    ]
}