openshift-python-wrapper 10.0.74__tar.gz → 10.0.76__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/PKG-INFO +2 -2
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/README.md +9 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/class_generator.py +220 -152
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/manifests/class_generator_template.j2 +9 -5
- openshift_python_wrapper-10.0.76/class_generator/schema/__not-kind.txt +435 -0
- openshift_python_wrapper-10.0.76/class_generator/schema/__resources-mappings.json +147334 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/_definitions.json +11040 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/all.json +30 -0
- openshift_python_wrapper-10.0.76/class_generator/schema/cephconnection.json +63 -0
- openshift_python_wrapper-10.0.76/class_generator/schema/cephconnectionlist.json +36 -0
- openshift_python_wrapper-10.0.76/class_generator/schema/clientprofile.json +90 -0
- openshift_python_wrapper-10.0.76/class_generator/schema/clientprofilelist.json +36 -0
- openshift_python_wrapper-10.0.76/class_generator/schema/clientprofilemapping.json +71 -0
- openshift_python_wrapper-10.0.76/class_generator/schema/clientprofilemappinglist.json +36 -0
- openshift_python_wrapper-10.0.76/class_generator/schema/driver.json +5317 -0
- openshift_python_wrapper-10.0.76/class_generator/schema/driverlist.json +36 -0
- openshift_python_wrapper-10.0.76/class_generator/schema/operatorconfig.json +5329 -0
- openshift_python_wrapper-10.0.76/class_generator/schema/operatorconfiglist.json +36 -0
- openshift_python_wrapper-10.0.74/class_generator/tests/manifests/ApiServer/api_server_res.py → openshift_python_wrapper-10.0.76/class_generator/tests/manifests/APIServer/api_server.py +0 -1
- openshift_python_wrapper-10.0.74/class_generator/tests/manifests/ConfigMap/config_map_res.py → openshift_python_wrapper-10.0.76/class_generator/tests/manifests/ConfigMap/config_map.py +1 -2
- openshift_python_wrapper-10.0.76/class_generator/tests/manifests/DNS/dns_config_openshift_io.py +71 -0
- openshift_python_wrapper-10.0.76/class_generator/tests/manifests/DNS/dns_operator_openshift_io.py +120 -0
- openshift_python_wrapper-10.0.74/class_generator/tests/manifests/Deployment/deployment_res.py → openshift_python_wrapper-10.0.76/class_generator/tests/manifests/Deployment/deployment.py +1 -2
- openshift_python_wrapper-10.0.74/class_generator/tests/manifests/ImageContentSourcePolicy/image_content_source_policy_res.py → openshift_python_wrapper-10.0.76/class_generator/tests/manifests/ImageContentSourcePolicy/image_content_source_policy.py +0 -1
- openshift_python_wrapper-10.0.76/class_generator/tests/manifests/Machine/machine.py +88 -0
- openshift_python_wrapper-10.0.76/class_generator/tests/manifests/NMState/nm_state.py +95 -0
- openshift_python_wrapper-10.0.74/class_generator/tests/manifests/Pod/pod_res.py → openshift_python_wrapper-10.0.76/class_generator/tests/manifests/Pod/pod.py +8 -9
- openshift_python_wrapper-10.0.74/class_generator/tests/manifests/Secret/secret_res.py → openshift_python_wrapper-10.0.76/class_generator/tests/manifests/Secret/secret.py +1 -2
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/tests/manifests/test_parse_explain.j2 +8 -10
- openshift_python_wrapper-10.0.76/class_generator/tests/test_class_generator.py +33 -0
- openshift_python_wrapper-10.0.76/ocp_resources/aaq.py +80 -0
- openshift_python_wrapper-10.0.76/ocp_resources/api_server.py +92 -0
- openshift_python_wrapper-10.0.76/ocp_resources/cdi.py +99 -0
- openshift_python_wrapper-10.0.76/ocp_resources/cdi_config.py +167 -0
- openshift_python_wrapper-10.0.76/ocp_resources/csi_driver.py +177 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/deployment.py +28 -64
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/group.py +6 -4
- openshift_python_wrapper-10.0.76/ocp_resources/image_content_source_policy.py +55 -0
- openshift_python_wrapper-10.0.76/ocp_resources/machine.py +104 -0
- openshift_python_wrapper-10.0.76/ocp_resources/maria_db.py +1679 -0
- openshift_python_wrapper-10.0.76/ocp_resources/mariadb_operator.py +18 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/namespace.py +5 -6
- openshift_python_wrapper-10.0.76/ocp_resources/oauth.py +53 -0
- openshift_python_wrapper-10.0.76/ocp_resources/pod.py +567 -0
- openshift_python_wrapper-10.0.76/ocp_resources/prometheus.py +1087 -0
- openshift_python_wrapper-10.0.76/ocp_resources/replica_set.py +71 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/resource.py +2 -0
- openshift_python_wrapper-10.0.76/ocp_resources/scheduler.py +91 -0
- openshift_python_wrapper-10.0.76/ocp_resources/service.py +389 -0
- openshift_python_wrapper-10.0.76/ocp_resources/ssp.py +94 -0
- openshift_python_wrapper-10.0.76/ocp_resources/virtual_machine_cluster_instancetype.py +104 -0
- openshift_python_wrapper-10.0.76/ocp_resources/virtual_machine_cluster_preference.py +124 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/virtual_machine_instance_migration.py +2 -2
- openshift_python_wrapper-10.0.76/ocp_resources/virtual_machine_instance_preset.py +52 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/virtual_machine_instance_replica_set.py +6 -28
- openshift_python_wrapper-10.0.76/ocp_resources/virtual_machine_instancetype.py +105 -0
- openshift_python_wrapper-10.0.76/ocp_resources/virtual_machine_preference.py +124 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/pyproject.toml +2 -2
- openshift_python_wrapper-10.0.74/class_generator/schema/__not-kind.txt +0 -933
- openshift_python_wrapper-10.0.74/class_generator/schema/__resources-mappings.json +0 -1
- openshift_python_wrapper-10.0.74/class_generator/tests/test_class_generator.py +0 -50
- openshift_python_wrapper-10.0.74/ocp_resources/aaq.py +0 -150
- openshift_python_wrapper-10.0.74/ocp_resources/api_server.py +0 -232
- openshift_python_wrapper-10.0.74/ocp_resources/cdi.py +0 -225
- openshift_python_wrapper-10.0.74/ocp_resources/cdi_config.py +0 -373
- openshift_python_wrapper-10.0.74/ocp_resources/csi_driver.py +0 -212
- openshift_python_wrapper-10.0.74/ocp_resources/image_content_source_policy.py +0 -75
- openshift_python_wrapper-10.0.74/ocp_resources/machine.py +0 -185
- openshift_python_wrapper-10.0.74/ocp_resources/oauth.py +0 -150
- openshift_python_wrapper-10.0.74/ocp_resources/pod.py +0 -1664
- openshift_python_wrapper-10.0.74/ocp_resources/prometheus.py +0 -2464
- openshift_python_wrapper-10.0.74/ocp_resources/replica_set.py +0 -96
- openshift_python_wrapper-10.0.74/ocp_resources/scheduler.py +0 -95
- openshift_python_wrapper-10.0.74/ocp_resources/service.py +0 -444
- openshift_python_wrapper-10.0.74/ocp_resources/ssp.py +0 -381
- openshift_python_wrapper-10.0.74/ocp_resources/virtual_machine_cluster_instancetype.py +0 -199
- openshift_python_wrapper-10.0.74/ocp_resources/virtual_machine_cluster_preference.py +0 -281
- openshift_python_wrapper-10.0.74/ocp_resources/virtual_machine_instance_preset.py +0 -104
- openshift_python_wrapper-10.0.74/ocp_resources/virtual_machine_instancetype.py +0 -200
- openshift_python_wrapper-10.0.74/ocp_resources/virtual_machine_preference.py +0 -281
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/LICENSE +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/README.md +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/__init__.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/aaq.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/aaqlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/actiondescriptor.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/addvolumeoptions.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/adminnetworkpolicy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/adminnetworkpolicylist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/adminpolicybasedexternalroute.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/adminpolicybasedexternalroutelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/affinity.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/aggregationrule.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/aggregationrule_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/alertingrule.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/alertingrulelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/alertmanager.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/alertmanagerconfig.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/alertmanagerconfiglist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/alertmanagerlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/alertrelabelconfig.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/alertrelabelconfiglist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apigroup.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apigrouplist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apirequestcount.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apirequestcountlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiresource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiresource_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiresourcelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiresourcelist_v10.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiresourcelist_v11.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiresourcelist_v12.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiresourcelist_v13.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiresourcelist_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiresourcelist_v3.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiresourcelist_v4.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiresourcelist_v5.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiresourcelist_v6.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiresourcelist_v7.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiresourcelist_v8.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiresourcelist_v9.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiresourcereference.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiserver.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiserverlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiservice.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiservicecondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiservicedefinitions.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiservicedescription.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiservicelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiservicespec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiservicestatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apiversions.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/apparmorprofile.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/appliedclusterresourcequota.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/appliedclusterresourcequotalist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/applink.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/attachedvolume.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/auditannotation.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/authentication.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/authenticationlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/awselasticblockstorevolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/azurediskvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/azurefilepersistentvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/azurefilevolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/backingstore.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/backingstorelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/baremetalhost.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/baremetalhostlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/baselineadminnetworkpolicy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/baselineadminnetworkpolicylist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/binarybuildsource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/binding.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/bitbucketwebhookcause.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/blocksize.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/bmceventsubscription.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/bmceventsubscriptionlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/boundobjectreference.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/brokertemplateinstance.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/brokertemplateinstancelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/brokertemplateinstancespec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/bucketclass.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/bucketclasslist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/build.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/buildcondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/buildconfig.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/buildconfiglist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/buildconfigspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/buildconfigstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/buildlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/buildlog.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/buildoutput.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/buildpostcommitspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/buildrequest.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/buildsource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/buildspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/buildstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/buildstatusoutput.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/buildstatusoutputto.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/buildstrategy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/buildtriggercause.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/buildtriggerpolicy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/buildvolume.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/buildvolumemount.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/buildvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/capabilities.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/capabilities_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/catalogsource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/catalogsourcelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cdi.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cdiconfig.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cdiconfiglist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cdilist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cdromtarget.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephblockpool.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephblockpoollist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephblockpoolradosnamespace.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephblockpoolradosnamespacelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephbucketnotification.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephbucketnotificationlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephbuckettopic.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephbuckettopiclist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephclient.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephclientlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephcluster.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephclusterlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephcosidriver.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephcosidriverlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephfilesystem.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephfilesystemlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephfilesystemmirror.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephfilesystemmirrorlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephfilesystemsubvolumegroup.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephfilesystemsubvolumegrouplist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephfspersistentvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephfsvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephfsvolumesource_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephfsvolumesource_v3.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephnfs.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephnfslist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephobjectrealm.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephobjectrealmlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephobjectstore.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephobjectstorelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephobjectstoreuser.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephobjectstoreuserlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephobjectzone.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephobjectzonegroup.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephobjectzonegrouplist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephobjectzonelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephrbdmirror.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cephrbdmirrorlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/certificatesigningrequest.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/certificatesigningrequestcondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/certificatesigningrequestlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/certificatesigningrequestspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/certificatesigningrequeststatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/channelentry.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cinderpersistentvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cindervolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/claimsource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clientipconfig.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cloudcredential.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cloudcredentiallist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clusterautoscaler.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clusterautoscalerlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clustercsidriver.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clustercsidriverlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clusteroperator.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clusteroperatorlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clusterpolicy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clusterpolicylist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clusterresourcequota.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clusterresourcequotalist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clusterresourcequotaselector.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clusterresourcequotaspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clusterresourcequotastatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clusterrole.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clusterrolebinding.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clusterrolebindinglist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clusterrolelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clusterrolescoperestriction.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clusterserviceversion.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clusterserviceversionlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clustertrustbundleprojection.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clusterversion.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/clusterversionlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/componentcondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/componentstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/componentstatuslist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/condition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/config.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/configlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/configmap.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/configmapbuildsource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/configmapenvsource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/configmapenvsource_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/configmapkeyselector.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/configmapkeyselector_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/configmaplist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/configmapnodeconfigsource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/configmapprojection.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/configmapprojection_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/configmapvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/configmapvolumesource_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/console.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/consoleclidownload.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/consoleclidownloadlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/consoleexternalloglink.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/consoleexternalloglinklist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/consolelink.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/consolelinklist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/consolelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/consolenotification.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/consolenotificationlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/consoleplugin.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/consolepluginlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/consolequickstart.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/consolequickstartlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/consolesample.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/consolesamplelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/consoleyamlsample.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/consoleyamlsamplelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/container.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/container_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/container_v3.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/containerimage.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/containermetrics.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/containerport.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/containerresizepolicy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/containerresourcemetricsource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/containerresourcemetricstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/containerruntimeconfig.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/containerruntimeconfiglist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/containerstate.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/containerstaterunning.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/containerstateterminated.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/containerstatewaiting.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/containerstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/controllerconfig.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/controllerconfiglist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/controllerrevision.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/controllerrevisionlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/controlplanemachineset.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/controlplanemachinesetlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/crddescription.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/credentialsrequest.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/credentialsrequestlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cronjob.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cronjoblist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cronjobspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/cronjobstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/crossversionobjectreference.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/csiaddonsnode.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/csiaddonsnodelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/csidriver.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/csidriverlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/csidriverspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/csinode.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/csinodedriver.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/csinodelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/csinodespec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/csipersistentvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/csisnapshotcontroller.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/csisnapshotcontrollerlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/csistoragecapacity.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/csistoragecapacitylist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/csivolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/csvdescription.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/customblocksize.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/custombuildstrategy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/customdeploymentstrategyparams.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/customresourcecolumndefinition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/customresourceconversion.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/customresourcedefinition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/customresourcedefinitioncondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/customresourcedefinitionlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/customresourcedefinitionnames.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/customresourcedefinitions.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/customresourcedefinitionspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/customresourcedefinitionstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/customresourcedefinitionversion.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/customresourcesubresources.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/customresourcesubresourcescale.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/customresourcesubresourcestatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/customresourcevalidation.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/daemonendpoint.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/daemonset.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/daemonsetcondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/daemonsetlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/daemonsetspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/daemonsetstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/daemonsetupdatestrategy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/dataimage.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/dataimagelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/dataimportcron.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/dataimportcronlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/datasource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/datasourcelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/datavolume.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/datavolumelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/datavolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/deleteoptions.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/deleteoptions_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/deployment.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/deploymentcause.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/deploymentcauseimagetrigger.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/deploymentcondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/deploymentconfig.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/deploymentconfiglist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/deploymentconfigrollback.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/deploymentconfigrollbackspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/deploymentconfigspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/deploymentconfigstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/deploymentdetails.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/deploymentlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/deploymentlog.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/deploymentrequest.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/deploymentspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/deploymentstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/deploymentstrategy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/deploymenttriggerimagechangeparams.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/deploymenttriggerpolicy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/deprecation.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/disk.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/disktarget.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/dns.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/dnslist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/dnsrecord.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/dnsrecordlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/dockerbuildstrategy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/dockerstrategyoptions.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/downwardapiprojection.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/downwardapiprojection_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/downwardapiprojection_v3.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/downwardapivolumefile.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/downwardapivolumefile_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/downwardapivolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/downwardapivolumesource_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/downwardapivolumesource_v3.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/duration.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/egressfirewall.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/egressfirewalllist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/egressip.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/egressiplist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/egressqos.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/egressqoslist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/egressrouter.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/egressrouterlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/egressservice.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/egressservicelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/emptydirvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/encryptionkeyrotationcronjob.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/encryptionkeyrotationcronjoblist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/encryptionkeyrotationjob.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/encryptionkeyrotationjoblist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/endpoint.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/endpointaddress.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/endpointconditions.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/endpointhints.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/endpointport.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/endpoints.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/endpointslice.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/endpointslicelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/endpointslist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/endpointsubset.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/envfromsource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/envvar.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/envvarsource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ephemeralcontainer.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ephemeralcontainer_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ephemeralcontainer_v3.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ephemeralvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/etcd.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/etcdlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/event.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/eventlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/eventseries.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/eventsource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/eviction.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/execaction.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/execaction_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/execnewpodhook.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/exemptprioritylevelconfiguration.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/expressionwarning.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/externaldocumentation.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/externalmetricsource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/externalmetricstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/fcvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/fcvolumesource_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/featuregate.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/featuregatelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/featurestate.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/fenceagentsremediation.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/fenceagentsremediationlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/fenceagentsremediationtemplate.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/fenceagentsremediationtemplatelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/fieldsv1.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/firmwareschema.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/firmwareschemalist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/flexpersistentvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/flexvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/flockervolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/flowdistinguishermethod.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/flowschema.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/flowschemacondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/flowschemalist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/flowschemaspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/flowschemastatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/forzone.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/freezeunfreezetimeout.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/gcepersistentdiskvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/genericwebhookcause.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/gitbuildsource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/githubwebhookcause.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/gitlabwebhookcause.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/gitrepovolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/gitsourcerevision.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/glusterfspersistentvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/glusterfsvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/group.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/grouplist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/groupsubject.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/groupversionfordiscovery.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/groupversionkind.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/grpcaction.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/guestagentcommandinfo.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/hardwaredata.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/hardwaredatalist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/helmchartrepository.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/helmchartrepositorylist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/horizontalpodautoscaler.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/horizontalpodautoscalerbehavior.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/horizontalpodautoscalercondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/horizontalpodautoscalerlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/horizontalpodautoscalerspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/horizontalpodautoscalerstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/hostalias.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/hostalias_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/hostfirmwarecomponents.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/hostfirmwarecomponentslist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/hostfirmwaresettings.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/hostfirmwaresettingslist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/hostip.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/hostpathprovisioner.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/hostpathprovisionerlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/hostpathvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/hotplugvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/hpascalingpolicy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/hpascalingrules.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/httpgetaction.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/httpgetaction_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/httpheader.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/httpingresspath.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/httpingressrulevalue.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/hyperconverged.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/hyperconvergedlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/icon.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/identity.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/identitylist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/image.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imageblobreferences.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagechangecause.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagechangetrigger.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagechangetriggerstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagecontentpolicy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagecontentpolicylist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagecontentsourcepolicy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagecontentsourcepolicylist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagedigestmirrorset.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagedigestmirrorsetlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imageimportspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imageimportstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagelabel.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagelayer.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagelayerdata.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagelookuppolicy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagemanifest.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagepruner.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imageprunerlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagesignature.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagesourcepath.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagestream.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagestreamimage.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagestreamimport.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagestreamimportspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagestreamimportstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagestreamlayers.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagestreamlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagestreammapping.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagestreamspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagestreamstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagestreamtag.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagestreamtaglist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagestreamtagreference.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagetag.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagetaglist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagetagmirrorset.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/imagetagmirrorsetlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/info.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/infrastructure.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/infrastructurelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ingress.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ingressbackend.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ingressclass.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ingressclasslist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ingressclassparametersreference.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ingressclassspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ingresscontroller.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ingresscontrollerlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ingresslist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ingressloadbalanceringress.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ingressloadbalancerstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ingressportstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ingressrule.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ingressservicebackend.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ingressspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ingressstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ingresstls.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/insightsoperator.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/insightsoperatorlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/installmode.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/installplan.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/installplanlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/intorstring.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ipaddress.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ipaddressclaim.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ipaddressclaimlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ipaddresslist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ipblock.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ippool.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ippoollist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/iscsipersistentvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/iscsivolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/iscsivolumesource_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/iscsivolumesource_v3.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/jenkinspipelinebuildstrategy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/job.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/jobcondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/joblist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/jobspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/jobstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/jobtemplatespec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/json.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/jsonschemaprops.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/jsonschemapropsorarray.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/jsonschemapropsorbool.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/jsonschemapropsorstringarray.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/keytopath.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/kubeapiserver.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/kubeapiserverlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/kubecontrollermanager.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/kubecontrollermanagerlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/kubeletconfig.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/kubeletconfiglist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/kubescheduler.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/kubeschedulerlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/kubestorageversionmigrator.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/kubestorageversionmigratorlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/kubevirt.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/kubevirtlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/labelselector.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/labelselector_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/labelselector_v3.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/labelselector_v4.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/labelselector_v5.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/labelselectorrequirement.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/labelselectorrequirement_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/lease.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/leaselist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/leasespec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/lifecycle.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/lifecyclehandler.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/lifecyclehook.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/limitedprioritylevelconfiguration.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/limitrange.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/limitrangeitem.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/limitrangelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/limitrangespec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/limitresponse.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/listmeta.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/loadbalanceringress.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/loadbalancerstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/localobjectreference.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/localobjectreference_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/localresourceaccessreview.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/localsubjectaccessreview.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/localvolume.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/localvolumediscovery.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/localvolumediscoverylist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/localvolumediscoveryresult.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/localvolumediscoveryresultlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/localvolumelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/localvolumeset.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/localvolumesetlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/localvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/luntarget.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/machine.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/machineautoscaler.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/machineautoscalerlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/machineconfig.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/machineconfiglist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/machineconfigpool.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/machineconfigpoollist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/machineconfiguration.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/machineconfigurationlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/machinehealthcheck.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/machinehealthchecklist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/machinelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/machineset.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/machinesetlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/maintainer.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/managedfieldsentry.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/matchcondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/matchresources.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/metal3remediation.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/metal3remediationlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/metal3remediationtemplate.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/metal3remediationtemplatelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/metricidentifier.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/metricspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/metricstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/metrictarget.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/metricvaluestatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/microtime.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/migrateoptions.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/migrationpolicy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/migrationpolicylist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/modifyvolumestatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/mutatingwebhook.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/mutatingwebhookconfiguration.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/mutatingwebhookconfigurationlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/namedrulewithoperations.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/namedtageventlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/namespace.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/namespacecondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/namespacelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/namespacespec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/namespacestatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/namespacestore.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/namespacestorelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/network.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/networkaddonsconfig.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/networkaddonsconfiglist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/networkattachmentdefinition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/networkattachmentdefinitionlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/networkfence.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/networkfencelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/networklist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/networkpolicy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/networkpolicyegressrule.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/networkpolicyingressrule.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/networkpolicylist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/networkpolicypeer.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/networkpolicyport.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/networkpolicyspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nfsvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nmstate.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nmstatelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/node.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodeaddress.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodeaffinity.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodeaffinity_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodeaffinity_v3.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodecondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodeconfigsource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodeconfigstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodedaemonendpoints.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodefeature.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodefeaturediscovery.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodefeaturediscoverylist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodefeaturelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodefeaturerule.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodefeaturerulelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodehealthcheck.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodehealthchecklist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodemetrics.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodemetricslist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodenetworkconfigurationenactment.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodenetworkconfigurationenactmentlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodenetworkconfigurationpolicy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodenetworkconfigurationpolicylist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodenetworkstate.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodenetworkstatelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/noderesourcetopology.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/noderesourcetopologylist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/noderuntimehandler.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/noderuntimehandlerfeatures.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodeselector.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodeselector_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodeselector_v3.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodeselectorrequirement.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodeselectorrequirement_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodeselectorterm.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodeselectorterm_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodeselectorterm_v3.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodespec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodestatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nodesysteminfo.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nonresourceattributes.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nonresourcepolicyrule.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nonresourcerule.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/noobaa.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/noobaaaccount.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/noobaaaccountlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/noobaalist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nvidiadriver.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/nvidiadriverlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/oauth.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/oauthaccesstoken.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/oauthaccesstokenlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/oauthauthorizetoken.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/oauthauthorizetokenlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/oauthclient.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/oauthclientauthorization.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/oauthclientauthorizationlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/oauthclientlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/oauthlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/objectbucket.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/objectbucketclaim.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/objectbucketclaimlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/objectbucketlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/objectfieldselector.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/objectmeta.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/objectmeta_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/objectmetricsource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/objectmetricstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/objectreference.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/objecttransfer.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/objecttransferlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ocsinitialization.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ocsinitializationlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/olmconfig.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/olmconfiglist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/openshiftapiserver.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/openshiftapiserverlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/openshiftcontrollermanager.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/openshiftcontrollermanagerlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/openstackvolumepopulator.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/openstackvolumepopulatorlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/operator.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/operatorcondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/operatorconditionlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/operatorgroup.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/operatorgrouplist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/operatorhub.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/operatorhublist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/operatorlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/operatorpki.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/operatorpkilist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/operatorversion.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/overhead.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/overlappingrangeipreservation.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/overlappingrangeipreservationlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ovirtvolumepopulator.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ovirtvolumepopulatorlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ownerreference.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/packagechannel.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/packagemanifest.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/packagemanifestlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/packagemanifestspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/packagemanifeststatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/parameter.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/paramkind.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/paramref.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/patch.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/pauseoptions.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/performanceprofile.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/performanceprofilelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/persistentvolume.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/persistentvolumeclaim.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/persistentvolumeclaimcondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/persistentvolumeclaimlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/persistentvolumeclaimspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/persistentvolumeclaimspec_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/persistentvolumeclaimspec_v3.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/persistentvolumeclaimstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/persistentvolumeclaimtemplate.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/persistentvolumeclaimvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/persistentvolumelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/persistentvolumespec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/persistentvolumestatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/photonpersistentdiskvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/pod.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podaffinity.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podaffinity_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podaffinity_v3.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podaffinityterm.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podaffinityterm_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podaffinityterm_v3.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podantiaffinity.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podantiaffinity_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podantiaffinity_v3.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podcondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/poddisruptionbudget.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/poddisruptionbudgetlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/poddisruptionbudgetspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/poddisruptionbudgetstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/poddnsconfig.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/poddnsconfig_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/poddnsconfigoption.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podfailurepolicy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podfailurepolicyonexitcodesrequirement.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podfailurepolicyonpodconditionspattern.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podfailurepolicyrule.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podip.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podmetrics.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podmetricslist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podmonitor.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podmonitorlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podnetworkconnectivitycheck.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podnetworkconnectivitychecklist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podos.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podreadinessgate.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podresourceclaim.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podresourceclaimstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podschedulinggate.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podsecuritycontext.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podsecuritycontext_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podsecuritypolicyreview.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podsecuritypolicyreviewspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podsecuritypolicyreviewstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podsecuritypolicyselfsubjectreview.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podsecuritypolicyselfsubjectreviewspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podsecuritypolicysubjectreview.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podsecuritypolicysubjectreviewspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podsecuritypolicysubjectreviewstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podsmetricsource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podsmetricstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podspec_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podspec_v3.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podtemplate.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podtemplatelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/podtemplatespec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/policyrule.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/policyruleswithsubjects.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/portstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/portworxvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/preconditions.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/preferredschedulingterm.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/preprovisioningimage.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/preprovisioningimagelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/priorityclass.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/priorityclasslist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/prioritylevelconfiguration.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/prioritylevelconfigurationcondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/prioritylevelconfigurationlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/prioritylevelconfigurationreference.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/prioritylevelconfigurationspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/prioritylevelconfigurationstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/probe.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/probelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/profile.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/profilelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/project.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/projectedvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/projectedvolumesource_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/projecthelmchartrepository.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/projecthelmchartrepositorylist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/projectlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/projectrequest.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/projectspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/projectstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/prometheus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/prometheuslist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/prometheusrule.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/prometheusrulelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/provisioning.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/provisioninglist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/proxy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/proxylist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/quantity.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/queuingconfiguration.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/quobytevolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/rangeallocation.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/rangeallocationlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/rawextension.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/rbdpersistentvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/rbdvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/rbdvolumesource_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/rbdvolumesource_v3.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/recipe.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/recipelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/reclaimspacecronjob.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/reclaimspacecronjoblist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/reclaimspacejob.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/reclaimspacejoblist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/recreatedeploymentstrategyparams.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/removevolumeoptions.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/replicaset.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/replicasetcondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/replicasetlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/replicasetspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/replicasetstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/replicationcontroller.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/replicationcontrollercondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/replicationcontrollerlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/replicationcontrollerspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/replicationcontrollerstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/repositoryimportspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/repositoryimportstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/resourceaccessreview.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/resourceattributes.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/resourceclaim.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/resourcefieldselector.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/resourcemetricsource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/resourcemetricstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/resourcepolicyrule.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/resourcequota.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/resourcequotalist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/resourcequotaspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/resourcequotaspec_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/resourcequotastatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/resourcequotastatusbynamespace.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/resourcerequirements.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/resourcerule.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/restartoptions.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/role.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/rolebinding.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/rolebindinglist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/rolebindingrestriction.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/rolebindingrestrictionlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/rolelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/roleref.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/rollingdeploymentstrategyparams.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/rollingupdatedaemonset.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/rollingupdatedeployment.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/rollingupdatestatefulsetstrategy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/route.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/routehttpheader.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/routehttpheaderactions.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/routehttpheaderactionunion.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/routehttpheaders.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/routeingress.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/routeingresscondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/routelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/routeport.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/routesethttpheader.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/routespec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/routestatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/routetargetreference.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/rulewithoperations.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/runtimeclass.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/runtimeclasslist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/scale.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/scaleiopersistentvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/scaleiovolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/scalespec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/scalestatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/scheduler.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/schedulerlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/scheduling.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/scopedresourceselectorrequirement.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/scopedresourceselectorrequirement_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/scoperestriction.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/scopeselector.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/scopeselector_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/seccompprofile.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/secret.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/secretbuildsource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/secretenvsource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/secretenvsource_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/secretkeyselector.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/secretkeyselector_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/secretlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/secretlocalreference.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/secretprojection.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/secretprojection_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/secretreference.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/secretspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/secretvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/secretvolumesource_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/securitycontext.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/securitycontext_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/securitycontext_v3.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/securitycontextconstraints.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/securitycontextconstraintslist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/selectablefield.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/selfnoderemediation.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/selfnoderemediationconfig.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/selfnoderemediationconfiglist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/selfnoderemediationlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/selfnoderemediationtemplate.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/selfnoderemediationtemplatelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/selfsubjectaccessreview.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/selfsubjectaccessreviewspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/selfsubjectreview.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/selfsubjectreviewstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/selfsubjectrulesreview.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/selfsubjectrulesreviewspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/selinuxoptions.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/serveraddressbyclientcidr.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/service.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/serviceaccount.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/serviceaccountlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/serviceaccountpodsecuritypolicyreviewstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/serviceaccountsubject.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/serviceaccounttokenprojection.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/servicebackendport.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/serviceca.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/servicecalist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/servicelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/servicemonitor.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/servicemonitorlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/serviceport.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/servicereference.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/servicespec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/servicestatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/sessionaffinityconfig.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/sevmeasurementinfo.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/sevplatforminfo.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/sevsecretoptions.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/sevsessionoptions.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/signaturecondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/signatureissuer.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/signaturesubject.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/sleepaction.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/sourcebuildstrategy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/sourcecontroluser.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/sourcerevision.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/sourcestrategyoptions.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/specdescriptor.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ssp.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/ssplist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/stageinfo.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/startoptions.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/statefulset.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/statefulsetcondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/statefulsetlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/statefulsetordinals.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/statefulsetpersistentvolumeclaimretentionpolicy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/statefulsetspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/statefulsetstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/statefulsetupdatestrategy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/status.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/status_v10.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/status_v11.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/status_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/status_v3.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/status_v4.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/status_v5.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/status_v6.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/status_v7.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/status_v8.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/status_v9.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/statuscause.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/statusdescriptor.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/statusdetails.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/statusdetails_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/stepinfo.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/stopoptions.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storage.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storageclaim.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storageclaimlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storageclass.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storageclasslist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storageclient.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storageclientlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storagecluster.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storageclusterlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storageclusterpeer.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storageclusterpeerlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storageconsumer.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storageconsumerlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storagelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storageospersistentvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storageosvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storageprofile.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storageprofilelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storagerequest.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storagerequestlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storagestate.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storagestatelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storagesystem.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storagesystemlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storageversionmigration.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/storageversionmigrationlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/subject.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/subjectaccessreview.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/subjectaccessreviewspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/subjectaccessreviewstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/subjectrulesreview.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/subjectrulesreviewspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/subjectrulesreviewstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/subscription.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/subscriptionlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/successpolicy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/successpolicyrule.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/sysctl.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/tagevent.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/tageventcondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/tagimagehook.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/tagimportpolicy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/tagreference.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/tagreferencepolicy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/taint.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/tcpsocketaction.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/template.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/templateinstance.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/templateinstancecondition.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/templateinstancelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/templateinstanceobject.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/templateinstancerequester.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/templateinstancespec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/templateinstancestatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/templatelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/thanosruler.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/thanosrulerlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/time.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/tlsconfig.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/tokenrequest.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/tokenrequestspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/tokenrequeststatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/tokenreview.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/tokenreviewspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/tokenreviewspec_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/tokenreviewstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/tokenreviewstatus_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/toleration.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/topologyselectorlabelrequirement.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/topologyselectorterm.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/topologyspreadconstraint.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/topologyspreadconstraint_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/topologyspreadconstraint_v3.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/tuned.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/tunedlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/typechecking.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/typedlocalobjectreference.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/typedobjectreference.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/uncountedterminatedpods.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/unpauseoptions.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/user.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/useridentitymapping.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/userinfo.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/userinfo_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/userlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/useroauthaccesstoken.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/useroauthaccesstokenlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/usersubject.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/validatingadmissionpolicy.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/validatingadmissionpolicybinding.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/validatingadmissionpolicybindinglist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/validatingadmissionpolicybindingspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/validatingadmissionpolicylist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/validatingadmissionpolicyspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/validatingadmissionpolicystatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/validatingwebhook.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/validatingwebhookconfiguration.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/validatingwebhookconfigurationlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/validation.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/validationrule.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/variable.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachine.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineclone.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineclonelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineclusterinstancetype.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineclusterinstancetypelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineclusterpreference.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineclusterpreferencelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineexport.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineexportlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineinstance.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineinstancefilesystem.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineinstancefilesystemdisk.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineinstancefilesysteminfo.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineinstancefilesystemlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineinstanceguestagentinfo.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineinstanceguestosinfo.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineinstanceguestosuser.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineinstanceguestosuserlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineinstancelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineinstancemigration.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineinstancemigrationlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineinstancepreset.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineinstancepresetlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineinstancereplicaset.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineinstancereplicasetlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineinstancetype.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachineinstancetypelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachinelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachinememorydumprequest.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachinepool.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachinepoollist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachinepreference.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachinepreferencelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachinerestore.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachinerestorelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachinesnapshot.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachinesnapshotcontent.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachinesnapshotcontentlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/virtualmachinesnapshotlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volume.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumeattachment.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumeattachmentlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumeattachmentsource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumeattachmentspec.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumeattachmentstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumeclonesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumeclonesourcelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumedevice.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumeerror.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumegroupreplication.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumegroupreplicationclass.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumegroupreplicationclasslist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumegroupreplicationcontent.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumegroupreplicationcontentlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumegroupreplicationlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumeimportsource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumeimportsourcelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumemount.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumemount_v2.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumemountstatus.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumenodeaffinity.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumenoderesources.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumeprojection.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumereplication.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumereplicationclass.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumereplicationclasslist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumereplicationlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumeresourcerequirements.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumesnapshot.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumesnapshotclass.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumesnapshotclasslist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumesnapshotcontent.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumesnapshotcontentlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumesnapshotlist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumeuploadsource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/volumeuploadsourcelist.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/vspherevirtualdiskvolumesource.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/watchevent.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/webhookclientconfig.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/webhookconversion.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/webhooktrigger.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/weightedpodaffinityterm.json +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/schema/windowssecuritycontextoptions.json +0 -0
- /openshift_python_wrapper-10.0.74/class_generator/tests/manifests/ClusterOperator/cluster_operator_res.py → /openshift_python_wrapper-10.0.76/class_generator/tests/manifests/ClusterOperator/cluster_operator.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/tests/test_camelcase_to_snake.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/__init__.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/api_service.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/application_aware_applied_cluster_resource_quota.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/application_aware_cluster_resource_quota.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/application_aware_resource_quota.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/backup.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/benchmark.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/catalog_source.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/chaos_engine.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/chaos_result.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/cluster_claim.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/cluster_deployment.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/cluster_operator.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/cluster_pool.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/cluster_role.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/cluster_role_binding.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/cluster_service_version.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/cluster_version.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/configmap.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/console_cli_download.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/console_plugin.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/console_quick_start.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/constants.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/controller_revision.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/cron_job.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/csi_storage_capacity.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/csidriver.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/custom_resource_definition.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/daemonset.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/data_import_cron.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/data_science_cluster.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/data_source.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/datavolume.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/destination_rule.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/dns.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/dsc_initialization.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/endpoint_slice.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/endpoints.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/event.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/fence_agent_remediation_templates.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/forklift_controller.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/gateway.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/hook.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/host.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/hostpath_provisioner.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/hyperconverged.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/image.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/image_digest_mirror_set.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/image_stream.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/imagestreamtag.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/inference_service.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/infrastructure.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/ingress_controller.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/installplan.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/ip_address_pool.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/job.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/kube_descheduler.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/kubevirt.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/l2_advertisement.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/lease.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/limit_range.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/machine_config.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/machine_config_pool.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/machine_health_check.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/machine_set.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/managed_cluster.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/metallb.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/migration.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/migration_policy.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/mtq.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/mtv.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/multi_cluster_hub.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/multi_cluster_observability.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/multi_network_policy.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/mutating_webhook_config.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/network.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/network_addons_config.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/network_attachment_definition.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/network_map.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/network_policy.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/nmstate.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/node.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/node_health_check.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/node_maintenance.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/node_network_configuration_enactment.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/node_network_configuration_policy.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/node_network_state.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/ocs_initialization.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/operator.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/operator_condition.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/operator_group.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/operator_hub.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/operator_source.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/package_manifest.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/peer_authentication.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/performance_profile.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/persistent_volume.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/persistent_volume_claim.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/pipeline.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/pipelineruns.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/plan.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/pod_disruption_budget.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/pod_metrics.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/priority_class.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/project.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/prometheus_rule.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/provider.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/proxy.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/reclaim_space_cron_job.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/reclaim_space_job.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/replicaset.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/resource_quota.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/restore.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/rhmi.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/role.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/role_binding.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/route.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/sealed_secret.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/secret.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/security_context_constraints.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/self_node_remediation_templates.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/service_account.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/service_mesh_control_plane.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/service_mesh_member_roll.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/service_monitor.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/serving_runtime.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/sriov_network.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/sriov_network_node_policy.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/sriov_network_node_state.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/storage_class.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/storage_map.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/storage_profile.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/subscription.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/task.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/task_run.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/tekton_tasks.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/template.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/trustyai_service.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/upload_token_request.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/utils.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/validating_webhook_config.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/virtual_machine.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/virtual_machine_Instance_replica_set.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/virtual_machine_clone.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/virtual_machine_cluster_instance_types.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/virtual_machine_cluster_preferences.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/virtual_machine_export.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/virtual_machine_import.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/virtual_machine_instance.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/virtual_machine_instance_types.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/virtual_machine_migration_resource_quota.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/virtual_machine_preferences.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/virtual_machine_restore.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/virtual_machine_snapshot.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/virtual_service.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/vm_import_config.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/volume_snapshot.py +0 -0
- {openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/ocp_resources/volume_snapshot_class.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: openshift-python-wrapper
|
|
3
|
-
Version: 10.0.
|
|
3
|
+
Version: 10.0.76
|
|
4
4
|
Summary: Wrapper around https://github.com/kubernetes-client/python
|
|
5
5
|
Home-page: https://github.com/RedHatQE/openshift-python-wrapper
|
|
6
6
|
License: Apache-2.0
|
|
@@ -22,7 +22,7 @@ Requires-Dist: colorlog (>=6.7.0,<7.0.0)
|
|
|
22
22
|
Requires-Dist: jinja2 (>=3.1.2,<4.0.0)
|
|
23
23
|
Requires-Dist: kubernetes (>=30.0.0,<31.0.0)
|
|
24
24
|
Requires-Dist: packaging (>=23.1,<24.0)
|
|
25
|
-
Requires-Dist: pyhelper-utils (>=0.0.
|
|
25
|
+
Requires-Dist: pyhelper-utils (>=0.0.37,<0.0.38)
|
|
26
26
|
Requires-Dist: pytest (>=8.0.0,<9.0.0)
|
|
27
27
|
Requires-Dist: python-benedict (>=0.33.0,<0.34.0)
|
|
28
28
|
Requires-Dist: python-simple-logger (>=1.0.6)
|
{openshift_python_wrapper-10.0.74 → openshift_python_wrapper-10.0.76}/class_generator/README.md
RENAMED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Resource class generator
|
|
2
2
|
|
|
3
|
+
Utility to add a python module with class resources to openshift-python-wrapper based on `kind`
|
|
4
|
+
|
|
5
|
+
Some resources have the same kind, in this case the script will create two files.
|
|
6
|
+
For example `DNS` kind have two CRDs, one from `config.openshift.io` and one from `operator.openshift.io`
|
|
7
|
+
The output will be:
|
|
8
|
+
|
|
9
|
+
- dns_operator_openshift_io.py
|
|
10
|
+
- dns_config_openshift_io.py
|
|
11
|
+
|
|
3
12
|
## Usage
|
|
4
13
|
|
|
5
14
|
### Installation
|
|
@@ -5,13 +5,14 @@ import json
|
|
|
5
5
|
import shlex
|
|
6
6
|
import os
|
|
7
7
|
import sys
|
|
8
|
+
import requests
|
|
8
9
|
from pathlib import Path
|
|
10
|
+
from packaging.version import Version
|
|
9
11
|
|
|
10
12
|
import textwrap
|
|
11
|
-
from typing import Any, Dict, List,
|
|
13
|
+
from typing import Any, Dict, List, Tuple
|
|
12
14
|
import click
|
|
13
15
|
import re
|
|
14
|
-
import requests
|
|
15
16
|
from concurrent.futures import Future, ThreadPoolExecutor, as_completed
|
|
16
17
|
import cloup
|
|
17
18
|
from cloup.constraints import If, IsSet, accept_none, require_one
|
|
@@ -31,106 +32,154 @@ FIELDS_STR: str = "FIELDS"
|
|
|
31
32
|
LOGGER = get_logger(name="class_generator")
|
|
32
33
|
TESTS_MANIFESTS_DIR: str = "class_generator/tests/manifests"
|
|
33
34
|
SCHEMA_DIR: str = "class_generator/schema"
|
|
35
|
+
SCHEMA_DEFINITION_FILE: str = os.path.join(SCHEMA_DIR, "_definitions.json")
|
|
34
36
|
RESOURCES_MAPPING_FILE: str = os.path.join(SCHEMA_DIR, "__resources-mappings.json")
|
|
35
37
|
|
|
36
38
|
|
|
37
|
-
def
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
39
|
+
def _is_kind_and_namespaced(client: str, _key: str, _data: Dict[str, Any]) -> Dict[str, Any]:
|
|
40
|
+
x_kubernetes_group_version_kind = _data["x-kubernetes-group-version-kind"][0]
|
|
41
|
+
_kind = x_kubernetes_group_version_kind["kind"]
|
|
42
|
+
_group = x_kubernetes_group_version_kind.get("group")
|
|
43
|
+
_version = x_kubernetes_group_version_kind.get("version")
|
|
44
|
+
_group_and_version = f"{_group}/{_version}" if _group else _version
|
|
45
|
+
|
|
46
|
+
not_resource_dict = {"is_kind": False, "kind": _key}
|
|
47
|
+
|
|
48
|
+
# if explain command failed, this is not a resource
|
|
49
|
+
if not run_command(command=shlex.split(f"{client} explain {_kind}"), check=False, log_errors=False)[0]:
|
|
50
|
+
return not_resource_dict
|
|
51
|
+
|
|
52
|
+
# check if this as a valid version for the resource.
|
|
53
|
+
api_resources_base_cmd = f"bash -c '{client} api-resources"
|
|
54
|
+
|
|
55
|
+
if run_command(
|
|
56
|
+
command=shlex.split(f"{api_resources_base_cmd} | grep -w {_kind} | grep {_group_and_version}'"),
|
|
57
|
+
check=False,
|
|
58
|
+
log_errors=False,
|
|
59
|
+
)[0]:
|
|
60
|
+
# Check if the resource if namespaced.
|
|
61
|
+
_data["namespaced"] = (
|
|
62
|
+
run_command(
|
|
63
|
+
command=shlex.split(
|
|
64
|
+
f"{api_resources_base_cmd} --namespaced | grep -w {_kind} | grep {_group_and_version} | wc -l'"
|
|
65
|
+
),
|
|
66
|
+
check=False,
|
|
67
|
+
log_errors=False,
|
|
68
|
+
)[1].strip()
|
|
69
|
+
== "1"
|
|
70
|
+
)
|
|
71
|
+
return {"is_kind": True, "kind": _key, "data": _data}
|
|
46
72
|
|
|
47
|
-
|
|
48
|
-
return run_command(command=shlex.split(f"oc explain {_kind}"), check=False, log_errors=False)[0], _kind
|
|
73
|
+
return not_resource_dict
|
|
49
74
|
|
|
50
75
|
|
|
51
|
-
def map_kind_to_namespaced():
|
|
76
|
+
def map_kind_to_namespaced(client: str):
|
|
52
77
|
not_kind_file: str = os.path.join(SCHEMA_DIR, "__not-kind.txt")
|
|
53
78
|
|
|
79
|
+
resources_mapping = read_resources_mapping_file()
|
|
80
|
+
|
|
54
81
|
if os.path.isfile(not_kind_file):
|
|
55
82
|
with open(not_kind_file) as fd:
|
|
56
83
|
not_kind_list = fd.read().split("\n")
|
|
57
84
|
else:
|
|
58
|
-
not_kind_list
|
|
59
|
-
|
|
60
|
-
with open(os.path.join(f"{SCHEMA_DIR}/all.json")) as fd:
|
|
61
|
-
all_json_data = json.load(fd)
|
|
62
|
-
|
|
63
|
-
if os.path.isfile(RESOURCES_MAPPING_FILE):
|
|
64
|
-
resources_mapping = read_resources_mapping_file()
|
|
65
|
-
|
|
66
|
-
else:
|
|
67
|
-
resources_mapping: Dict[str, Dict[str, bool]] = {}
|
|
68
|
-
|
|
69
|
-
# `all.json` list all files that `openapi2jsonschema` generated which include duplication
|
|
70
|
-
kind_set: Set[str] = set()
|
|
71
|
-
for _def in all_json_data["oneOf"]:
|
|
72
|
-
_kind = _def["$ref"].rsplit(".", 1)[-1]
|
|
73
|
-
if _kind in not_kind_list:
|
|
74
|
-
continue
|
|
85
|
+
not_kind_list = []
|
|
75
86
|
|
|
76
|
-
|
|
87
|
+
with open(SCHEMA_DEFINITION_FILE) as fd:
|
|
88
|
+
_definitions_json_data = json.load(fd)
|
|
77
89
|
|
|
78
|
-
|
|
79
|
-
is_kind_futures: List[Future] = []
|
|
90
|
+
_kind_data_futures: List[Future] = []
|
|
80
91
|
with ThreadPoolExecutor() as executor:
|
|
81
|
-
for
|
|
82
|
-
|
|
92
|
+
for _key, _data in _definitions_json_data["definitions"].items():
|
|
93
|
+
_group_version_kind = _data.get("x-kubernetes-group-version-kind")
|
|
94
|
+
if not _group_version_kind:
|
|
83
95
|
continue
|
|
84
96
|
|
|
85
|
-
|
|
86
|
-
|
|
97
|
+
if _key in not_kind_list:
|
|
98
|
+
continue
|
|
87
99
|
|
|
88
|
-
|
|
89
|
-
res = _res.result()
|
|
100
|
+
_kind_data_futures.append(executor.submit(_is_kind_and_namespaced, client=client, _key=_key, _data=_data))
|
|
90
101
|
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
102
|
+
_temp_resources_mappings: Dict[Any, Any] = {}
|
|
103
|
+
for res in as_completed(_kind_data_futures):
|
|
104
|
+
_res = res.result()
|
|
105
|
+
# _res["kind"] is group.version.kind, set only kind as key in the final dict
|
|
106
|
+
kind_key = _res["kind"].rsplit(".", 1)[-1].lower()
|
|
95
107
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
108
|
+
if _res["is_kind"]:
|
|
109
|
+
_temp_resources_mappings.setdefault(kind_key, []).append(_res["data"])
|
|
110
|
+
else:
|
|
111
|
+
not_kind_list.append(_res["kind"])
|
|
100
112
|
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
resources_mapping[res[1].lower()] = {"namespaced": res[0]}
|
|
113
|
+
# Update the resources mapping dict with the one that we filled to avoid duplication in the lists
|
|
114
|
+
resources_mapping.update(_temp_resources_mappings)
|
|
104
115
|
|
|
105
116
|
with open(RESOURCES_MAPPING_FILE, "w") as fd:
|
|
106
|
-
json.dump(resources_mapping, fd)
|
|
117
|
+
json.dump(resources_mapping, fd, indent=4)
|
|
107
118
|
|
|
108
119
|
with open(not_kind_file, "w") as fd:
|
|
109
120
|
fd.writelines("\n".join(not_kind_list))
|
|
110
121
|
|
|
111
122
|
|
|
112
123
|
def read_resources_mapping_file() -> Dict[Any, Any]:
|
|
113
|
-
|
|
114
|
-
|
|
124
|
+
try:
|
|
125
|
+
with open(RESOURCES_MAPPING_FILE) as fd:
|
|
126
|
+
return json.load(fd)
|
|
127
|
+
except (FileNotFoundError, json.JSONDecodeError):
|
|
128
|
+
return {}
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
def get_server_version(client: str):
|
|
132
|
+
rc, out, _ = run_command(command=shlex.split(f"{client} version -o json"), check=False)
|
|
133
|
+
if not rc:
|
|
134
|
+
LOGGER.error("Failed to get server version")
|
|
135
|
+
sys.exit(1)
|
|
136
|
+
|
|
137
|
+
json_out = json.loads(out)
|
|
138
|
+
return json_out["serverVersion"]["gitVersion"]
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
def get_client_binary() -> str:
|
|
142
|
+
if os.system("which oc") == 0:
|
|
143
|
+
return "oc"
|
|
144
|
+
|
|
145
|
+
elif os.system("which kubectl") == 0:
|
|
146
|
+
return "kubectl"
|
|
147
|
+
else:
|
|
148
|
+
LOGGER.error("Failed to find oc or kubectl")
|
|
149
|
+
sys.exit(1)
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
def check_minimum_cluster_version(client) -> None:
|
|
153
|
+
cluster_version = get_server_version(client=client)
|
|
154
|
+
minimum_server_version = "v1.30.0"
|
|
155
|
+
if Version(cluster_version) < Version(minimum_server_version):
|
|
156
|
+
LOGGER.error(
|
|
157
|
+
f"Server version {cluster_version} is not supported. Minimum supported version is {minimum_server_version}"
|
|
158
|
+
)
|
|
159
|
+
sys.exit(1)
|
|
115
160
|
|
|
116
161
|
|
|
117
162
|
def update_kind_schema():
|
|
118
163
|
openapi2jsonschema_str: str = "openapi2jsonschema"
|
|
164
|
+
client = get_client_binary()
|
|
165
|
+
check_minimum_cluster_version(client=client)
|
|
119
166
|
|
|
120
167
|
if not run_command(command=shlex.split("which openapi2jsonschema"), check=False, log_errors=False)[0]:
|
|
121
168
|
LOGGER.error(
|
|
122
|
-
f"{openapi2jsonschema_str}not found. Install it using `pipx install --python python3.9 openapi2jsonschema`"
|
|
169
|
+
f"{openapi2jsonschema_str} not found. Install it using `pipx install --python python3.9 openapi2jsonschema`"
|
|
123
170
|
)
|
|
124
171
|
sys.exit(1)
|
|
125
172
|
|
|
126
|
-
rc, token, _ = run_command(command=shlex.split("
|
|
173
|
+
rc, token, _ = run_command(command=shlex.split(f"{client} whoami -t"), check=False, log_errors=False)
|
|
127
174
|
if not rc:
|
|
128
175
|
LOGGER.error(
|
|
129
|
-
"Failed to get token.\nMake sure you are logged in to the cluster using user and password using `
|
|
176
|
+
f"Failed to get token.\nMake sure you are logged in to the cluster using user and password using `{client} login`"
|
|
130
177
|
)
|
|
131
178
|
sys.exit(1)
|
|
132
179
|
|
|
133
|
-
api_url = run_command(command=shlex.split("
|
|
180
|
+
api_url = run_command(command=shlex.split(f"{client} whoami --show-server"), check=False, log_errors=False)[
|
|
181
|
+
1
|
|
182
|
+
].strip()
|
|
134
183
|
data = requests.get(f"{api_url}/openapi/v2", headers={"Authorization": f"Bearer {token.strip()}"}, verify=False)
|
|
135
184
|
|
|
136
185
|
if not data.ok:
|
|
@@ -145,7 +194,7 @@ def update_kind_schema():
|
|
|
145
194
|
LOGGER.error("Failed to generate schema.")
|
|
146
195
|
sys.exit(1)
|
|
147
196
|
|
|
148
|
-
map_kind_to_namespaced()
|
|
197
|
+
map_kind_to_namespaced(client=client)
|
|
149
198
|
|
|
150
199
|
|
|
151
200
|
def convert_camel_case_to_snake_case(string_: str) -> str:
|
|
@@ -266,7 +315,13 @@ def generate_resource_file_from_dict(
|
|
|
266
315
|
dry_run: bool = False,
|
|
267
316
|
output_file: str = "",
|
|
268
317
|
add_tests: bool = False,
|
|
318
|
+
output_file_suffix: str = "",
|
|
319
|
+
output_dir: str = "",
|
|
269
320
|
) -> Tuple[str, str]:
|
|
321
|
+
base_dir = output_dir or "ocp_resources"
|
|
322
|
+
if not os.path.exists(base_dir):
|
|
323
|
+
os.makedirs(base_dir)
|
|
324
|
+
|
|
270
325
|
rendered = render_jinja_template(
|
|
271
326
|
template_dict=resource_dict,
|
|
272
327
|
template_dir="class_generator/manifests",
|
|
@@ -274,15 +329,21 @@ def generate_resource_file_from_dict(
|
|
|
274
329
|
)
|
|
275
330
|
|
|
276
331
|
formatted_kind_str = convert_camel_case_to_snake_case(string_=resource_dict["kind"])
|
|
332
|
+
_file_suffix = f"{'_' + output_file_suffix if output_file_suffix else ''}"
|
|
333
|
+
|
|
277
334
|
if add_tests:
|
|
278
335
|
overwrite = True
|
|
279
|
-
|
|
336
|
+
tests_path = os.path.join(TESTS_MANIFESTS_DIR, resource_dict["kind"])
|
|
337
|
+
if not os.path.exists(tests_path):
|
|
338
|
+
os.makedirs(tests_path)
|
|
339
|
+
|
|
340
|
+
_output_file = os.path.join(tests_path, f"{formatted_kind_str}{_file_suffix}.py")
|
|
280
341
|
|
|
281
342
|
elif output_file:
|
|
282
343
|
_output_file = output_file
|
|
283
344
|
|
|
284
345
|
else:
|
|
285
|
-
_output_file = os.path.join(
|
|
346
|
+
_output_file = os.path.join(base_dir, f"{formatted_kind_str}{_file_suffix}.py")
|
|
286
347
|
|
|
287
348
|
orig_filename = _output_file
|
|
288
349
|
if os.path.exists(_output_file):
|
|
@@ -346,12 +407,16 @@ def format_description(description: str) -> str:
|
|
|
346
407
|
|
|
347
408
|
def prepare_property_dict(
|
|
348
409
|
schema: Dict[str, Any],
|
|
349
|
-
|
|
410
|
+
required: List[str],
|
|
350
411
|
resource_dict: Dict[str, Any],
|
|
351
412
|
dict_key: str,
|
|
352
413
|
) -> Dict[str, Any]:
|
|
414
|
+
keys_to_ignore = ["kind", "apiVersion", "status", SPEC_STR.lower()]
|
|
415
|
+
if dict_key != SPEC_STR.lower():
|
|
416
|
+
keys_to_ignore.append("metadata")
|
|
417
|
+
|
|
353
418
|
for key, val in schema.items():
|
|
354
|
-
if key in
|
|
419
|
+
if key in keys_to_ignore:
|
|
355
420
|
continue
|
|
356
421
|
|
|
357
422
|
val_schema = get_property_schema(property=val)
|
|
@@ -360,7 +425,7 @@ def prepare_property_dict(
|
|
|
360
425
|
resource_dict[dict_key].append({
|
|
361
426
|
"name-for-class-arg": python_name,
|
|
362
427
|
"property-name": key,
|
|
363
|
-
"required": key in
|
|
428
|
+
"required": key in required,
|
|
364
429
|
"description": format_description(description=val_schema["description"]),
|
|
365
430
|
"type-for-docstring": type_dict["type-for-doc"],
|
|
366
431
|
"type-for-class-arg": f"{python_name}: {type_dict['type-for-init']}",
|
|
@@ -370,80 +435,77 @@ def prepare_property_dict(
|
|
|
370
435
|
|
|
371
436
|
|
|
372
437
|
def parse_explain(
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
438
|
+
kind: str,
|
|
439
|
+
) -> List[Dict[str, Any]]:
|
|
440
|
+
_schema_definition = read_resources_mapping_file()
|
|
441
|
+
_resources: List[Dict[str, Any]] = []
|
|
442
|
+
|
|
443
|
+
_kinds_schema = _schema_definition[kind.lower()]
|
|
444
|
+
for _kind_schema in _kinds_schema:
|
|
445
|
+
namespaced = _kind_schema["namespaced"]
|
|
446
|
+
resource_dict: Dict[str, Any] = {
|
|
447
|
+
"base_class": "NamespacedResource" if namespaced else "Resource",
|
|
448
|
+
"description": _kind_schema["description"],
|
|
449
|
+
"fields": [],
|
|
450
|
+
"spec": [],
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
schema_properties: Dict[str, Any] = _kind_schema["properties"]
|
|
454
|
+
fields_required = _kind_schema.get("required", [])
|
|
455
|
+
resource_dict.update(_kind_schema["x-kubernetes-group-version-kind"][0])
|
|
456
|
+
|
|
457
|
+
if spec_schema := schema_properties.get("spec", {}):
|
|
458
|
+
spec_schema = get_property_schema(property=spec_schema)
|
|
459
|
+
spec_required = spec_schema.get("required", [])
|
|
460
|
+
resource_dict = prepare_property_dict(
|
|
461
|
+
schema=spec_schema.get("properties", {}),
|
|
462
|
+
required=spec_required,
|
|
463
|
+
resource_dict=resource_dict,
|
|
464
|
+
dict_key="spec",
|
|
465
|
+
)
|
|
389
466
|
|
|
390
|
-
if spec_schema := schema_properties.get("spec", {}):
|
|
391
|
-
spec_schema = get_property_schema(property=spec_schema)
|
|
392
|
-
spec_requeired = spec_schema.get("required", [])
|
|
393
467
|
resource_dict = prepare_property_dict(
|
|
394
|
-
schema=
|
|
395
|
-
|
|
468
|
+
schema=schema_properties,
|
|
469
|
+
required=fields_required,
|
|
396
470
|
resource_dict=resource_dict,
|
|
397
|
-
dict_key="
|
|
471
|
+
dict_key="fields",
|
|
398
472
|
)
|
|
399
473
|
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
if missing_api_group_in_resource:
|
|
420
|
-
LOGGER.warning(
|
|
421
|
-
f"Missing API Group in Resource\n"
|
|
422
|
-
f"Please add `Resource.ApiGroup.{api_group_for_resource_api_group} = {api_group_real_name}` "
|
|
423
|
-
"manually into ocp_resources/resource.py under Resource class > ApiGroup class."
|
|
424
|
-
)
|
|
474
|
+
api_group_real_name = resource_dict.get("group")
|
|
475
|
+
# If API Group is not present in resource, try to get it from VERSION
|
|
476
|
+
if not api_group_real_name:
|
|
477
|
+
version_splited = resource_dict["version"].split("/")
|
|
478
|
+
if len(version_splited) == 2:
|
|
479
|
+
api_group_real_name = version_splited[0]
|
|
480
|
+
|
|
481
|
+
if api_group_real_name:
|
|
482
|
+
api_group_for_resource_api_group = api_group_real_name.upper().replace(".", "_")
|
|
483
|
+
resource_dict["group"] = api_group_for_resource_api_group
|
|
484
|
+
missing_api_group_in_resource: bool = not hasattr(Resource.ApiGroup, api_group_for_resource_api_group)
|
|
485
|
+
|
|
486
|
+
if missing_api_group_in_resource:
|
|
487
|
+
LOGGER.warning(
|
|
488
|
+
f"Missing API Group in Resource\n"
|
|
489
|
+
f"Please add `Resource.ApiGroup.{api_group_for_resource_api_group} = {api_group_real_name}` "
|
|
490
|
+
"manually into ocp_resources/resource.py under Resource class > ApiGroup class."
|
|
491
|
+
)
|
|
425
492
|
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
if missing_api_version_in_resource:
|
|
431
|
-
LOGGER.warning(
|
|
432
|
-
f"Missing API Version in Resource\n"
|
|
433
|
-
f"Please add `Resource.ApiVersion.{api_version_for_resource_api_version} = {resource_dict['version']}` "
|
|
434
|
-
"manually into ocp_resources/resource.py under Resource class > ApiGroup class."
|
|
493
|
+
else:
|
|
494
|
+
api_version_for_resource_api_version = resource_dict["version"].upper()
|
|
495
|
+
missing_api_version_in_resource: bool = not hasattr(
|
|
496
|
+
Resource.ApiVersion, api_version_for_resource_api_version
|
|
435
497
|
)
|
|
436
498
|
|
|
437
|
-
|
|
438
|
-
|
|
499
|
+
if missing_api_version_in_resource:
|
|
500
|
+
LOGGER.warning(
|
|
501
|
+
f"Missing API Version in Resource\n"
|
|
502
|
+
f"Please add `Resource.ApiVersion.{api_version_for_resource_api_version} = {resource_dict['version']}` "
|
|
503
|
+
"manually into ocp_resources/resource.py under Resource class > ApiGroup class."
|
|
504
|
+
)
|
|
439
505
|
|
|
440
|
-
|
|
441
|
-
kind_file = os.path.join(SCHEMA_DIR, f"{kind.lower()}.json")
|
|
442
|
-
if os.path.isfile(kind_file):
|
|
443
|
-
return kind_file
|
|
506
|
+
_resources.append(resource_dict)
|
|
444
507
|
|
|
445
|
-
|
|
446
|
-
sys.exit(1)
|
|
508
|
+
return _resources
|
|
447
509
|
|
|
448
510
|
|
|
449
511
|
def class_generator(
|
|
@@ -451,11 +513,13 @@ def class_generator(
|
|
|
451
513
|
overwrite: bool = False,
|
|
452
514
|
dry_run: bool = False,
|
|
453
515
|
output_file: str = "",
|
|
516
|
+
output_dir: str = "",
|
|
454
517
|
add_tests: bool = False,
|
|
455
|
-
) -> str:
|
|
518
|
+
) -> List[str]:
|
|
456
519
|
"""
|
|
457
520
|
Generates a class for a given Kind.
|
|
458
521
|
"""
|
|
522
|
+
LOGGER.info(f"Generating class for {kind}")
|
|
459
523
|
kind = kind.lower()
|
|
460
524
|
kind_and_namespaced_mappings = read_resources_mapping_file().get(kind)
|
|
461
525
|
|
|
@@ -463,33 +527,37 @@ def class_generator(
|
|
|
463
527
|
LOGGER.error(f"{kind} not found in {RESOURCES_MAPPING_FILE}, Please run with --update-schema")
|
|
464
528
|
sys.exit(1)
|
|
465
529
|
|
|
466
|
-
|
|
467
|
-
kind_schema_file=get_kind_schema_file(kind=kind),
|
|
468
|
-
namespaced=kind_and_namespaced_mappings["namespaced"],
|
|
469
|
-
)
|
|
470
|
-
if not resource_dict:
|
|
471
|
-
return ""
|
|
472
|
-
|
|
473
|
-
orig_filename, generated_py_file = generate_resource_file_from_dict(
|
|
474
|
-
resource_dict=resource_dict,
|
|
475
|
-
overwrite=overwrite,
|
|
476
|
-
dry_run=dry_run,
|
|
477
|
-
output_file=output_file,
|
|
478
|
-
add_tests=add_tests,
|
|
479
|
-
)
|
|
530
|
+
resources = parse_explain(kind=kind)
|
|
480
531
|
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
532
|
+
use_output_file_suffix: bool = len(resources) > 1
|
|
533
|
+
generated_files: List[str] = []
|
|
534
|
+
for resource_dict in resources:
|
|
535
|
+
output_file_suffix = resource_dict["group"].lower() if use_output_file_suffix else ""
|
|
536
|
+
|
|
537
|
+
orig_filename, generated_py_file = generate_resource_file_from_dict(
|
|
538
|
+
resource_dict=resource_dict,
|
|
539
|
+
overwrite=overwrite,
|
|
540
|
+
dry_run=dry_run,
|
|
541
|
+
output_file=output_file,
|
|
542
|
+
add_tests=add_tests,
|
|
543
|
+
output_file_suffix=output_file_suffix,
|
|
544
|
+
output_dir=output_dir,
|
|
486
545
|
)
|
|
487
546
|
|
|
488
|
-
if
|
|
489
|
-
|
|
490
|
-
|
|
547
|
+
if not dry_run:
|
|
548
|
+
run_command(
|
|
549
|
+
command=shlex.split(f"pre-commit run --files {generated_py_file}"),
|
|
550
|
+
verify_stderr=False,
|
|
551
|
+
check=False,
|
|
552
|
+
)
|
|
553
|
+
|
|
554
|
+
if orig_filename != generated_py_file and filecmp.cmp(orig_filename, generated_py_file):
|
|
555
|
+
LOGGER.warning(f"File {orig_filename} was not updated, deleting {generated_py_file}")
|
|
556
|
+
Path.unlink(Path(generated_py_file))
|
|
557
|
+
|
|
558
|
+
generated_files.append(generated_py_file)
|
|
491
559
|
|
|
492
|
-
return
|
|
560
|
+
return generated_files
|
|
493
561
|
|
|
494
562
|
|
|
495
563
|
def write_and_format_rendered(filepath: str, data: str) -> None:
|
|
@@ -38,7 +38,6 @@ class {{ kind }}({{ base_class }}):
|
|
|
38
38
|
{% endfor %}
|
|
39
39
|
"""
|
|
40
40
|
{% endif %}
|
|
41
|
-
|
|
42
41
|
super().__init__(**kwargs)
|
|
43
42
|
|
|
44
43
|
{% for arg in fields + spec %}
|
|
@@ -61,29 +60,34 @@ class {{ kind }}({{ base_class }}):
|
|
|
61
60
|
_spec = self.res["spec"]
|
|
62
61
|
{% endif %}
|
|
63
62
|
|
|
63
|
+
{# Add required args under `self.res` #}
|
|
64
64
|
{% for arg in fields %}
|
|
65
65
|
{% if arg["required"] == True %}
|
|
66
66
|
self.res["{{ arg["property-name"] }}"] = self.{{ arg["name-for-class-arg"] }}
|
|
67
67
|
{% endif %}
|
|
68
68
|
{% endfor %}
|
|
69
69
|
|
|
70
|
+
{# Add required args under `_spec` #}
|
|
70
71
|
{% for arg in spec %}
|
|
71
72
|
{% if arg["required"] == True %}
|
|
72
73
|
_spec["{{ arg["property-name"] }}"] = self.{{ arg["name-for-class-arg"] }}
|
|
73
74
|
{% endif %}
|
|
74
75
|
{% endfor %}
|
|
75
76
|
|
|
77
|
+
{# Add optional args under `self.res` #}
|
|
76
78
|
{% for arg in fields %}
|
|
77
79
|
{% if arg["required"] == False %}
|
|
78
|
-
if self.{{ arg["name-for-class-arg"] }}{% if arg["type"] == "bool" %} is not None{% endif %}:
|
|
79
|
-
|
|
80
|
+
if self.{{ arg["name-for-class-arg"] }}{% if arg["type-for-docstring"] == "bool" %} is not None{% endif %}:
|
|
81
|
+
self.res["{{ arg["property-name"] }}"] = self.{{ arg["name-for-class-arg"] }}
|
|
80
82
|
|
|
81
83
|
{% endif %}
|
|
82
84
|
{% endfor %}
|
|
85
|
+
|
|
86
|
+
{# Add optional args under `_spec` #}
|
|
83
87
|
{% for arg in spec %}
|
|
84
88
|
{% if arg["required"] == False %}
|
|
85
|
-
if self.{{ arg["name-for-class-arg"] }}{% if arg["type"] == "bool" %} is not None{% endif %}:
|
|
86
|
-
|
|
89
|
+
if self.{{ arg["name-for-class-arg"] }}{% if arg["type-for-docstring"] == "bool" %} is not None{% endif %}:
|
|
90
|
+
_spec["{{ arg["property-name"] }}"] = self.{{ arg["name-for-class-arg"] }}
|
|
87
91
|
|
|
88
92
|
{% endif %}
|
|
89
93
|
{% endfor %}
|