IBM Cloud CLI 검색 시작하기
개요
이 가이드에서는 IBM Cloud CLIresource search 기능을 사용하여 계정에서 리소스를 찾는 방법을 보여줍니다.
예제는 두 섹션으로 나뉩니다.
If you do not have the IBM Cloud CLI installed you can refer to this doc for installation instructions. Alternately you can use IBM Cloud Shell which has all of the tools we will need out of the box.
클라우드 리소스 검색(클라우드)
$ ibmcloud resource search 'name:devcluster'
리소스 이름으로 검색하고 CRN(클라우드) 반환
$ ibmcloud resource search 'name:devcluster' --output json | jq -r '.items[].crn'
리소스 태그로 검색(클라우드)
$ ibmcloud resource search 'tags:ryantiffany' --output json
리소스 이름 반환(클라우드)
$ ibmcloud resource search 'tags:ryantiffany' --output json | jq -r '.items[].name'
리소스 CRN 반환(클라우드)
$ ibmcloud resource search 'tags:ryantiffany' --output json | jq -r '.items[].crn'
리소스 유형 반환(클라우드)
$ ibmcloud resource search 'tags:ryantiffany' --output json | jq -r '.items[].type'
클래식 인프라(IaaS) 검색
$ ibmcloud resource search -p classic-infrastructure --output json
태그로 클래식 인프라 검색(IaaS)
$ ibmcloud resource search "tagReferences.tag.name:ryantiffany" -p classic-infrastructure --output json
리소스 유형 반환(IaaS)
$ ibmcloud resource search "tagReferences.tag.name:ryantiffany" -p classic-infrastructure --output json | jq -r '.items[].resourceType'
가상 인스턴스(IaaS)에 대한 태그 및 필터로 검색
$ ibmcloud resource search "tagReferences.tag.name:ryantiffany _objectType:SoftLayer_Virtual_Guest" -p classic-infrastructure --output json
태그로 IaaS 가상 인스턴스 검색 및 FQDN 반환
$ ibmcloud resource search "tagReferences.tag.name:ryantiffany _objectType:SoftLayer_Virtual_Guest" -p classic-infrastructure --output json | jq -r '.items[].resource.fullyQualifiedDomainName'
태그로 IaaS 가상 인스턴스를 검색하고 인스턴스 ID를 반환합니다.
shell
$ ibmcloud resource search "tagReferences.tag.name:<tag>
Reference
이 문제에 관하여(IBM Cloud CLI 검색 시작하기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/greyhoundforty/getting-started-with-ibm-cloud-cli-search-3hoc텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)