IBM Cloud CLI 검색 시작하기

4399 단어 ibmcloudcli

개요



이 가이드에서는 IBM Cloud CLIresource search 기능을 사용하여 계정에서 리소스를 찾는 방법을 보여줍니다.

예제는 두 섹션으로 나뉩니다.
  • 클라우드 = IBM 클라우드 리소스.
  • IaaS = 클래식 인프라(SoftLayer) 리소스.

  • 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> 
    

    좋은 웹페이지 즐겨찾기