|
| 1 | +apiVersion: apiextensions.k8s.io/v1 |
| 2 | +kind: CustomResourceDefinition |
| 3 | +metadata: |
| 4 | + annotations: |
| 5 | + cnrm.cloud.google.com/version: 0.0.0-dev |
| 6 | + creationTimestamp: null |
| 7 | + labels: |
| 8 | + cnrm.cloud.google.com/managed-by-kcc: "true" |
| 9 | + cnrm.cloud.google.com/stability-level: stable |
| 10 | + cnrm.cloud.google.com/system: "true" |
| 11 | + cnrm.cloud.google.com/tf2crd: "true" |
| 12 | + name: accesscontextmanageraccesspolicies.accesscontextmanager.cnrm.cloud.google.com |
| 13 | +spec: |
| 14 | + group: accesscontextmanager.cnrm.cloud.google.com |
| 15 | + names: |
| 16 | + categories: |
| 17 | + - gcp |
| 18 | + kind: AccessContextManagerAccessPolicy |
| 19 | + listKind: AccessContextManagerAccessPolicyList |
| 20 | + plural: accesscontextmanageraccesspolicies |
| 21 | + shortNames: |
| 22 | + - gcpaccesscontextmanageraccesspolicy |
| 23 | + - gcpaccesscontextmanageraccesspolicies |
| 24 | + singular: accesscontextmanageraccesspolicy |
| 25 | + preserveUnknownFields: false |
| 26 | + scope: Namespaced |
| 27 | + versions: |
| 28 | + - additionalPrinterColumns: |
| 29 | + - jsonPath: .metadata.creationTimestamp |
| 30 | + name: Age |
| 31 | + type: date |
| 32 | + - description: When 'True', the most recent reconcile of the resource succeeded |
| 33 | + jsonPath: .status.conditions[?(@.type=='Ready')].status |
| 34 | + name: Ready |
| 35 | + type: string |
| 36 | + - description: The reason for the value in 'Ready' |
| 37 | + jsonPath: .status.conditions[?(@.type=='Ready')].reason |
| 38 | + name: Status |
| 39 | + type: string |
| 40 | + - description: The last transition time for the value in 'Status' |
| 41 | + jsonPath: .status.conditions[?(@.type=='Ready')].lastTransitionTime |
| 42 | + name: Status Age |
| 43 | + type: date |
| 44 | + name: v1beta1 |
| 45 | + schema: |
| 46 | + openAPIV3Schema: |
| 47 | + description: AccessContextManagerAccessPolicy is the Schema for the AccessContextManagerAccessPolicy |
| 48 | + API As per https://cloud.google.com/config-connector/docs/reference/resource-docs/accesscontextmanager/accesscontextmanageraccesspolicy#annotations |
| 49 | + the parent is organization which is stored in the cnrm.cloud.google.com/organization-id |
| 50 | + annotation. |
| 51 | + properties: |
| 52 | + apiVersion: |
| 53 | + description: 'APIVersion defines the versioned schema of this representation |
| 54 | + of an object. Servers should convert recognized schemas to the latest |
| 55 | + internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' |
| 56 | + type: string |
| 57 | + kind: |
| 58 | + description: 'Kind is a string value representing the REST resource this |
| 59 | + object represents. Servers may infer this from the endpoint the client |
| 60 | + submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' |
| 61 | + type: string |
| 62 | + metadata: |
| 63 | + type: object |
| 64 | + spec: |
| 65 | + description: AccessContextManagerAccessPolicySpec defines the desired |
| 66 | + state of AccessContextManagerAccessPolicy |
| 67 | + properties: |
| 68 | + resourceID: |
| 69 | + description: Immutable. Optional. The service-generated name of the |
| 70 | + resource. Used for acquisition only. Leave unset to create a new |
| 71 | + resource. |
| 72 | + type: string |
| 73 | + title: |
| 74 | + description: Required. Human readable title. Does not affect behavior. |
| 75 | + type: string |
| 76 | + required: |
| 77 | + - title |
| 78 | + type: object |
| 79 | + status: |
| 80 | + description: AccessContextManagerAccessPolicyStatus defines the config |
| 81 | + connector machine state of AccessContextManagerAccessPolicy |
| 82 | + properties: |
| 83 | + conditions: |
| 84 | + description: Conditions represent the latest available observations |
| 85 | + of the object's current state. |
| 86 | + items: |
| 87 | + properties: |
| 88 | + lastTransitionTime: |
| 89 | + description: Last time the condition transitioned from one status |
| 90 | + to another. |
| 91 | + type: string |
| 92 | + message: |
| 93 | + description: Human-readable message indicating details about |
| 94 | + last transition. |
| 95 | + type: string |
| 96 | + reason: |
| 97 | + description: Unique, one-word, CamelCase reason for the condition's |
| 98 | + last transition. |
| 99 | + type: string |
| 100 | + status: |
| 101 | + description: Status is the status of the condition. Can be True, |
| 102 | + False, Unknown. |
| 103 | + type: string |
| 104 | + type: |
| 105 | + description: Type is the type of the condition. |
| 106 | + type: string |
| 107 | + type: object |
| 108 | + type: array |
| 109 | + createTime: |
| 110 | + description: Output only. Time the AccessPolicy was created in UTC. |
| 111 | + type: string |
| 112 | + name: |
| 113 | + description: 'Resource name of the AccessPolicy. Format: {policy_id}.' |
| 114 | + type: string |
| 115 | + observedGeneration: |
| 116 | + description: ObservedGeneration is the generation of the resource |
| 117 | + that was most recently observed by the Config Connector controller. |
| 118 | + If this is equal to metadata.generation, then that means that the |
| 119 | + current reported status reflects the most recent desired state of |
| 120 | + the resource. |
| 121 | + format: int64 |
| 122 | + type: integer |
| 123 | + updateTime: |
| 124 | + description: Output only. Time the AccessPolicy was updated in UTC. |
| 125 | + type: string |
| 126 | + type: object |
| 127 | + required: |
| 128 | + - spec |
| 129 | + type: object |
| 130 | + served: true |
| 131 | + storage: true |
| 132 | + subresources: |
| 133 | + status: {} |
0 commit comments