zoukankan      html  css  js  c++  java
  • Saltstack module glassfish 详解

    glassfish.update_connector_c_pool

    Update a connection pool
    

    glassfish.update_jdbc_resource

    Update a JDBC resource
    

    glassfish.enum_connector_resource

    Enum connection resources
    

    glassfish.delete_jdbc_resource

    Delete a JDBC resource
    

    glassfish.enum_connector_c_pool

    Enum connection pools
    

    glassfish.unquote

    unquote('abc%20def') -> 'abc def'.

    glassfish.create_admin_object_resource

    Create a JMS destination
    

    glassfish.create_connector_resource

    Create a connection resource
    

    glassfish.create_jdbc_resource

    Create a JDBC resource
    

    glassfish.delete_connector_resource

    Delete a connection resource
    

    glassfish.get_connector_c_pool

    Get a specific connection pool
    

    glassfish.create_jdbc_connection_pool

    Create a connection resource
    

    glassfish.create_connector_c_pool

    Create a connection pool
    

    glassfish.get_connector_resource

    Get a specific connection resource
    

    glassfish.delete_jdbc_connection_pool

    Delete a JDBC pool
    

    glassfish.get_admin_object_resource

    Get a specific JMS destination
    

    glassfish.delete_system_properties

    Delete a system property
    

    glassfish.update_jdbc_connection_pool

    Update a JDBC pool
    

    glassfish.quote

    quote('abc def') -> 'abc%20def'

    Each part of a URL, e.g. the path info, the query, etc., has a
    different set of reserved characters that must be quoted.
    
    RFC 2396 Uniform Resource Identifiers (URI): Generic Syntax lists
    the following reserved characters.
    
    reserved    = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" |
                  "$" | ","
    
    Each of these characters is reserved in some component of a URL,
    but not necessarily in all of them.
    
    By default, the quote function is intended for quoting the path
    section of a URL.  Thus, it will not encode '/'.  This character
    is reserved, but in typical usage the quote function is being
    called on a path where the existing slash characters are used as
    reserved characters.
    

    glassfish.update_admin_object_resource

    Update a JMS destination
    

    glassfish.delete_admin_object_resource

    Delete a JMS destination
    

    glassfish.enum_jdbc_resource

    Enum JDBC resources
    

    glassfish.get_system_properties

    Get system properties
    

    glassfish.get_jdbc_resource

    Get a specific JDBC resource
    

    glassfish.update_connector_resource

    Update a connection resource
    

    glassfish.get_jdbc_connection_pool

    Get a specific JDBC pool
    

    glassfish.update_system_properties

    Update system properties
    

    glassfish.enum_admin_object_resource

    Enum JMS destinations
    

    glassfish.delete_connector_c_pool

    Delete a connection pool
    

    glassfish.enum_jdbc_connection_pool

    Enum JDBC pools
  • 相关阅读:
    JS中的this
    VS下遇到未能加载文件或程序集 错误
    观察者模式实现INotifyPropertyChanged
    看书不仔细的下场
    Android 解析XML
    杂想
    Android 对话框用法
    Android之AlertDialog.Builder详解
    Android:开机自启动并接收推送消息
    Clojure:通过ZeroMQ推送消息
  • 原文地址:https://www.cnblogs.com/randomlee/p/Saltstack_module_glassfish.html
Copyright © 2011-2022 走看看