View A list Of deployed VM extensions
                    View a list of deployed VM extensions                
            
                                            VM Extensions are used to specify cloud properties specific to your IaaS for selected instance groups. They are detailed in the BOSH documentation: https://bosh.io/docs/cloud-config.html#vm-extensions
Request
            
                URI
                    
                                GET                            
                            https://{opsmanager-installation}/api/v0/deployed/vm_extensions
                            COPY
                    Responses
                        
                200            
            
        0K
                Returns 
                
                                    
                        VmExtensions                    
                
                of type(s)
                
                    application/json                
            
        
        {
    "vm_extensions": [
        {
            "name": "string",
            "cloud_properties": {}
        }
    ]
}
                            
                                    array of 
                
            
            
                                    vm_extensions
                
                
            
        
        
                vm_extensions            
                            Optional
            
            
        vm_extensions
                400            
            
        Setup is not completed
                Returns 
                
                                    
                        RequireSetupCompleted                    
                
                of type(s)
                
                    application/json                
            
        
        {
    "errors": {
        "errors": [
            "string"
        ]
    }
}
                401            
            
        Unauthorized
                Returns 
                
                                    
                        UnauthorizedResponse                    
                
                of type(s)
                
                    application/json                
            
        
        {
    "errors": {
        "errors": [
            "string"
        ]
    }
}
                403            
            
        Forbidden
                Returns 
                
                                    
                        ForbiddenResponse                    
                
                of type(s)
                
                    application/json                
            
        
        {
    "errors": {
        "errors": [
            "string"
        ]
    }
}Code Samples
                    COPY
                                    curl -H 'Authorization: <value>' https://{api_host}/api/v0/deployed/vm_extensions
                
            