|
| 1 | +--- |
| 2 | +apiVersion: apiextensions.k8s.io/v1 |
| 3 | +kind: CustomResourceDefinition |
| 4 | +metadata: |
| 5 | + annotations: |
| 6 | + controller-gen.kubebuilder.io/version: v0.18.0 |
| 7 | + name: managedresourceactivationpolicies.apiextensions.crossplane.io |
| 8 | +spec: |
| 9 | + group: apiextensions.crossplane.io |
| 10 | + names: |
| 11 | + categories: |
| 12 | + - crossplane |
| 13 | + kind: ManagedResourceActivationPolicy |
| 14 | + listKind: ManagedResourceActivationPolicyList |
| 15 | + plural: managedresourceactivationpolicies |
| 16 | + shortNames: |
| 17 | + - mrap |
| 18 | + singular: managedresourceactivationpolicy |
| 19 | + scope: Cluster |
| 20 | + versions: |
| 21 | + - additionalPrinterColumns: |
| 22 | + - jsonPath: .metadata.creationTimestamp |
| 23 | + name: AGE |
| 24 | + type: date |
| 25 | + name: v1alpha1 |
| 26 | + schema: |
| 27 | + openAPIV3Schema: |
| 28 | + description: A ManagedResourceActivationPolicy defines the activation policy |
| 29 | + for ManagedResourceDefinitions. |
| 30 | + properties: |
| 31 | + apiVersion: |
| 32 | + description: |- |
| 33 | + APIVersion defines the versioned schema of this representation of an object. |
| 34 | + Servers should convert recognized schemas to the latest internal value, and |
| 35 | + may reject unrecognized values. |
| 36 | + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
| 37 | + type: string |
| 38 | + kind: |
| 39 | + description: |- |
| 40 | + Kind is a string value representing the REST resource this object represents. |
| 41 | + Servers may infer this from the endpoint the client submits requests to. |
| 42 | + Cannot be updated. |
| 43 | + In CamelCase. |
| 44 | + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
| 45 | + type: string |
| 46 | + metadata: |
| 47 | + type: object |
| 48 | + spec: |
| 49 | + description: ManagedResourceActivationPolicySpec specifies the desired |
| 50 | + activation state of ManagedResourceDefinitions. |
| 51 | + properties: |
| 52 | + activate: |
| 53 | + description: |- |
| 54 | + Activations is an array of MRD names to activate. Supports wildcard |
| 55 | + prefixes (like `*.aws.crossplane.io`) but not full regular expressions. |
| 56 | + items: |
| 57 | + description: ActivationPolicy matches on MRD names with wildcard |
| 58 | + prefix support. |
| 59 | + type: string |
| 60 | + minItems: 1 |
| 61 | + type: array |
| 62 | + required: |
| 63 | + - activate |
| 64 | + type: object |
| 65 | + status: |
| 66 | + description: ManagedResourceActivationPolicyStatus shows the observed |
| 67 | + state of the policy. |
| 68 | + properties: |
| 69 | + activated: |
| 70 | + description: Activated names the ManagedResourceDefinitions this policy |
| 71 | + has activated. |
| 72 | + items: |
| 73 | + type: string |
| 74 | + type: array |
| 75 | + conditions: |
| 76 | + description: Conditions of the resource. |
| 77 | + items: |
| 78 | + description: A Condition that may apply to a resource. |
| 79 | + properties: |
| 80 | + lastTransitionTime: |
| 81 | + description: |- |
| 82 | + LastTransitionTime is the last time this condition transitioned from one |
| 83 | + status to another. |
| 84 | + format: date-time |
| 85 | + type: string |
| 86 | + message: |
| 87 | + description: |- |
| 88 | + A Message containing details about this condition's last transition from |
| 89 | + one status to another, if any. |
| 90 | + type: string |
| 91 | + observedGeneration: |
| 92 | + description: |- |
| 93 | + ObservedGeneration represents the .metadata.generation that the condition was set based upon. |
| 94 | + For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date |
| 95 | + with respect to the current state of the instance. |
| 96 | + format: int64 |
| 97 | + type: integer |
| 98 | + reason: |
| 99 | + description: A Reason for this condition's last transition from |
| 100 | + one status to another. |
| 101 | + type: string |
| 102 | + status: |
| 103 | + description: Status of this condition; is it currently True, |
| 104 | + False, or Unknown? |
| 105 | + type: string |
| 106 | + type: |
| 107 | + description: |- |
| 108 | + Type of this condition. At most one of each condition type may apply to |
| 109 | + a resource at any point in time. |
| 110 | + type: string |
| 111 | + required: |
| 112 | + - lastTransitionTime |
| 113 | + - reason |
| 114 | + - status |
| 115 | + - type |
| 116 | + type: object |
| 117 | + type: array |
| 118 | + x-kubernetes-list-map-keys: |
| 119 | + - type |
| 120 | + x-kubernetes-list-type: map |
| 121 | + type: object |
| 122 | + type: object |
| 123 | + served: true |
| 124 | + storage: true |
| 125 | + subresources: |
| 126 | + status: {} |
0 commit comments