diff --git a/config/crds/resources/apiextensions.k8s.io_v1_customresourcedefinition_bigqueryconnectionconnections.bigqueryconnection.cnrm.cloud.google.com.yaml b/config/crds/resources/apiextensions.k8s.io_v1_customresourcedefinition_bigqueryconnectionconnections.bigqueryconnection.cnrm.cloud.google.com.yaml index de38fbd444..3633ed56a2 100644 --- a/config/crds/resources/apiextensions.k8s.io_v1_customresourcedefinition_bigqueryconnectionconnections.bigqueryconnection.cnrm.cloud.google.com.yaml +++ b/config/crds/resources/apiextensions.k8s.io_v1_customresourcedefinition_bigqueryconnectionconnections.bigqueryconnection.cnrm.cloud.google.com.yaml @@ -58,59 +58,6 @@ spec: type: object spec: properties: - aws: - description: Connection properties specific to Amazon Web Services. - properties: - accessRole: - description: Authentication using Google owned service account - to assume into customer's AWS IAM Role. - properties: - iamRoleId: - description: The user’s AWS IAM Role that trusts the Google-owned - AWS IAM user Connection. - type: string - identity: - description: A unique Google-owned and Google-generated identity - for the Connection. This identity will be used to access - the user's AWS IAM Role. - type: string - required: - - iamRoleId - type: object - required: - - accessRole - type: object - azure: - description: Container for connection properties specific to Azure. - properties: - application: - description: The name of the Azure Active Directory Application. - type: string - clientId: - description: The client id of the Azure Active Directory Application. - type: string - customerTenantId: - description: The id of customer's directory that host the data. - type: string - federatedApplicationClientId: - description: The Azure Application (client) ID where the federated - credentials will be hosted. - type: string - identity: - description: A unique Google-owned and Google-generated identity - for the Connection. This identity will be used to access the - user's Azure Active Directory Application. - type: string - objectId: - description: The object id of the Azure Active Directory Application. - type: string - redirectUri: - description: The URL user will be redirected to after granting - consent during connection setup. - type: string - required: - - customerTenantId - type: object cloudResource: description: Container for connection properties for delegation of access to GCP resources. diff --git a/pkg/clients/generated/apis/bigqueryconnection/v1alpha1/bigqueryconnectionconnection_types.go b/pkg/clients/generated/apis/bigqueryconnection/v1alpha1/bigqueryconnectionconnection_types.go index 48fd932de5..5f76f28d05 100644 --- a/pkg/clients/generated/apis/bigqueryconnection/v1alpha1/bigqueryconnectionconnection_types.go +++ b/pkg/clients/generated/apis/bigqueryconnection/v1alpha1/bigqueryconnectionconnection_types.go @@ -35,49 +35,6 @@ import ( metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) -type ConnectionAccessRole struct { - /* The user’s AWS IAM Role that trusts the Google-owned AWS IAM user Connection. */ - IamRoleId string `json:"iamRoleId"` - - /* A unique Google-owned and Google-generated identity for the Connection. This identity will be used to access the user's AWS IAM Role. */ - // +optional - Identity *string `json:"identity,omitempty"` -} - -type ConnectionAws struct { - /* Authentication using Google owned service account to assume into customer's AWS IAM Role. */ - AccessRole ConnectionAccessRole `json:"accessRole"` -} - -type ConnectionAzure struct { - /* The name of the Azure Active Directory Application. */ - // +optional - Application *string `json:"application,omitempty"` - - /* The client id of the Azure Active Directory Application. */ - // +optional - ClientId *string `json:"clientId,omitempty"` - - /* The id of customer's directory that host the data. */ - CustomerTenantId string `json:"customerTenantId"` - - /* The Azure Application (client) ID where the federated credentials will be hosted. */ - // +optional - FederatedApplicationClientId *string `json:"federatedApplicationClientId,omitempty"` - - /* A unique Google-owned and Google-generated identity for the Connection. This identity will be used to access the user's Azure Active Directory Application. */ - // +optional - Identity *string `json:"identity,omitempty"` - - /* The object id of the Azure Active Directory Application. */ - // +optional - ObjectId *string `json:"objectId,omitempty"` - - /* The URL user will be redirected to after granting consent during connection setup. */ - // +optional - RedirectUri *string `json:"redirectUri,omitempty"` -} - type ConnectionCloudResource struct { /* The account ID of the service created for the purpose of this connection. */ // +optional @@ -85,14 +42,6 @@ type ConnectionCloudResource struct { } type BigQueryConnectionConnectionSpec struct { - /* Connection properties specific to Amazon Web Services. */ - // +optional - Aws *ConnectionAws `json:"aws,omitempty"` - - /* Container for connection properties specific to Azure. */ - // +optional - Azure *ConnectionAzure `json:"azure,omitempty"` - /* Container for connection properties for delegation of access to GCP resources. */ // +optional CloudResource *ConnectionCloudResource `json:"cloudResource,omitempty"` diff --git a/pkg/clients/generated/apis/bigqueryconnection/v1alpha1/zz_generated.deepcopy.go b/pkg/clients/generated/apis/bigqueryconnection/v1alpha1/zz_generated.deepcopy.go index a7bb05a51c..e8e91c8cc5 100644 --- a/pkg/clients/generated/apis/bigqueryconnection/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/clients/generated/apis/bigqueryconnection/v1alpha1/zz_generated.deepcopy.go @@ -93,16 +93,6 @@ func (in *BigQueryConnectionConnectionList) DeepCopyObject() runtime.Object { // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *BigQueryConnectionConnectionSpec) DeepCopyInto(out *BigQueryConnectionConnectionSpec) { *out = *in - if in.Aws != nil { - in, out := &in.Aws, &out.Aws - *out = new(ConnectionAws) - (*in).DeepCopyInto(*out) - } - if in.Azure != nil { - in, out := &in.Azure, &out.Azure - *out = new(ConnectionAzure) - (*in).DeepCopyInto(*out) - } if in.CloudResource != nil { in, out := &in.CloudResource, &out.CloudResource *out = new(ConnectionCloudResource) @@ -178,90 +168,6 @@ func (in *BigQueryConnectionConnectionStatus) DeepCopy() *BigQueryConnectionConn return out } -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *ConnectionAccessRole) DeepCopyInto(out *ConnectionAccessRole) { - *out = *in - if in.Identity != nil { - in, out := &in.Identity, &out.Identity - *out = new(string) - **out = **in - } - return -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConnectionAccessRole. -func (in *ConnectionAccessRole) DeepCopy() *ConnectionAccessRole { - if in == nil { - return nil - } - out := new(ConnectionAccessRole) - in.DeepCopyInto(out) - return out -} - -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *ConnectionAws) DeepCopyInto(out *ConnectionAws) { - *out = *in - in.AccessRole.DeepCopyInto(&out.AccessRole) - return -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConnectionAws. -func (in *ConnectionAws) DeepCopy() *ConnectionAws { - if in == nil { - return nil - } - out := new(ConnectionAws) - in.DeepCopyInto(out) - return out -} - -// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *ConnectionAzure) DeepCopyInto(out *ConnectionAzure) { - *out = *in - if in.Application != nil { - in, out := &in.Application, &out.Application - *out = new(string) - **out = **in - } - if in.ClientId != nil { - in, out := &in.ClientId, &out.ClientId - *out = new(string) - **out = **in - } - if in.FederatedApplicationClientId != nil { - in, out := &in.FederatedApplicationClientId, &out.FederatedApplicationClientId - *out = new(string) - **out = **in - } - if in.Identity != nil { - in, out := &in.Identity, &out.Identity - *out = new(string) - **out = **in - } - if in.ObjectId != nil { - in, out := &in.ObjectId, &out.ObjectId - *out = new(string) - **out = **in - } - if in.RedirectUri != nil { - in, out := &in.RedirectUri, &out.RedirectUri - *out = new(string) - **out = **in - } - return -} - -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConnectionAzure. -func (in *ConnectionAzure) DeepCopy() *ConnectionAzure { - if in == nil { - return nil - } - out := new(ConnectionAzure) - in.DeepCopyInto(out) - return out -} - // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *ConnectionCloudResource) DeepCopyInto(out *ConnectionCloudResource) { *out = *in diff --git a/scripts/resource-autogen/generated/servicemappings/bigqueryconnection.yaml b/scripts/resource-autogen/generated/servicemappings/bigqueryconnection.yaml index ebbde2859c..6e7a2ab662 100644 --- a/scripts/resource-autogen/generated/servicemappings/bigqueryconnection.yaml +++ b/scripts/resource-autogen/generated/servicemappings/bigqueryconnection.yaml @@ -37,8 +37,11 @@ spec: resourceAvailableInAssetInventory: false ignoredFields: # TODO: https://github.com/GoogleCloudPlatform/k8s-config-connector/issues/2149 - - cloud_sql - - cloud_spanner + - cloud_sql + - cloud_spanner + # TODO: https://github.com/GoogleCloudPlatform/k8s-config-connector/issues/2340 + - aws + - azure observedFields: - cloud_resource.service_account_id metadataMapping: diff --git a/scripts/resource-autogen/servicemapping/embed/generated/assets_vfsdata.go b/scripts/resource-autogen/servicemapping/embed/generated/assets_vfsdata.go index e988a0b62b..410b386039 100644 --- a/scripts/resource-autogen/servicemapping/embed/generated/assets_vfsdata.go +++ b/scripts/resource-autogen/servicemapping/embed/generated/assets_vfsdata.go @@ -104,9 +104,9 @@ var Assets = func() http.FileSystem { "/bigqueryconnection.yaml": &vfsgen۰CompressedFileInfo{ name: "bigqueryconnection.yaml", modTime: time.Time{}, - uncompressedSize: 2086, + uncompressedSize: 2202, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x5b\x6f\xdb\x46\x13\x7d\xe7\xaf\x18\x48\x2f\xdf\x07\x58\x64\x2c\xf4\xa1\x65\x9f\x14\xd9\x49\x84\xda\x52\x2a\xc9\x0d\xf2\x24\x8c\x96\x43\x72\xea\xe5\xee\x7a\x77\x29\x85\x70\xf5\xdf\x0b\xde\x74\xf1\x05\x0d\x9f\x84\x9d\x33\x67\xce\x5c\x35\x84\xa9\x36\x95\xe5\x2c\xf7\x30\xfe\x30\x1e\xc3\x67\xad\x33\x49\x70\x77\x37\x0d\x86\xc1\x10\xee\x58\x90\x72\x94\x40\xa9\x12\xb2\xe0\x73\x82\x89\x41\x91\x53\x6f\xb9\x82\xbf\xc8\x3a\xd6\x0a\xc6\xe1\x07\xf8\x5f\x0d\x18\x74\xa6\xc1\xff\x7f\x0f\x86\x50\xe9\x12\x0a\xac\x40\x69\x0f\xa5\x23\xf0\x39\x3b\x48\x59\x12\xd0\x0f\x41\xc6\x03\x2b\x10\xba\x30\x92\x51\x09\x82\x3d\xfb\xbc\x09\xd3\x91\x84\xc1\x10\xbe\x77\x14\x7a\xeb\x91\x15\x20\x08\x6d\x2a\xd0\xe9\x39\x0e\xd0\x37\x82\x9b\x2f\xf7\xde\xc4\x51\xb4\xdf\xef\x43\x6c\xd4\x86\xda\x66\x91\x6c\x91\x2e\xba\x9b\x4d\x6f\xe7\xab\xdb\xd1\x38\xfc\xd0\xf8\x3c\x28\x49\xce\x81\xa5\xa7\x92\x2d\x25\xb0\xad\x00\x8d\x91\x2c\x70\x2b\x09\x24\xee\x41\x5b\xc0\xcc\x12\x25\xe0\x75\x2d\x78\x6f\xd9\xb3\xca\xae\xc0\xe9\xd4\xef\xd1\x52\x30\x84\x84\x9d\xb7\xbc\x2d\xfd\x45\xb5\x7a\x79\xec\x2e\x00\x5a\x01\x2a\x18\x4c\x56\x30\x5b\x0d\xe0\xe3\x64\x35\x5b\x5d\x05\x43\xf8\x36\x5b\x7f\x59\x3c\xac\xe1\xdb\x64\xb9\x9c\xcc\xd7\xb3\xdb\x15\x2c\x96\x30\x5d\xcc\x6f\x66\xeb\xd9\x62\xbe\x82\xc5\x27\x98\xcc\xbf\xc3\x1f\xb3\xf9\xcd\x15\x10\xfb\x9c\x2c\xd0\x0f\x63\x6b\xfd\xda\x02\xd7\x75\xa4\xa4\x2e\xda\x8a\xe8\x42\x40\xaa\x5b\x41\xce\x90\xe0\x94\x05\x48\x54\x59\x89\x19\x41\xa6\x77\x64\x15\xab\x0c\x0c\xd9\x82\x5d\xdd\x4d\x07\xa8\x92\x60\x08\x92\x0b\xf6\xe8\x9b\x97\x57\x49\x85\x41\x80\x86\xbb\xfe\xc7\x20\xb4\xa5\x50\x28\x5b\x84\x42\xea\x32\x09\xb3\x66\x94\x42\xa1\x8b\x68\x77\x8d\xd2\xe4\x78\x1d\x3c\xb2\x4a\x62\x58\x91\xdd\xb1\xa0\x7b\x34\x86\x55\x16\x14\xe4\x31\x41\x8f\x71\x00\xa0\xb0\xa0\x18\xb6\x9c\x3d\x95\x64\x2b\xa1\x95\x22\x51\x87\x7f\x9b\xb8\x73\x70\x06\x05\xc5\x50\x43\x46\xae\x72\x9e\x8a\xa0\x4e\xf3\xc4\xf7\x91\xb3\x3f\x6b\xbe\xe9\x91\x2f\x00\xd8\xf5\xc2\x77\xd7\x5b\xf2\x78\x1d\x00\xb8\x56\xd8\x17\xed\xfc\xfc\x3d\x21\x6d\x74\x34\xec\x3a\x05\x96\x9c\x2e\xad\x20\x57\xc7\x03\x18\x75\x31\x5b\xdc\xa6\x67\xd8\x88\xf3\xd8\xf5\xd7\xd6\xe2\xb5\xb4\xe9\x4b\x20\x96\x5e\x7f\x26\x45\x16\x3d\x25\x31\x78\x5b\x52\x67\x61\x2c\xa6\x5a\xa5\x9c\xc5\xdd\x03\x80\xd1\x92\x45\x35\xff\x0f\x09\x1b\xc6\x62\xd3\x42\x5f\x78\xde\x53\xb1\x25\xfb\x53\xfe\x45\x03\x3d\xfa\x5b\x4a\xc9\x92\x12\xf4\x89\x49\x26\x27\x45\x7d\x13\xce\xbd\x93\x33\xab\xaf\x0c\xc5\x0d\xe6\xf8\xe8\x4a\x63\xb4\xf5\x6e\xaa\x55\xc2\xcd\xf4\xc5\x90\xa2\x74\xc7\xbc\x93\x35\x15\x46\xa2\xa7\x18\x06\xc6\xea\xbf\x49\x78\x17\x3d\x3f\x77\x3f\x0f\x87\x48\x6a\xd1\x8e\x6d\xf4\xfc\xdc\xff\x3e\x1c\xa2\x93\x86\xda\x70\xa1\xe8\x70\x18\xbc\x62\x9f\xa2\xfa\x48\x0f\x8e\x92\xb5\xbe\x47\x2f\xf2\x65\xd7\xea\xb6\x3c\xe7\x8a\xfa\x21\x98\xec\x90\x65\x7d\x37\x66\x6a\xe2\x1c\xf9\x99\xda\x91\xf2\xda\x56\x2f\x12\xc8\x94\xb6\x94\x34\x95\x72\xa7\x52\x0d\x61\xbd\xb8\x59\xc4\xcd\x01\x73\x71\x14\x65\xec\xf3\x72\xdb\xac\x50\x7b\x98\xa7\xf5\x02\x7c\x95\xe8\x53\x6d\x8b\xe8\xf1\x57\x37\x12\x4d\xff\x47\x5d\x2a\xda\x46\xec\x5c\x49\x2e\x1a\x5f\xff\xf2\xdb\xa9\xc8\x23\x68\x56\x67\xe3\x9e\xe4\x1b\x8f\x06\x95\x3a\x36\x52\x6f\xeb\x2d\x78\xad\xad\x47\xf7\x99\x86\xdd\xb2\x6c\x50\x08\x5d\x2a\x7f\x6a\x6a\xbf\xcf\xdd\x7e\x9f\x28\xde\x9f\x83\x9e\x74\x76\x73\x42\x7b\xb4\x19\xf9\x76\x98\xde\x74\xca\x99\x2c\x5a\x91\xb3\x40\xb9\xec\x87\xef\x42\x71\x3b\x5a\xdd\x54\x9c\x8d\xdc\x23\x55\xc7\xe7\x25\xa5\x2f\x44\xbc\xc3\x95\x76\x52\x7e\x96\xae\xfe\x12\x72\xc2\xb2\xf1\xcd\x9d\xf9\x67\x74\x66\x01\x58\xe7\xd4\x3b\x81\xcf\xd1\xb7\x7f\x8d\xbd\x08\xd8\x92\xd4\x2a\x73\xe0\x75\x78\xe6\x96\xed\x1e\xe3\x0b\x96\xf6\x8a\x7c\x7d\xa5\xe9\xcd\xfb\x76\xc6\x63\x75\x69\xe2\x63\xb4\x02\x15\x66\x64\xdf\xb9\xb2\xff\x06\x00\x00\xff\xff\x56\x63\x4b\x6d\x26\x08\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x95\x4d\x73\xe2\x38\x13\xc7\xef\xfe\x14\x5d\x70\x79\x9e\xaa\x60\x07\x76\x0e\xbb\xde\x13\x21\x99\x19\xd7\x26\x30\x0b\x64\xa7\xe6\x44\x35\x72\xdb\xd6\x46\x96\x14\x49\x86\xf1\x66\xf9\xee\x5b\x7e\x03\x13\x92\xda\x39\xac\x4e\x46\xea\xfe\xf7\x4f\xdd\xad\x66\x08\x33\xa5\x4b\xc3\xd3\xcc\xc1\xe4\x7a\x32\x81\x4f\x4a\xa5\x82\xe0\xfe\x7e\xe6\x0d\xbd\x21\xdc\x73\x46\xd2\x52\x0c\x85\x8c\xc9\x80\xcb\x08\xa6\x1a\x59\x46\xdd\xc9\x15\xfc\x41\xc6\x72\x25\x61\xe2\x5f\xc3\xff\x2a\x83\x41\x7b\x34\xf8\xff\xaf\xde\x10\x4a\x55\x40\x8e\x25\x48\xe5\xa0\xb0\x04\x2e\xe3\x16\x12\x2e\x08\xe8\x3b\x23\xed\x80\x4b\x60\x2a\xd7\x82\xa3\x64\x04\x7b\xee\xb2\x3a\x4c\x2b\xe2\x7b\x43\xf8\xd6\x4a\xa8\xad\x43\x2e\x01\x81\x29\x5d\x82\x4a\xfa\x76\x80\xae\x06\xae\x57\xe6\x9c\x0e\x83\x60\xbf\xdf\xfb\x58\xd3\xfa\xca\xa4\x81\x68\x2c\x6d\x70\x1f\xcd\xee\xe6\xab\xbb\xd1\xc4\xbf\xae\x7d\x1e\xa5\x20\x6b\xc1\xd0\x73\xc1\x0d\xc5\xb0\x2d\x01\xb5\x16\x9c\xe1\x56\x10\x08\xdc\x83\x32\x80\xa9\x21\x8a\xc1\xa9\x0a\x78\x6f\xb8\xe3\x32\xbd\x02\xab\x12\xb7\x47\x43\xde\x10\x62\x6e\x9d\xe1\xdb\xc2\x9d\x65\xab\xc3\xe3\xf6\xcc\x40\x49\x40\x09\x83\xe9\x0a\xa2\xd5\x00\x6e\xa6\xab\x68\x75\xe5\x0d\xe1\x6b\xb4\xfe\xbc\x78\x5c\xc3\xd7\xe9\x72\x39\x9d\xaf\xa3\xbb\x15\x2c\x96\x30\x5b\xcc\x6f\xa3\x75\xb4\x98\xaf\x60\xf1\x11\xa6\xf3\x6f\xf0\x5b\x34\xbf\xbd\x02\xe2\x2e\x23\x03\xf4\x5d\x9b\x8a\x5f\x19\xe0\x55\x1e\x29\xae\x92\xb6\x22\x3a\x03\x48\x54\x03\x64\x35\x31\x9e\x70\x06\x02\x65\x5a\x60\x4a\x90\xaa\x1d\x19\xc9\x65\x0a\x9a\x4c\xce\x6d\x55\x4d\x0b\x28\x63\x6f\x08\x82\xe7\xdc\xa1\xab\x77\x2e\x2e\xe5\x7b\x1e\x6a\xde\xd6\x3f\x04\xa6\x0c\xf9\x4c\x9a\xdc\x67\x42\x15\xb1\x9f\xd6\xad\xe4\x33\x95\x07\xbb\x31\x0a\x9d\xe1\xd8\x7b\xe2\x32\x0e\x61\x45\x66\xc7\x19\x3d\xa0\xd6\x5c\xa6\x5e\x4e\x0e\x63\x74\x18\x7a\x00\x12\x73\x0a\x61\xcb\xd3\xe7\x82\x4c\xc9\x94\x94\xc4\xaa\xf0\x6f\x0b\xb7\x0e\x56\x23\xa3\x10\x2a\x93\x91\x2d\xad\xa3\xdc\xab\xae\x79\xd2\xbb\xe1\xe9\xef\x95\xde\xec\xa8\xe7\x01\xec\x3a\xf0\xdd\x78\x4b\x0e\xc7\x1e\x80\x6d\xc0\x3e\x2b\xeb\xe6\xef\x81\x34\xd1\x51\x73\xdb\x12\x18\xb2\xaa\x30\x8c\x6c\x15\x0f\x60\xd4\xc6\x6c\xec\x36\x9d\xc2\x86\xf5\x63\x57\xab\xc9\xc5\x25\xda\xec\xb5\x21\x16\x4e\x7d\x22\x49\x06\x1d\xc5\x21\x38\x53\x50\x7b\xc2\x31\x9f\x29\x99\xf0\x34\x6c\x37\x00\xb4\x12\x9c\x95\xf3\x7f\x41\xd8\x70\xcc\x37\x8d\xe9\x2b\xcf\x07\xca\xb7\x64\x7e\xc8\x3f\xaf\x4d\x8f\xfe\x86\x12\x32\x24\x19\x7d\xe4\x24\xe2\x13\x51\x57\x84\xbe\x77\xdc\x3b\x75\xa5\xa6\xb0\xb6\x39\x6e\xda\x42\x6b\x65\x9c\x9d\x29\x19\xf3\xba\xfb\x42\x48\x50\xd8\xe3\xbd\xe3\x35\xe5\x5a\xa0\xa3\x10\x06\xda\xa8\x3f\x89\x39\x1b\xbc\xbc\xb4\x9f\x87\x43\x20\x14\x6b\xda\x36\x78\x79\xe9\xbe\x0f\x87\xe0\xc4\x50\x1d\x9c\x11\x1d\x0e\x83\x0b\xf5\x19\xca\x1b\x7a\xb4\x14\xaf\xd5\x03\x3a\x96\x2d\xdb\x52\x37\xe9\xe9\x13\x75\x4d\x30\xdd\x21\x17\xd5\xdc\x88\xe4\xd4\x5a\x72\x91\xdc\x91\x74\xca\x94\xaf\x2e\x90\x4a\x65\x28\xae\x33\x65\x4f\xa9\x1a\xc2\x7a\x71\xbb\x08\xeb\x01\x66\xc3\x20\x48\xb9\xcb\x8a\x6d\xfd\x84\x9a\xc1\x3c\xab\x1e\xc0\x17\x81\x2e\x51\x26\x0f\x9e\x7e\xb6\x23\x56\xd7\x7f\xd4\x5e\x45\x99\x80\x5b\x5b\x90\x0d\x26\xe3\x0f\xbf\x1c\x75\x47\x50\xbf\x9c\x8d\x7d\x16\x97\x7b\x1a\xa5\xec\x95\xf1\xbf\x64\xf8\xe9\xc3\x75\x2f\x1e\xee\x6d\xff\xd7\x5f\x85\xe9\xd2\xa1\xb6\xd5\xcb\xbb\xcc\x47\xc7\xd8\x65\xd7\x6f\x1f\xe8\x06\x19\x53\x85\x74\xa7\x46\xea\x66\x48\x3b\x53\x4e\x12\xef\xf7\x5e\x27\x1a\xdd\x9e\xac\x1d\x9a\x94\x5c\xd3\xc0\x6f\x3a\x65\x9c\x0c\x1a\x96\x71\x86\x62\xd9\x35\xfc\x19\x71\xd3\xce\x6d\x27\xf6\xda\xfc\x89\xca\xe3\xf6\x92\x92\x57\x10\xef\x68\x25\x2d\xca\x8f\xca\x55\x2b\x26\xcb\x0c\xd7\xae\x9e\x6d\x7f\x8f\x7a\x27\x00\xeb\x8c\x3a\x27\x70\x19\xba\xe6\xef\xb8\x83\x80\x2d\x09\x25\x53\x0b\x4e\xf9\x3d\xb7\x74\xf7\x14\x9e\xa9\x34\x93\xeb\xcb\x05\xd3\x9b\x33\xb5\xa7\x63\x54\xa1\xc3\x63\xb4\x1c\x25\xa6\x64\xde\x99\xec\xff\x04\x00\x00\xff\xff\x36\x0e\xb0\x26\x9a\x08\x00\x00"), }, "/bigquerydatapolicy.yaml": &vfsgen۰CompressedFileInfo{ name: "bigquerydatapolicy.yaml", diff --git a/tests/apichecks/testdata/exceptions/acronyms.txt b/tests/apichecks/testdata/exceptions/acronyms.txt index 1334094c94..b0077f412c 100644 --- a/tests/apichecks/testdata/exceptions/acronyms.txt +++ b/tests/apichecks/testdata/exceptions/acronyms.txt @@ -37,11 +37,6 @@ [acronyms] crd=appenginestandardappversions.appengine.cnrm.cloud.google.com version=v1alpha1: field ".spec.handlers[].redirectHttpResponseCode" should be ".spec.handlers[].redirectHTTPResponseCode" [acronyms] crd=appenginestandardappversions.appengine.cnrm.cloud.google.com version=v1alpha1: field ".spec.runtimeApiVersion" should be ".spec.runtimeAPIVersion" [acronyms] crd=bigqueryanalyticshublistings.bigqueryanalyticshub.cnrm.cloud.google.com version=v1alpha1: field ".spec.dataExchangeId" should be ".spec.dataExchangeID" -[acronyms] crd=bigqueryconnectionconnections.bigqueryconnection.cnrm.cloud.google.com version=v1alpha1: field ".spec.aws.accessRole.iamRoleId" should be ".spec.aws.accessRole.iamRoleID" -[acronyms] crd=bigqueryconnectionconnections.bigqueryconnection.cnrm.cloud.google.com version=v1alpha1: field ".spec.azure.clientId" should be ".spec.azure.clientID" -[acronyms] crd=bigqueryconnectionconnections.bigqueryconnection.cnrm.cloud.google.com version=v1alpha1: field ".spec.azure.customerTenantId" should be ".spec.azure.customerTenantID" -[acronyms] crd=bigqueryconnectionconnections.bigqueryconnection.cnrm.cloud.google.com version=v1alpha1: field ".spec.azure.federatedApplicationClientId" should be ".spec.azure.federatedApplicationClientID" -[acronyms] crd=bigqueryconnectionconnections.bigqueryconnection.cnrm.cloud.google.com version=v1alpha1: field ".spec.azure.objectId" should be ".spec.azure.objectID" [acronyms] crd=bigqueryconnectionconnections.bigqueryconnection.cnrm.cloud.google.com version=v1alpha1: field ".spec.cloudResource.serviceAccountId" should be ".spec.cloudResource.serviceAccountID" [acronyms] crd=bigqueryconnectionconnections.bigqueryconnection.cnrm.cloud.google.com version=v1alpha1: field ".status.observedState.cloudResource.serviceAccountId" should be ".status.observedState.cloudResource.serviceAccountID" [acronyms] crd=bigquerydatasetaccesses.bigquery.cnrm.cloud.google.com version=v1alpha1: field ".spec.dataset.dataset.datasetId" should be ".spec.dataset.dataset.datasetID"