├── .flake8 ├── .github ├── dependabot.yml └── workflows │ └── pythonpackage.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── cloudfoundry_client ├── __init__.py ├── client.py ├── common_objects.py ├── doppler │ ├── __init__.py │ ├── client.py │ └── websocket_envelope_reader.py ├── dropsonde │ ├── envelope_pb2.py │ ├── error_pb2.py │ ├── http_pb2.py │ ├── log_pb2.py │ ├── metric_pb2.py │ └── uuid_pb2.py ├── errors.py ├── main │ ├── __init__.py │ ├── apps_command_domain.py │ ├── command_domain.py │ ├── main.py │ ├── operation_commands.py │ └── tasks_command_domain.py ├── networking │ ├── __init__.py │ ├── entities.py │ └── v1 │ │ ├── __init__.py │ │ └── external │ │ ├── __init__.py │ │ ├── policies.py │ │ └── tags.py ├── operations │ ├── __init__.py │ └── push │ │ ├── __init__.py │ │ ├── cf_ignore.py │ │ ├── file_helper.py │ │ ├── push.py │ │ └── validation │ │ ├── __init__.py │ │ └── manifest.py ├── rlpgateway │ ├── __init__.py │ └── client.py ├── v2 │ ├── __init__.py │ ├── apps.py │ ├── buildpacks.py │ ├── entities.py │ ├── events.py │ ├── jobs.py │ ├── resources.py │ ├── routes.py │ ├── service_bindings.py │ ├── service_brokers.py │ ├── service_instances.py │ ├── service_keys.py │ ├── service_plan_visibilities.py │ ├── service_plans.py │ └── spaces.py └── v3 │ ├── __init__.py │ ├── apps.py │ ├── buildpacks.py │ ├── domains.py │ ├── entities.py │ ├── feature_flags.py │ ├── isolation_segments.py │ ├── jobs.py │ ├── organization_quotas.py │ ├── organizations.py │ ├── processes.py │ ├── roles.py │ ├── security_groups.py │ ├── service_brokers.py │ ├── service_credential_bindings.py │ ├── service_instances.py │ ├── service_offerings.py │ ├── service_plans.py │ ├── spaces.py │ └── tasks.py ├── integration ├── config_test.py ├── resources │ └── test.tmpl.properties ├── v2 │ ├── test_applications.py │ ├── test_buildpacks.py │ ├── test_loggregator.py │ ├── test_navigation.py │ ├── test_organizations.py │ ├── test_routes.py │ ├── test_service_bindings.py │ ├── test_service_brokers.py │ ├── test_service_instances.py │ ├── test_service_keys.py │ ├── test_service_plans.py │ ├── test_services.py │ └── test_spaces.py └── v3 │ ├── test_service_brokers.py │ ├── test_service_instances.py │ └── test_service_plans.py ├── poetry.lock ├── poetry.toml ├── pyproject.toml ├── tests ├── __init__.py ├── abstract_test_case.py ├── fake_requests.py ├── fixtures │ ├── fake │ │ ├── GET_invalid_entity_with_invalid_entity_type.json │ │ ├── GET_invalid_entity_with_null_entity.json │ │ ├── GET_invalid_entity_without_entity.json │ │ ├── GET_multi_page_0_response.json │ │ ├── GET_multi_page_1_response.json │ │ ├── GET_response.json │ │ ├── GET_{id}_response.json │ │ └── manifest_main.yml │ ├── networking │ │ └── v1 │ │ │ └── external │ │ │ └── policies │ │ │ └── GET_response.json │ ├── operations │ │ ├── manifest.yml │ │ ├── manifest_complex.yml │ │ └── manifest_empty.yml │ ├── recents │ │ └── GET_response.bin │ ├── v2 │ │ ├── apps │ │ │ ├── GET_response.json │ │ │ ├── GET_space_guid_name_response.json │ │ │ ├── GET_{id}_env_response.json │ │ │ ├── GET_{id}_instances_response.json │ │ │ ├── GET_{id}_instances_stopped_response.json │ │ │ ├── GET_{id}_response.json │ │ │ ├── GET_{id}_routes_response.json │ │ │ ├── GET_{id}_service_bindings_response.json │ │ │ ├── GET_{id}_stats_response.json │ │ │ ├── GET_{id}_summary_response.json │ │ │ ├── POST_response.json │ │ │ ├── POST_{id}_restage_response.json │ │ │ ├── PUT_{id}_response.json │ │ │ └── PUT_{id}_routes_{route_id}_response.json │ │ ├── buildpacks │ │ │ ├── GET_response.json │ │ │ ├── GET_{id}_response.json │ │ │ └── PUT_{id}_response.json │ │ ├── events │ │ │ └── GET_response_audit.route.delete-request.json │ │ ├── organizations │ │ │ ├── GET_response.json │ │ │ └── GET_{id}_response.json │ │ ├── routes │ │ │ ├── GET_response.json │ │ │ └── GET_{id}_response.json │ │ ├── service_bindings │ │ │ ├── GET_response.json │ │ │ ├── GET_{id}_response.json │ │ │ └── POST_response.json │ │ ├── service_brokers │ │ │ ├── GET_response.json │ │ │ ├── GET_{id}_response.json │ │ │ ├── POST_response.json │ │ │ └── PUT_{id}_response.json │ │ ├── service_instances │ │ │ ├── GET_response.json │ │ │ ├── GET_{id}_response.json │ │ │ ├── POST_response.json │ │ │ └── PUT_{id}_response.json │ │ ├── service_keys │ │ │ ├── GET_response.json │ │ │ ├── GET_{id}_response.json │ │ │ └── POST_response.json │ │ ├── service_plan_visibilities │ │ │ ├── GET_response.json │ │ │ ├── GET_{id}_response.json │ │ │ ├── POST_response.json │ │ │ └── PUT_{id}_response.json │ │ ├── service_plans │ │ │ ├── GET_response.json │ │ │ └── GET_{id}_response.json │ │ ├── services │ │ │ ├── GET_response.json │ │ │ └── GET_{id}_response.json │ │ └── spaces │ │ │ ├── GET_response.json │ │ │ └── GET_{id}_response.json │ └── v3 │ │ ├── apps │ │ ├── GET_response.json │ │ ├── GET_response_include_space.json │ │ ├── GET_{id}_env_response.json │ │ ├── GET_{id}_environment_variables_response.json │ │ ├── GET_{id}_manifest_response.yml │ │ ├── GET_{id}_response.json │ │ ├── GET_{id}_response_include_space_and_org.json │ │ ├── GET_{id}_routes_response.json │ │ └── POST_{id}_actions_start_response.json │ │ ├── buildpacks │ │ ├── GET_response.json │ │ ├── GET_{id}_response.json │ │ ├── PATCH_{id}_response.json │ │ └── POST_response.json │ │ ├── domains │ │ ├── GET_response.json │ │ ├── GET_{id}_response.json │ │ ├── PATCH_{id}_response.json │ │ ├── POST_response.json │ │ └── POST_{id}_relationships_shared_organizations_response.json │ │ ├── feature_flags │ │ ├── GET_response.json │ │ ├── GET_{id}_response.json │ │ └── PATCH_{id}_response.json │ │ ├── isolation_segments │ │ ├── GET_response.json │ │ ├── GET_{id}_relationships_organizations_response.json │ │ ├── GET_{id}_relationships_spaces_response.json │ │ ├── GET_{id}_response.json │ │ ├── PATCH_{id}_response.json │ │ ├── POST_response.json │ │ └── POST_{id}_relationships_organizations_response.json │ │ ├── jobs │ │ ├── GET_{id}_complete_response.json │ │ ├── GET_{id}_failed_response.json │ │ └── GET_{id}_processing_response.json │ │ ├── organization_quotas │ │ ├── GET_response.json │ │ ├── GET_{id}_response.json │ │ ├── PATCH_{id}_response.json │ │ ├── POST_response.json │ │ └── POST_{id}_organizations_response.json │ │ ├── organizations │ │ ├── GET_response.json │ │ ├── GET_{id}_default_domain_response.json │ │ ├── GET_{id}_relationships_default_isolation_segment_response.json │ │ ├── GET_{id}_response.json │ │ ├── GET_{id}_usage_summary_response.json │ │ ├── PATCH_{id}_relationships_default_isolation_segment_response.json │ │ ├── PATCH_{id}_response.json │ │ └── POST_response.json │ │ ├── processes │ │ ├── GET_response.json │ │ ├── GET_{id}_response.json │ │ └── GET_{id}_stats_response.json │ │ ├── roles │ │ ├── GET_response.json │ │ └── GET_{id}_response.json │ │ ├── security_groups │ │ ├── GET_response.json │ │ ├── GET_{id}_response.json │ │ ├── PATCH_{id}_response.json │ │ ├── POST_response.json │ │ ├── POST_{id}_relationships_running_spaces_response.json │ │ └── POST_{id}_relationships_staging_spaces_response.json │ │ ├── service_brokers │ │ ├── GET_response.json │ │ ├── GET_{id}_response.json │ │ ├── PATCH_{id}_response.json │ │ └── POST_response.json │ │ ├── service_credential_bindings │ │ ├── GET_response.json │ │ ├── GET_{id}_details_response.json │ │ ├── GET_{id}_parameters_response.json │ │ ├── GET_{id}_response.json │ │ └── POST_response.json │ │ ├── service_instances │ │ ├── GET_response.json │ │ ├── GET_response_fields_space_and_org.json │ │ ├── GET_{id}_credentials_response.json │ │ ├── GET_{id}_permissions_response.json │ │ ├── GET_{id}_response.json │ │ └── GET_{id}_response_fields_space.json │ │ ├── service_offerings │ │ ├── GET_response.json │ │ ├── GET_{id}_response.json │ │ └── PATCH_{id}_response.json │ │ ├── service_plans │ │ ├── GET_response.json │ │ ├── GET_{id}_response.json │ │ ├── GET_{id}_visibility_response.json │ │ ├── PATCH_{id}_response.json │ │ ├── PATCH_{id}_visibility_organizations_response.json │ │ ├── PATCH_{id}_visibility_type_response.json │ │ └── POST_{id}_visibility_response.json │ │ ├── spaces │ │ ├── GET_response.json │ │ ├── GET_response_include_org.json │ │ ├── GET_{id}_relationships_isolation_segment_response.json │ │ ├── GET_{id}_response.json │ │ ├── GET_{id}_response_include_org.json │ │ ├── POST_response.json │ │ └── POST_{id}_relationships_isolation_segment_response.json │ │ └── tasks │ │ ├── GET_response.json │ │ ├── GET_{id}_response.json │ │ ├── POST_response.json │ │ └── POST_{id}_actions_cancel_response.json ├── networking │ ├── __init__.py │ └── v1 │ │ ├── __init__.py │ │ └── external │ │ ├── __init__.py │ │ └── test_policies.py ├── operations │ ├── __init__.py │ └── push │ │ ├── __init__.py │ │ ├── test_cf_ignore.py │ │ ├── test_file_helper.py │ │ ├── test_push.py │ │ └── validation │ │ ├── __init__.py │ │ └── test_manifest_reader.py ├── test_client.py ├── test_doppler.py ├── test_request_object.py ├── v2 │ ├── __init__.py │ ├── test_apps.py │ ├── test_buildpacks.py │ ├── test_entities.py │ ├── test_events.py │ ├── test_organizations.py │ ├── test_routes.py │ ├── test_service_bindings.py │ ├── test_service_brokers.py │ ├── test_service_instances.py │ ├── test_service_keys.py │ ├── test_service_plan_visibilities.py │ ├── test_service_plans.py │ ├── test_services.py │ └── test_spaces.py └── v3 │ ├── __init__.py │ ├── test_apps.py │ ├── test_buildpacks.py │ ├── test_domains.py │ ├── test_entities.py │ ├── test_feature_flags.py │ ├── test_isolation_segments.py │ ├── test_jobs.py │ ├── test_organization_quotas.py │ ├── test_organizations.py │ ├── test_processes.py │ ├── test_roles.py │ ├── test_security_groups.py │ ├── test_service_brokers.py │ ├── test_service_credential_bindings.py │ ├── test_service_instances.py │ ├── test_service_offerings.py │ ├── test_service_plans.py │ ├── test_spaces.py │ └── test_tasks.py └── vendors └── dropsonde-protocol ├── envelope.proto ├── error.proto ├── http.proto ├── log.proto ├── metric.proto └── uuid.proto /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpackage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/.github/workflows/pythonpackage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/README.rst -------------------------------------------------------------------------------- /cloudfoundry_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/__init__.py -------------------------------------------------------------------------------- /cloudfoundry_client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/client.py -------------------------------------------------------------------------------- /cloudfoundry_client/common_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/common_objects.py -------------------------------------------------------------------------------- /cloudfoundry_client/doppler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudfoundry_client/doppler/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/doppler/client.py -------------------------------------------------------------------------------- /cloudfoundry_client/doppler/websocket_envelope_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/doppler/websocket_envelope_reader.py -------------------------------------------------------------------------------- /cloudfoundry_client/dropsonde/envelope_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/dropsonde/envelope_pb2.py -------------------------------------------------------------------------------- /cloudfoundry_client/dropsonde/error_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/dropsonde/error_pb2.py -------------------------------------------------------------------------------- /cloudfoundry_client/dropsonde/http_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/dropsonde/http_pb2.py -------------------------------------------------------------------------------- /cloudfoundry_client/dropsonde/log_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/dropsonde/log_pb2.py -------------------------------------------------------------------------------- /cloudfoundry_client/dropsonde/metric_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/dropsonde/metric_pb2.py -------------------------------------------------------------------------------- /cloudfoundry_client/dropsonde/uuid_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/dropsonde/uuid_pb2.py -------------------------------------------------------------------------------- /cloudfoundry_client/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/errors.py -------------------------------------------------------------------------------- /cloudfoundry_client/main/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudfoundry_client/main/apps_command_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/main/apps_command_domain.py -------------------------------------------------------------------------------- /cloudfoundry_client/main/command_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/main/command_domain.py -------------------------------------------------------------------------------- /cloudfoundry_client/main/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/main/main.py -------------------------------------------------------------------------------- /cloudfoundry_client/main/operation_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/main/operation_commands.py -------------------------------------------------------------------------------- /cloudfoundry_client/main/tasks_command_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/main/tasks_command_domain.py -------------------------------------------------------------------------------- /cloudfoundry_client/networking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudfoundry_client/networking/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/networking/entities.py -------------------------------------------------------------------------------- /cloudfoundry_client/networking/v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudfoundry_client/networking/v1/external/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudfoundry_client/networking/v1/external/policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/networking/v1/external/policies.py -------------------------------------------------------------------------------- /cloudfoundry_client/networking/v1/external/tags.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudfoundry_client/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudfoundry_client/operations/push/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudfoundry_client/operations/push/cf_ignore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/operations/push/cf_ignore.py -------------------------------------------------------------------------------- /cloudfoundry_client/operations/push/file_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/operations/push/file_helper.py -------------------------------------------------------------------------------- /cloudfoundry_client/operations/push/push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/operations/push/push.py -------------------------------------------------------------------------------- /cloudfoundry_client/operations/push/validation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudfoundry_client/operations/push/validation/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/operations/push/validation/manifest.py -------------------------------------------------------------------------------- /cloudfoundry_client/rlpgateway/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudfoundry_client/rlpgateway/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/rlpgateway/client.py -------------------------------------------------------------------------------- /cloudfoundry_client/v2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudfoundry_client/v2/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v2/apps.py -------------------------------------------------------------------------------- /cloudfoundry_client/v2/buildpacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v2/buildpacks.py -------------------------------------------------------------------------------- /cloudfoundry_client/v2/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v2/entities.py -------------------------------------------------------------------------------- /cloudfoundry_client/v2/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v2/events.py -------------------------------------------------------------------------------- /cloudfoundry_client/v2/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v2/jobs.py -------------------------------------------------------------------------------- /cloudfoundry_client/v2/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v2/resources.py -------------------------------------------------------------------------------- /cloudfoundry_client/v2/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v2/routes.py -------------------------------------------------------------------------------- /cloudfoundry_client/v2/service_bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v2/service_bindings.py -------------------------------------------------------------------------------- /cloudfoundry_client/v2/service_brokers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v2/service_brokers.py -------------------------------------------------------------------------------- /cloudfoundry_client/v2/service_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v2/service_instances.py -------------------------------------------------------------------------------- /cloudfoundry_client/v2/service_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v2/service_keys.py -------------------------------------------------------------------------------- /cloudfoundry_client/v2/service_plan_visibilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v2/service_plan_visibilities.py -------------------------------------------------------------------------------- /cloudfoundry_client/v2/service_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v2/service_plans.py -------------------------------------------------------------------------------- /cloudfoundry_client/v2/spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v2/spaces.py -------------------------------------------------------------------------------- /cloudfoundry_client/v3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudfoundry_client/v3/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v3/apps.py -------------------------------------------------------------------------------- /cloudfoundry_client/v3/buildpacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v3/buildpacks.py -------------------------------------------------------------------------------- /cloudfoundry_client/v3/domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v3/domains.py -------------------------------------------------------------------------------- /cloudfoundry_client/v3/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v3/entities.py -------------------------------------------------------------------------------- /cloudfoundry_client/v3/feature_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v3/feature_flags.py -------------------------------------------------------------------------------- /cloudfoundry_client/v3/isolation_segments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v3/isolation_segments.py -------------------------------------------------------------------------------- /cloudfoundry_client/v3/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v3/jobs.py -------------------------------------------------------------------------------- /cloudfoundry_client/v3/organization_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v3/organization_quotas.py -------------------------------------------------------------------------------- /cloudfoundry_client/v3/organizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v3/organizations.py -------------------------------------------------------------------------------- /cloudfoundry_client/v3/processes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v3/processes.py -------------------------------------------------------------------------------- /cloudfoundry_client/v3/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v3/roles.py -------------------------------------------------------------------------------- /cloudfoundry_client/v3/security_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v3/security_groups.py -------------------------------------------------------------------------------- /cloudfoundry_client/v3/service_brokers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v3/service_brokers.py -------------------------------------------------------------------------------- /cloudfoundry_client/v3/service_credential_bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v3/service_credential_bindings.py -------------------------------------------------------------------------------- /cloudfoundry_client/v3/service_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v3/service_instances.py -------------------------------------------------------------------------------- /cloudfoundry_client/v3/service_offerings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v3/service_offerings.py -------------------------------------------------------------------------------- /cloudfoundry_client/v3/service_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v3/service_plans.py -------------------------------------------------------------------------------- /cloudfoundry_client/v3/spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v3/spaces.py -------------------------------------------------------------------------------- /cloudfoundry_client/v3/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/cloudfoundry_client/v3/tasks.py -------------------------------------------------------------------------------- /integration/config_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/integration/config_test.py -------------------------------------------------------------------------------- /integration/resources/test.tmpl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/integration/resources/test.tmpl.properties -------------------------------------------------------------------------------- /integration/v2/test_applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/integration/v2/test_applications.py -------------------------------------------------------------------------------- /integration/v2/test_buildpacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/integration/v2/test_buildpacks.py -------------------------------------------------------------------------------- /integration/v2/test_loggregator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/integration/v2/test_loggregator.py -------------------------------------------------------------------------------- /integration/v2/test_navigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/integration/v2/test_navigation.py -------------------------------------------------------------------------------- /integration/v2/test_organizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/integration/v2/test_organizations.py -------------------------------------------------------------------------------- /integration/v2/test_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/integration/v2/test_routes.py -------------------------------------------------------------------------------- /integration/v2/test_service_bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/integration/v2/test_service_bindings.py -------------------------------------------------------------------------------- /integration/v2/test_service_brokers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/integration/v2/test_service_brokers.py -------------------------------------------------------------------------------- /integration/v2/test_service_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/integration/v2/test_service_instances.py -------------------------------------------------------------------------------- /integration/v2/test_service_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/integration/v2/test_service_keys.py -------------------------------------------------------------------------------- /integration/v2/test_service_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/integration/v2/test_service_plans.py -------------------------------------------------------------------------------- /integration/v2/test_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/integration/v2/test_services.py -------------------------------------------------------------------------------- /integration/v2/test_spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/integration/v2/test_spaces.py -------------------------------------------------------------------------------- /integration/v3/test_service_brokers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/integration/v3/test_service_brokers.py -------------------------------------------------------------------------------- /integration/v3/test_service_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/integration/v3/test_service_instances.py -------------------------------------------------------------------------------- /integration/v3/test_service_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/integration/v3/test_service_plans.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/poetry.lock -------------------------------------------------------------------------------- /poetry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/poetry.toml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/abstract_test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/abstract_test_case.py -------------------------------------------------------------------------------- /tests/fake_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fake_requests.py -------------------------------------------------------------------------------- /tests/fixtures/fake/GET_invalid_entity_with_invalid_entity_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/fake/GET_invalid_entity_with_invalid_entity_type.json -------------------------------------------------------------------------------- /tests/fixtures/fake/GET_invalid_entity_with_null_entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/fake/GET_invalid_entity_with_null_entity.json -------------------------------------------------------------------------------- /tests/fixtures/fake/GET_invalid_entity_without_entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/fake/GET_invalid_entity_without_entity.json -------------------------------------------------------------------------------- /tests/fixtures/fake/GET_multi_page_0_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/fake/GET_multi_page_0_response.json -------------------------------------------------------------------------------- /tests/fixtures/fake/GET_multi_page_1_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/fake/GET_multi_page_1_response.json -------------------------------------------------------------------------------- /tests/fixtures/fake/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/fake/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/fake/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/fake/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/fake/manifest_main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/fake/manifest_main.yml -------------------------------------------------------------------------------- /tests/fixtures/networking/v1/external/policies/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/networking/v1/external/policies/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/operations/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/operations/manifest.yml -------------------------------------------------------------------------------- /tests/fixtures/operations/manifest_complex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/operations/manifest_complex.yml -------------------------------------------------------------------------------- /tests/fixtures/operations/manifest_empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/recents/GET_response.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/recents/GET_response.bin -------------------------------------------------------------------------------- /tests/fixtures/v2/apps/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/apps/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/apps/GET_space_guid_name_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/apps/GET_space_guid_name_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/apps/GET_{id}_env_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/apps/GET_{id}_env_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/apps/GET_{id}_instances_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/apps/GET_{id}_instances_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/apps/GET_{id}_instances_stopped_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/apps/GET_{id}_instances_stopped_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/apps/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/apps/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/apps/GET_{id}_routes_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/apps/GET_{id}_routes_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/apps/GET_{id}_service_bindings_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/apps/GET_{id}_service_bindings_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/apps/GET_{id}_stats_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/apps/GET_{id}_stats_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/apps/GET_{id}_summary_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/apps/GET_{id}_summary_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/apps/POST_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/apps/POST_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/apps/POST_{id}_restage_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/apps/POST_{id}_restage_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/apps/PUT_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/apps/PUT_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/apps/PUT_{id}_routes_{route_id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/apps/PUT_{id}_routes_{route_id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/buildpacks/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/buildpacks/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/buildpacks/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/buildpacks/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/buildpacks/PUT_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/buildpacks/PUT_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/events/GET_response_audit.route.delete-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/events/GET_response_audit.route.delete-request.json -------------------------------------------------------------------------------- /tests/fixtures/v2/organizations/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/organizations/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/organizations/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/organizations/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/routes/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/routes/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/routes/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/routes/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/service_bindings/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/service_bindings/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/service_bindings/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/service_bindings/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/service_bindings/POST_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/service_bindings/POST_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/service_brokers/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/service_brokers/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/service_brokers/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/service_brokers/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/service_brokers/POST_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/service_brokers/POST_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/service_brokers/PUT_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/service_brokers/PUT_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/service_instances/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/service_instances/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/service_instances/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/service_instances/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/service_instances/POST_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/service_instances/POST_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/service_instances/PUT_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/service_instances/PUT_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/service_keys/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/service_keys/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/service_keys/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/service_keys/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/service_keys/POST_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/service_keys/POST_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/service_plan_visibilities/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/service_plan_visibilities/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/service_plan_visibilities/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/service_plan_visibilities/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/service_plan_visibilities/POST_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/service_plan_visibilities/POST_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/service_plan_visibilities/PUT_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/service_plan_visibilities/PUT_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/service_plans/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/service_plans/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/service_plans/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/service_plans/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/services/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/services/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/services/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/services/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/spaces/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/spaces/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v2/spaces/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v2/spaces/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/apps/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/apps/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/apps/GET_response_include_space.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/apps/GET_response_include_space.json -------------------------------------------------------------------------------- /tests/fixtures/v3/apps/GET_{id}_env_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/apps/GET_{id}_env_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/apps/GET_{id}_environment_variables_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/apps/GET_{id}_environment_variables_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/apps/GET_{id}_manifest_response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/apps/GET_{id}_manifest_response.yml -------------------------------------------------------------------------------- /tests/fixtures/v3/apps/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/apps/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/apps/GET_{id}_response_include_space_and_org.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/apps/GET_{id}_response_include_space_and_org.json -------------------------------------------------------------------------------- /tests/fixtures/v3/apps/GET_{id}_routes_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/apps/GET_{id}_routes_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/apps/POST_{id}_actions_start_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/apps/POST_{id}_actions_start_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/buildpacks/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/buildpacks/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/buildpacks/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/buildpacks/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/buildpacks/PATCH_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/buildpacks/PATCH_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/buildpacks/POST_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/buildpacks/POST_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/domains/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/domains/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/domains/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/domains/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/domains/PATCH_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/domains/PATCH_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/domains/POST_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/domains/POST_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/domains/POST_{id}_relationships_shared_organizations_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/domains/POST_{id}_relationships_shared_organizations_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/feature_flags/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/feature_flags/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/feature_flags/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/feature_flags/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/feature_flags/PATCH_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/feature_flags/PATCH_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/isolation_segments/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/isolation_segments/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/isolation_segments/GET_{id}_relationships_organizations_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/isolation_segments/GET_{id}_relationships_organizations_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/isolation_segments/GET_{id}_relationships_spaces_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/isolation_segments/GET_{id}_relationships_spaces_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/isolation_segments/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/isolation_segments/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/isolation_segments/PATCH_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/isolation_segments/PATCH_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/isolation_segments/POST_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/isolation_segments/POST_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/isolation_segments/POST_{id}_relationships_organizations_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/isolation_segments/POST_{id}_relationships_organizations_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/jobs/GET_{id}_complete_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/jobs/GET_{id}_complete_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/jobs/GET_{id}_failed_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/jobs/GET_{id}_failed_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/jobs/GET_{id}_processing_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/jobs/GET_{id}_processing_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/organization_quotas/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/organization_quotas/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/organization_quotas/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/organization_quotas/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/organization_quotas/PATCH_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/organization_quotas/PATCH_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/organization_quotas/POST_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/organization_quotas/POST_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/organization_quotas/POST_{id}_organizations_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/organization_quotas/POST_{id}_organizations_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/organizations/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/organizations/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/organizations/GET_{id}_default_domain_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/organizations/GET_{id}_default_domain_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/organizations/GET_{id}_relationships_default_isolation_segment_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/organizations/GET_{id}_relationships_default_isolation_segment_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/organizations/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/organizations/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/organizations/GET_{id}_usage_summary_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/organizations/GET_{id}_usage_summary_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/organizations/PATCH_{id}_relationships_default_isolation_segment_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/organizations/PATCH_{id}_relationships_default_isolation_segment_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/organizations/PATCH_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/organizations/PATCH_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/organizations/POST_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/organizations/POST_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/processes/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/processes/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/processes/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/processes/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/processes/GET_{id}_stats_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/processes/GET_{id}_stats_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/roles/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/roles/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/roles/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/roles/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/security_groups/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/security_groups/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/security_groups/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/security_groups/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/security_groups/PATCH_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/security_groups/PATCH_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/security_groups/POST_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/security_groups/POST_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/security_groups/POST_{id}_relationships_running_spaces_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/security_groups/POST_{id}_relationships_running_spaces_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/security_groups/POST_{id}_relationships_staging_spaces_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/security_groups/POST_{id}_relationships_staging_spaces_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/service_brokers/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/service_brokers/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/service_brokers/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/service_brokers/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/service_brokers/PATCH_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/service_brokers/PATCH_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/service_brokers/POST_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/service_brokers/POST_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/service_credential_bindings/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/service_credential_bindings/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/service_credential_bindings/GET_{id}_details_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/service_credential_bindings/GET_{id}_details_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/service_credential_bindings/GET_{id}_parameters_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/service_credential_bindings/GET_{id}_parameters_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/service_credential_bindings/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/service_credential_bindings/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/service_credential_bindings/POST_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/service_credential_bindings/POST_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/service_instances/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/service_instances/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/service_instances/GET_response_fields_space_and_org.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/service_instances/GET_response_fields_space_and_org.json -------------------------------------------------------------------------------- /tests/fixtures/v3/service_instances/GET_{id}_credentials_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/service_instances/GET_{id}_credentials_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/service_instances/GET_{id}_permissions_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/service_instances/GET_{id}_permissions_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/service_instances/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/service_instances/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/service_instances/GET_{id}_response_fields_space.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/service_instances/GET_{id}_response_fields_space.json -------------------------------------------------------------------------------- /tests/fixtures/v3/service_offerings/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/service_offerings/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/service_offerings/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/service_offerings/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/service_offerings/PATCH_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/service_offerings/PATCH_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/service_plans/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/service_plans/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/service_plans/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/service_plans/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/service_plans/GET_{id}_visibility_response.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "public" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/v3/service_plans/PATCH_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/service_plans/PATCH_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/service_plans/PATCH_{id}_visibility_organizations_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/service_plans/PATCH_{id}_visibility_organizations_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/service_plans/PATCH_{id}_visibility_type_response.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "admin" 3 | } -------------------------------------------------------------------------------- /tests/fixtures/v3/service_plans/POST_{id}_visibility_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/service_plans/POST_{id}_visibility_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/spaces/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/spaces/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/spaces/GET_response_include_org.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/spaces/GET_response_include_org.json -------------------------------------------------------------------------------- /tests/fixtures/v3/spaces/GET_{id}_relationships_isolation_segment_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/spaces/GET_{id}_relationships_isolation_segment_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/spaces/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/spaces/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/spaces/GET_{id}_response_include_org.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/spaces/GET_{id}_response_include_org.json -------------------------------------------------------------------------------- /tests/fixtures/v3/spaces/POST_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/spaces/POST_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/spaces/POST_{id}_relationships_isolation_segment_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/spaces/POST_{id}_relationships_isolation_segment_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/tasks/GET_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/tasks/GET_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/tasks/GET_{id}_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/tasks/GET_{id}_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/tasks/POST_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/tasks/POST_response.json -------------------------------------------------------------------------------- /tests/fixtures/v3/tasks/POST_{id}_actions_cancel_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/fixtures/v3/tasks/POST_{id}_actions_cancel_response.json -------------------------------------------------------------------------------- /tests/networking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/networking/v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/networking/v1/external/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/networking/v1/external/test_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/networking/v1/external/test_policies.py -------------------------------------------------------------------------------- /tests/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/operations/push/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/operations/push/test_cf_ignore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/operations/push/test_cf_ignore.py -------------------------------------------------------------------------------- /tests/operations/push/test_file_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/operations/push/test_file_helper.py -------------------------------------------------------------------------------- /tests/operations/push/test_push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/operations/push/test_push.py -------------------------------------------------------------------------------- /tests/operations/push/validation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/operations/push/validation/test_manifest_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/operations/push/validation/test_manifest_reader.py -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_doppler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/test_doppler.py -------------------------------------------------------------------------------- /tests/test_request_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/test_request_object.py -------------------------------------------------------------------------------- /tests/v2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/v2/test_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v2/test_apps.py -------------------------------------------------------------------------------- /tests/v2/test_buildpacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v2/test_buildpacks.py -------------------------------------------------------------------------------- /tests/v2/test_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v2/test_entities.py -------------------------------------------------------------------------------- /tests/v2/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v2/test_events.py -------------------------------------------------------------------------------- /tests/v2/test_organizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v2/test_organizations.py -------------------------------------------------------------------------------- /tests/v2/test_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v2/test_routes.py -------------------------------------------------------------------------------- /tests/v2/test_service_bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v2/test_service_bindings.py -------------------------------------------------------------------------------- /tests/v2/test_service_brokers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v2/test_service_brokers.py -------------------------------------------------------------------------------- /tests/v2/test_service_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v2/test_service_instances.py -------------------------------------------------------------------------------- /tests/v2/test_service_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v2/test_service_keys.py -------------------------------------------------------------------------------- /tests/v2/test_service_plan_visibilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v2/test_service_plan_visibilities.py -------------------------------------------------------------------------------- /tests/v2/test_service_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v2/test_service_plans.py -------------------------------------------------------------------------------- /tests/v2/test_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v2/test_services.py -------------------------------------------------------------------------------- /tests/v2/test_spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v2/test_spaces.py -------------------------------------------------------------------------------- /tests/v3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/v3/test_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v3/test_apps.py -------------------------------------------------------------------------------- /tests/v3/test_buildpacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v3/test_buildpacks.py -------------------------------------------------------------------------------- /tests/v3/test_domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v3/test_domains.py -------------------------------------------------------------------------------- /tests/v3/test_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v3/test_entities.py -------------------------------------------------------------------------------- /tests/v3/test_feature_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v3/test_feature_flags.py -------------------------------------------------------------------------------- /tests/v3/test_isolation_segments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v3/test_isolation_segments.py -------------------------------------------------------------------------------- /tests/v3/test_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v3/test_jobs.py -------------------------------------------------------------------------------- /tests/v3/test_organization_quotas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v3/test_organization_quotas.py -------------------------------------------------------------------------------- /tests/v3/test_organizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v3/test_organizations.py -------------------------------------------------------------------------------- /tests/v3/test_processes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v3/test_processes.py -------------------------------------------------------------------------------- /tests/v3/test_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v3/test_roles.py -------------------------------------------------------------------------------- /tests/v3/test_security_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v3/test_security_groups.py -------------------------------------------------------------------------------- /tests/v3/test_service_brokers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v3/test_service_brokers.py -------------------------------------------------------------------------------- /tests/v3/test_service_credential_bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v3/test_service_credential_bindings.py -------------------------------------------------------------------------------- /tests/v3/test_service_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v3/test_service_instances.py -------------------------------------------------------------------------------- /tests/v3/test_service_offerings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v3/test_service_offerings.py -------------------------------------------------------------------------------- /tests/v3/test_service_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v3/test_service_plans.py -------------------------------------------------------------------------------- /tests/v3/test_spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v3/test_spaces.py -------------------------------------------------------------------------------- /tests/v3/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/tests/v3/test_tasks.py -------------------------------------------------------------------------------- /vendors/dropsonde-protocol/envelope.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/vendors/dropsonde-protocol/envelope.proto -------------------------------------------------------------------------------- /vendors/dropsonde-protocol/error.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/vendors/dropsonde-protocol/error.proto -------------------------------------------------------------------------------- /vendors/dropsonde-protocol/http.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/vendors/dropsonde-protocol/http.proto -------------------------------------------------------------------------------- /vendors/dropsonde-protocol/log.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/vendors/dropsonde-protocol/log.proto -------------------------------------------------------------------------------- /vendors/dropsonde-protocol/metric.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/vendors/dropsonde-protocol/metric.proto -------------------------------------------------------------------------------- /vendors/dropsonde-protocol/uuid.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-python-client/HEAD/vendors/dropsonde-protocol/uuid.proto --------------------------------------------------------------------------------