Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.15 KB

File metadata and controls

28 lines (21 loc) · 1.15 KB

V1ScopeSelector

A scope selector represents the AND of the selectors represented by the scoped-resource selector requirements.

Properties

Name Type Description Notes
match_expressions List[V1ScopedResourceSelectorRequirement] A list of scope selector requirements by scope of the resources. [optional]

Example

from kubernetes.client.models.v1_scope_selector import V1ScopeSelector

# TODO update the JSON string below
json = "{}"
# create an instance of V1ScopeSelector from a JSON string
v1_scope_selector_instance = V1ScopeSelector.from_json(json)
# print the JSON string representation of the object
print(V1ScopeSelector.to_json())

# convert the object into a dict
v1_scope_selector_dict = v1_scope_selector_instance.to_dict()
# create an instance of V1ScopeSelector from a dict
v1_scope_selector_from_dict = V1ScopeSelector.from_dict(v1_scope_selector_dict)

[Back to Model list] [Back to API list] [Back to README]