|
1 | 1 | .gitignore |
2 | | -LICENSE |
3 | | -README.md |
| 2 | +LICENSE.mustache |
4 | 3 | README.md |
5 | 4 | cloudtower/__init__.py |
6 | 5 | cloudtower/api/__init__.py |
@@ -76,6 +75,7 @@ cloudtower/api/ovf_api.py |
76 | 75 | cloudtower/api/pci_device_api.py |
77 | 76 | cloudtower/api/pmem_dimm_api.py |
78 | 77 | cloudtower/api/rack_topo_api.py |
| 78 | +cloudtower/api/registry_service_api.py |
79 | 79 | cloudtower/api/replica_vm_api.py |
80 | 80 | cloudtower/api/replication_plan_api.py |
81 | 81 | cloudtower/api/replication_service_api.py |
@@ -389,6 +389,7 @@ cloudtower/models/content_library_vm_template_updation_cluster_params.py |
389 | 389 | cloudtower/models/content_library_vm_template_updation_cluster_params_data.py |
390 | 390 | cloudtower/models/content_library_vm_template_updation_params.py |
391 | 391 | cloudtower/models/content_library_vm_template_updation_params_data.py |
| 392 | +cloudtower/models/content_library_vm_template_usage.py |
392 | 393 | cloudtower/models/content_library_vm_template_where_input.py |
393 | 394 | cloudtower/models/content_library_vmdk_cdrom_modify.py |
394 | 395 | cloudtower/models/content_library_vmdk_cdrom_mount.py |
@@ -715,6 +716,8 @@ cloudtower/models/get_pmem_dimms_connection_request_body.py |
715 | 716 | cloudtower/models/get_pmem_dimms_request_body.py |
716 | 717 | cloudtower/models/get_rack_topoes_connection_request_body.py |
717 | 718 | cloudtower/models/get_rack_topoes_request_body.py |
| 719 | +cloudtower/models/get_registry_services_connection_request_body.py |
| 720 | +cloudtower/models/get_registry_services_request_body.py |
718 | 721 | cloudtower/models/get_replica_vms_connection_request_body.py |
719 | 722 | cloudtower/models/get_replica_vms_request_body.py |
720 | 723 | cloudtower/models/get_replication_plans_connection_request_body.py |
@@ -960,6 +963,8 @@ cloudtower/models/license_order_by_input.py |
960 | 963 | cloudtower/models/license_type.py |
961 | 964 | cloudtower/models/license_updation_params.py |
962 | 965 | cloudtower/models/license_where_input.py |
| 966 | +cloudtower/models/load_balancer_instance_group_where_input.py |
| 967 | +cloudtower/models/load_balancer_instance_where_input.py |
963 | 968 | cloudtower/models/load_balancer_service_where_input.py |
964 | 969 | cloudtower/models/log_collection.py |
965 | 970 | cloudtower/models/log_collection_connection.py |
@@ -1065,6 +1070,7 @@ cloudtower/models/nested_aggregate_nvmf_subsystem.py |
1065 | 1070 | cloudtower/models/nested_aggregate_organization.py |
1066 | 1071 | cloudtower/models/nested_aggregate_pmem_dimm.py |
1067 | 1072 | cloudtower/models/nested_aggregate_rack_topo.py |
| 1073 | +cloudtower/models/nested_aggregate_registry_service.py |
1068 | 1074 | cloudtower/models/nested_aggregate_replica_vm.py |
1069 | 1075 | cloudtower/models/nested_aggregate_replication_plan.py |
1070 | 1076 | cloudtower/models/nested_aggregate_replication_service.py |
@@ -1428,6 +1434,11 @@ cloudtower/models/rack_topo_order_by_input.py |
1428 | 1434 | cloudtower/models/rack_topo_updation_params.py |
1429 | 1435 | cloudtower/models/rack_topo_updation_params_data.py |
1430 | 1436 | cloudtower/models/rack_topo_where_input.py |
| 1437 | +cloudtower/models/registry_service.py |
| 1438 | +cloudtower/models/registry_service_connection.py |
| 1439 | +cloudtower/models/registry_service_order_by_input.py |
| 1440 | +cloudtower/models/registry_service_usage.py |
| 1441 | +cloudtower/models/registry_service_where_input.py |
1431 | 1442 | cloudtower/models/remove_clusters_from_datacenter_params.py |
1432 | 1443 | cloudtower/models/replica_name_rule.py |
1433 | 1444 | cloudtower/models/replica_vm.py |
@@ -1565,6 +1576,7 @@ cloudtower/models/svt_image.py |
1565 | 1576 | cloudtower/models/svt_image_connection.py |
1566 | 1577 | cloudtower/models/svt_image_order_by_input.py |
1567 | 1578 | cloudtower/models/svt_image_where_input.py |
| 1579 | +cloudtower/models/sync_replication_plan_where_input.py |
1568 | 1580 | cloudtower/models/system_audit_log.py |
1569 | 1581 | cloudtower/models/system_audit_log_connection.py |
1570 | 1582 | cloudtower/models/system_audit_log_order_by_input.py |
@@ -1865,6 +1877,7 @@ cloudtower/models/vm_placement_group_deletion_params.py |
1865 | 1877 | cloudtower/models/vm_placement_group_order_by_input.py |
1866 | 1878 | cloudtower/models/vm_placement_group_updation_params.py |
1867 | 1879 | cloudtower/models/vm_placement_group_updation_params_data.py |
| 1880 | +cloudtower/models/vm_placement_group_usage.py |
1868 | 1881 | cloudtower/models/vm_placement_group_where_input.py |
1869 | 1882 | cloudtower/models/vm_rebuild_params.py |
1870 | 1883 | cloudtower/models/vm_remove_cd_rom_params.py |
@@ -1956,6 +1969,8 @@ cloudtower/models/vm_where_input.py |
1956 | 1969 | cloudtower/models/vm_where_unique_input.py |
1957 | 1970 | cloudtower/models/vmdk_cdrom_modify.py |
1958 | 1971 | cloudtower/models/vmdk_disk_modify.py |
| 1972 | +cloudtower/models/vnet_bond_group_where_input.py |
| 1973 | +cloudtower/models/vnet_bond_network_type.py |
1959 | 1974 | cloudtower/models/vnet_bond_where_input.py |
1960 | 1975 | cloudtower/models/vpc_nic_params.py |
1961 | 1976 | cloudtower/models/vsphere_esxi_account.py |
|
0 commit comments