#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_feature_flags
short_description:  Interact with the Cloud Foundry FeatureFlags API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import FeatureFlags
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(FeatureFlags())
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_organization_quota_definitions
short_description:  Interact with the Cloud Foundry OrganizationQuotaDefinitions API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import OrganizationQuotaDefinitions
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(OrganizationQuotaDefinitions())
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_service_keys
short_description:  Interact with the Cloud Foundry ServiceKeys API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import ServiceKeys
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(ServiceKeys())
Ejemplo n.º 4
0
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_service_bindings
short_description:  Interact with the Cloud Foundry ServiceBindings API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import ServiceBindings
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(ServiceBindings())
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_organizations
short_description:  Interact with the Cloud Foundry Organizations API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import Organizations
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(Organizations())
Ejemplo n.º 6
0
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_security_groups
short_description:  Interact with the Cloud Foundry SecurityGroups API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import SecurityGroups
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(SecurityGroups())
Ejemplo n.º 7
0
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_apps
short_description:  Interact with the Cloud Foundry Apps API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import Apps
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(Apps())
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_blobstores
short_description:  Interact with the Cloud Foundry Blobstores API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import Blobstores
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module


if __name__ == "__main__":
    run_module(Blobstores())

#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_services
short_description:  Interact with the Cloud Foundry Services API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import Services
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(Services())
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_user_provided_service_instances
short_description:  Interact with the Cloud Foundry UserProvidedServiceInstances API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import UserProvidedServiceInstances
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(UserProvidedServiceInstances())
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_service_plan_visibilities
short_description:  Interact with the Cloud Foundry ServicePlanVisibilities API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import ServicePlanVisibilities
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module


if __name__ == "__main__":
    run_module(ServicePlanVisibilities())

#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_security_group_staging_defaults
short_description:  Interact with the Cloud Foundry SecurityGroupStagingDefaults API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import SecurityGroupStagingDefaults
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(SecurityGroupStagingDefaults())
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_service_plans
short_description:  Interact with the Cloud Foundry ServicePlans API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import ServicePlans
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(ServicePlans())
Ejemplo n.º 14
0
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_buildpacks
short_description:  Interact with the Cloud Foundry Buildpacks API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import Buildpacks
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module


if __name__ == "__main__":
    run_module(Buildpacks())
Ejemplo n.º 15
0
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_files
short_description:  Interact with the Cloud Foundry Files API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import Files
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(Files())
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_space_quota_definitions
short_description:  Interact with the Cloud Foundry SpaceQuotaDefinitions API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import SpaceQuotaDefinitions
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(SpaceQuotaDefinitions())
Ejemplo n.º 17
0
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_info
short_description:  Interact with the Cloud Foundry Info API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import Info
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(Info())
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_security_group_running_defaults
short_description:  Interact with the Cloud Foundry SecurityGroupRunningDefaults API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import SecurityGroupRunningDefaults
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(SecurityGroupRunningDefaults())
Ejemplo n.º 19
0
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_jobs
short_description:  Interact with the Cloud Foundry Jobs API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import Jobs
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(Jobs())
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_private_domains
short_description:  Interact with the Cloud Foundry PrivateDomains API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import PrivateDomains
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module


if __name__ == "__main__":
    run_module(PrivateDomains())

Ejemplo n.º 21
0
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_routes
short_description:  Interact with the Cloud Foundry Routes API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import Routes
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(Routes())
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_environment_variable_groups
short_description:  Interact with the Cloud Foundry EnvironmentVariableGroups API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import EnvironmentVariableGroups
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(EnvironmentVariableGroups())
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_shared_domains
short_description:  Interact with the Cloud Foundry SharedDomains API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import SharedDomains
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(SharedDomains())
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_resource_match
short_description:  Interact with the Cloud Foundry ResourceMatch API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import ResourceMatch
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(ResourceMatch())
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_service_usage_event
short_description:  Interact with the Cloud Foundry ServiceUsageEvent API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import ServiceUsageEvent
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(ServiceUsageEvent())
Ejemplo n.º 26
0
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_users
short_description:  Interact with the Cloud Foundry Users API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import Users
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module


if __name__ == "__main__":
    run_module(Users())

Ejemplo n.º 27
0
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_stacks
short_description:  Interact with the Cloud Foundry Stacks API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import Stacks
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(Stacks())
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_route_mappings
short_description:  Interact with the Cloud Foundry RouteMappings API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import RouteMappings
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module


if __name__ == "__main__":
    run_module(RouteMappings())
Ejemplo n.º 29
0
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_spaces
short_description:  Interact with the Cloud Foundry Spaces API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import Spaces
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(Spaces())
Ejemplo n.º 30
0
#!/usr/bin/python

DOCUMENTATION = '''
---
module:  cf_service_instances
short_description:  Interact with the Cloud Foundry ServiceInstances API
'''

EXAMPLES = '''

'''

from pycf.cloudfoundry import ServiceInstances
from ansible.module_utils.basic import AnsibleModule  # This must be included in order for the program structure to work
from ansible_resources.library.cf_base import run_module

if __name__ == "__main__":
    run_module(ServiceInstances())