"description":"InhibitAnyPolicy and InhibitAnyPolicyZero indicate the presence and value\nof the inhibitAnyPolicy extension.\n\nThe value of InhibitAnyPolicy indicates the number of additional\ncertificates in the path after this certificate that may use the\nanyPolicy policy OID to indicate a match with any other policy.\n\nWhen parsing a certificate, a positive non-zero InhibitAnyPolicy means\nthat the field was specified, -1 means it was unset, and\nInhibitAnyPolicyZero being true mean that the field was explicitly set to\nzero. The case of InhibitAnyPolicy==0 with InhibitAnyPolicyZero==false\nshould be treated equivalent to -1 (unset).",
"type":"integer",
"format":"int64"
},
"InhibitAnyPolicyZero":{
"description":"InhibitAnyPolicyZero indicates that InhibitAnyPolicy==0 should be\ninterpreted as an actual maximum path length of zero. Otherwise, that\ncombination is interpreted as InhibitAnyPolicy not being set.",
"type":"boolean"
},
"InhibitPolicyMapping":{
"description":"InhibitPolicyMapping and InhibitPolicyMappingZero indicate the presence\nand value of the inhibitPolicyMapping field of the policyConstraints\nextension.\n\nThe value of InhibitPolicyMapping indicates the number of additional\ncertificates in the path after this certificate that may use policy\nmapping.\n\nWhen parsing a certificate, a positive non-zero InhibitPolicyMapping\nmeans that the field was specified, -1 means it was unset, and\nInhibitPolicyMappingZero being true mean that the field was explicitly\nset to zero. The case of InhibitPolicyMapping==0 with\nInhibitPolicyMappingZero==false should be treated equivalent to -1\n(unset).",
"type":"integer",
"format":"int64"
},
"InhibitPolicyMappingZero":{
"description":"InhibitPolicyMappingZero indicates that InhibitPolicyMapping==0 should be\ninterpreted as an actual maximum path length of zero. Otherwise, that\ncombination is interpreted as InhibitAnyPolicy not being set.",
"type":"boolean"
},
"IsCA":{
"type":"boolean"
},
@ -3270,19 +3290,26 @@
}
},
"Policies":{
"description":"Policies contains all policy identifiers included in the certificate.\nIn Go 1.22, encoding/gob cannot handle and ignores this field.",
"description":"Policies contains all policy identifiers included in the certificate.\nSee CreateCertificate for context about how this field and the PolicyIdentifiers field\ninteract.\nIn Go 1.22, encoding/gob cannot handle and ignores this field.",
"type":"array",
"items":{
"type":"string"
}
},
"PolicyIdentifiers":{
"description":"PolicyIdentifiers contains asn1.ObjectIdentifiers, the components\nof which are limited to int32. If a certificate contains a policy which\ncannot be represented by asn1.ObjectIdentifier, it will not be included in\nPolicyIdentifiers, but will be present in Policies, which contains all parsed\npolicy OIDs.",
"description":"PolicyIdentifiers contains asn1.ObjectIdentifiers, the components\nof which are limited to int32. If a certificate contains a policy which\ncannot be represented by asn1.ObjectIdentifier, it will not be included in\nPolicyIdentifiers, but will be present in Policies, which contains all parsed\npolicy OIDs.\nSee CreateCertificate for context about how this field and the Policies field\ninteract.",
"type":"array",
"items":{
"$ref":"#/definitions/ObjectIdentifier"
}
},
"PolicyMappings":{
"description":"PolicyMappings contains a list of policy mappings included in the certificate.",
"type":"array",
"items":{
"$ref":"#/definitions/PolicyMapping"
}
},
"PublicKey":{},
"PublicKeyAlgorithm":{
"$ref":"#/definitions/PublicKeyAlgorithm"
@ -3322,6 +3349,15 @@
"format":"uint8"
}
},
"RequireExplicitPolicy":{
"description":"RequireExplicitPolicy and RequireExplicitPolicyZero indicate the presence\nand value of the requireExplicitPolicy field of the policyConstraints\nextension.\n\nThe value of RequireExplicitPolicy indicates the number of additional\ncertificates in the path after this certificate before an explicit policy\nis required for the rest of the path. When an explicit policy is required,\neach subsequent certificate in the path must contain a required policy OID,\nor a policy OID which has been declared as equivalent through the policy\nmapping extension.\n\nWhen parsing a certificate, a positive non-zero RequireExplicitPolicy\nmeans that the field was specified, -1 means it was unset, and\nRequireExplicitPolicyZero being true mean that the field was explicitly\nset to zero. The case of RequireExplicitPolicy==0 with\nRequireExplicitPolicyZero==false should be treated equivalent to -1\n(unset).",
"type":"integer",
"format":"int64"
},
"RequireExplicitPolicyZero":{
"description":"RequireExplicitPolicyZero indicates that RequireExplicitPolicy==0 should be\ninterpreted as an actual maximum path length of zero. Otherwise, that\ncombination is interpreted as InhibitAnyPolicy not being set.",
"type":"boolean"
},
"SerialNumber":{
"type":"string"
},
@ -4047,6 +4083,9 @@
"annotationsPermissions":{
"$ref":"#/definitions/AnnotationPermission"
},
"apiVersion":{
"type":"string"
},
"canAdmin":{
"type":"boolean"
},
@ -4737,6 +4776,9 @@
"type":"integer",
"format":"int64"
},
"managedBy":{
"$ref":"#/definitions/ManagerKind"
},
"orgId":{
"type":"integer",
"format":"int64"
@ -4752,10 +4794,6 @@
"$ref":"#/definitions/Folder"
}
},
"repository":{
"description":"When the folder belongs to a repository\nNOTE: this is only populated when folders are managed by unified storage",
"type":"string"
},
"title":{
"type":"string"
},
@ -4785,11 +4823,10 @@
"type":"integer",
"format":"int64"
},
"parentUid":{
"type":"string"
"managedBy":{
"$ref":"#/definitions/ManagerKind"
},
"repository":{
"description":"When the folder belongs to a repository\nNOTE: this is only populated when folders are managed by unified storage",
"parentUid":{
"type":"string"
},
"title":{
@ -5536,6 +5573,11 @@
}
}
},
"ManagerKind":{
"description":"It can be a user or a tool or a generic API client.\n+enum",
"type":"string",
"title":"ManagerKind is the type of manager, which is responsible for managing the resource."
},
"MassDeleteAnnotationsCmd":{
"type":"object",
"properties":{
@ -6175,6 +6217,20 @@
"$ref":"#/definitions/Playlist"
}
},
"PolicyMapping":{
"type":"object",
"title":"PolicyMapping represents a policy mapping entry in the policyMappings extension.",
"properties":{
"IssuerDomainPolicy":{
"description":"IssuerDomainPolicy contains a policy OID the issuing certificate considers\nequivalent to SubjectDomainPolicy in the subject certificate.",
"type":"string"
},
"SubjectDomainPolicy":{
"description":"SubjectDomainPolicy contains a OID the issuing certificate considers\nequivalent to IssuerDomainPolicy in the subject certificate.",
"type":"string"
}
}
},
"PostAnnotationsCmd":{
"type":"object",
"required":[
@ -9946,6 +10002,12 @@
"type":"object"
}
},
"notAcceptableError":{
"description":"NotAcceptableError is returned when the server cannot produce a response matching the accepted formats.",
"schema":{
"$ref":"#/definitions/ErrorResponseBody"
}
},
"notFoundError":{
"description":"NotFoundError is returned when the requested resource was not found.",
"description":"InhibitAnyPolicy and InhibitAnyPolicyZero indicate the presence and value\nof the inhibitAnyPolicy extension.\n\nThe value of InhibitAnyPolicy indicates the number of additional\ncertificates in the path after this certificate that may use the\nanyPolicy policy OID to indicate a match with any other policy.\n\nWhen parsing a certificate, a positive non-zero InhibitAnyPolicy means\nthat the field was specified, -1 means it was unset, and\nInhibitAnyPolicyZero being true mean that the field was explicitly set to\nzero. The case of InhibitAnyPolicy==0 with InhibitAnyPolicyZero==false\nshould be treated equivalent to -1 (unset).",
"type":"integer",
"format":"int64"
},
"InhibitAnyPolicyZero":{
"description":"InhibitAnyPolicyZero indicates that InhibitAnyPolicy==0 should be\ninterpreted as an actual maximum path length of zero. Otherwise, that\ncombination is interpreted as InhibitAnyPolicy not being set.",
"type":"boolean"
},
"InhibitPolicyMapping":{
"description":"InhibitPolicyMapping and InhibitPolicyMappingZero indicate the presence\nand value of the inhibitPolicyMapping field of the policyConstraints\nextension.\n\nThe value of InhibitPolicyMapping indicates the number of additional\ncertificates in the path after this certificate that may use policy\nmapping.\n\nWhen parsing a certificate, a positive non-zero InhibitPolicyMapping\nmeans that the field was specified, -1 means it was unset, and\nInhibitPolicyMappingZero being true mean that the field was explicitly\nset to zero. The case of InhibitPolicyMapping==0 with\nInhibitPolicyMappingZero==false should be treated equivalent to -1\n(unset).",
"type":"integer",
"format":"int64"
},
"InhibitPolicyMappingZero":{
"description":"InhibitPolicyMappingZero indicates that InhibitPolicyMapping==0 should be\ninterpreted as an actual maximum path length of zero. Otherwise, that\ncombination is interpreted as InhibitAnyPolicy not being set.",
"type":"boolean"
},
"IsCA":{
"type":"boolean"
},
@ -13679,19 +13697,26 @@
}
},
"Policies":{
"description":"Policies contains all policy identifiers included in the certificate.\nIn Go 1.22, encoding/gob cannot handle and ignores this field.",
"description":"Policies contains all policy identifiers included in the certificate.\nSee CreateCertificate for context about how this field and the PolicyIdentifiers field\ninteract.\nIn Go 1.22, encoding/gob cannot handle and ignores this field.",
"type":"array",
"items":{
"type":"string"
}
},
"PolicyIdentifiers":{
"description":"PolicyIdentifiers contains asn1.ObjectIdentifiers, the components\nof which are limited to int32. If a certificate contains a policy which\ncannot be represented by asn1.ObjectIdentifier, it will not be included in\nPolicyIdentifiers, but will be present in Policies, which contains all parsed\npolicy OIDs.",
"description":"PolicyIdentifiers contains asn1.ObjectIdentifiers, the components\nof which are limited to int32. If a certificate contains a policy which\ncannot be represented by asn1.ObjectIdentifier, it will not be included in\nPolicyIdentifiers, but will be present in Policies, which contains all parsed\npolicy OIDs.\nSee CreateCertificate for context about how this field and the Policies field\ninteract.",
"type":"array",
"items":{
"$ref":"#/definitions/ObjectIdentifier"
}
},
"PolicyMappings":{
"description":"PolicyMappings contains a list of policy mappings included in the certificate.",
"type":"array",
"items":{
"$ref":"#/definitions/PolicyMapping"
}
},
"PublicKey":{},
"PublicKeyAlgorithm":{
"$ref":"#/definitions/PublicKeyAlgorithm"
@ -13731,6 +13756,15 @@
"format":"uint8"
}
},
"RequireExplicitPolicy":{
"description":"RequireExplicitPolicy and RequireExplicitPolicyZero indicate the presence\nand value of the requireExplicitPolicy field of the policyConstraints\nextension.\n\nThe value of RequireExplicitPolicy indicates the number of additional\ncertificates in the path after this certificate before an explicit policy\nis required for the rest of the path. When an explicit policy is required,\neach subsequent certificate in the path must contain a required policy OID,\nor a policy OID which has been declared as equivalent through the policy\nmapping extension.\n\nWhen parsing a certificate, a positive non-zero RequireExplicitPolicy\nmeans that the field was specified, -1 means it was unset, and\nRequireExplicitPolicyZero being true mean that the field was explicitly\nset to zero. The case of RequireExplicitPolicy==0 with\nRequireExplicitPolicyZero==false should be treated equivalent to -1\n(unset).",
"type":"integer",
"format":"int64"
},
"RequireExplicitPolicyZero":{
"description":"RequireExplicitPolicyZero indicates that RequireExplicitPolicy==0 should be\ninterpreted as an actual maximum path length of zero. Otherwise, that\ncombination is interpreted as InhibitAnyPolicy not being set.",
"type":"boolean"
},
"SerialNumber":{
"type":"string"
},
@ -18116,6 +18150,20 @@
"$ref":"#/definitions/Playlist"
}
},
"PolicyMapping":{
"type":"object",
"title":"PolicyMapping represents a policy mapping entry in the policyMappings extension.",
"properties":{
"IssuerDomainPolicy":{
"description":"IssuerDomainPolicy contains a policy OID the issuing certificate considers\nequivalent to SubjectDomainPolicy in the subject certificate.",
"type":"string"
},
"SubjectDomainPolicy":{
"description":"SubjectDomainPolicy contains a OID the issuing certificate considers\nequivalent to IssuerDomainPolicy in the subject certificate.",
"description":"InhibitAnyPolicy and InhibitAnyPolicyZero indicate the presence and value\nof the inhibitAnyPolicy extension.\n\nThe value of InhibitAnyPolicy indicates the number of additional\ncertificates in the path after this certificate that may use the\nanyPolicy policy OID to indicate a match with any other policy.\n\nWhen parsing a certificate, a positive non-zero InhibitAnyPolicy means\nthat the field was specified, -1 means it was unset, and\nInhibitAnyPolicyZero being true mean that the field was explicitly set to\nzero. The case of InhibitAnyPolicy==0 with InhibitAnyPolicyZero==false\nshould be treated equivalent to -1 (unset).",
"format":"int64",
"type":"integer"
},
"InhibitAnyPolicyZero":{
"description":"InhibitAnyPolicyZero indicates that InhibitAnyPolicy==0 should be\ninterpreted as an actual maximum path length of zero. Otherwise, that\ncombination is interpreted as InhibitAnyPolicy not being set.",
"type":"boolean"
},
"InhibitPolicyMapping":{
"description":"InhibitPolicyMapping and InhibitPolicyMappingZero indicate the presence\nand value of the inhibitPolicyMapping field of the policyConstraints\nextension.\n\nThe value of InhibitPolicyMapping indicates the number of additional\ncertificates in the path after this certificate that may use policy\nmapping.\n\nWhen parsing a certificate, a positive non-zero InhibitPolicyMapping\nmeans that the field was specified, -1 means it was unset, and\nInhibitPolicyMappingZero being true mean that the field was explicitly\nset to zero. The case of InhibitPolicyMapping==0 with\nInhibitPolicyMappingZero==false should be treated equivalent to -1\n(unset).",
"format":"int64",
"type":"integer"
},
"InhibitPolicyMappingZero":{
"description":"InhibitPolicyMappingZero indicates that InhibitPolicyMapping==0 should be\ninterpreted as an actual maximum path length of zero. Otherwise, that\ncombination is interpreted as InhibitAnyPolicy not being set.",
"type":"boolean"
},
"IsCA":{
"type":"boolean"
},
@ -3740,19 +3758,26 @@
"type":"array"
},
"Policies":{
"description":"Policies contains all policy identifiers included in the certificate.\nIn Go 1.22, encoding/gob cannot handle and ignores this field.",
"description":"Policies contains all policy identifiers included in the certificate.\nSee CreateCertificate for context about how this field and the PolicyIdentifiers field\ninteract.\nIn Go 1.22, encoding/gob cannot handle and ignores this field.",
"items":{
"type":"string"
},
"type":"array"
},
"PolicyIdentifiers":{
"description":"PolicyIdentifiers contains asn1.ObjectIdentifiers, the components\nof which are limited to int32. If a certificate contains a policy which\ncannot be represented by asn1.ObjectIdentifier, it will not be included in\nPolicyIdentifiers, but will be present in Policies, which contains all parsed\npolicy OIDs.",
"description":"PolicyIdentifiers contains asn1.ObjectIdentifiers, the components\nof which are limited to int32. If a certificate contains a policy which\ncannot be represented by asn1.ObjectIdentifier, it will not be included in\nPolicyIdentifiers, but will be present in Policies, which contains all parsed\npolicy OIDs.\nSee CreateCertificate for context about how this field and the Policies field\ninteract.",
"items":{
"$ref":"#/components/schemas/ObjectIdentifier"
},
"type":"array"
},
"PolicyMappings":{
"description":"PolicyMappings contains a list of policy mappings included in the certificate.",
"items":{
"$ref":"#/components/schemas/PolicyMapping"
},
"type":"array"
},
"PublicKey":{},
"PublicKeyAlgorithm":{
"$ref":"#/components/schemas/PublicKeyAlgorithm"
@ -3792,6 +3817,15 @@
},
"type":"array"
},
"RequireExplicitPolicy":{
"description":"RequireExplicitPolicy and RequireExplicitPolicyZero indicate the presence\nand value of the requireExplicitPolicy field of the policyConstraints\nextension.\n\nThe value of RequireExplicitPolicy indicates the number of additional\ncertificates in the path after this certificate before an explicit policy\nis required for the rest of the path. When an explicit policy is required,\neach subsequent certificate in the path must contain a required policy OID,\nor a policy OID which has been declared as equivalent through the policy\nmapping extension.\n\nWhen parsing a certificate, a positive non-zero RequireExplicitPolicy\nmeans that the field was specified, -1 means it was unset, and\nRequireExplicitPolicyZero being true mean that the field was explicitly\nset to zero. The case of RequireExplicitPolicy==0 with\nRequireExplicitPolicyZero==false should be treated equivalent to -1\n(unset).",
"format":"int64",
"type":"integer"
},
"RequireExplicitPolicyZero":{
"description":"RequireExplicitPolicyZero indicates that RequireExplicitPolicy==0 should be\ninterpreted as an actual maximum path length of zero. Otherwise, that\ncombination is interpreted as InhibitAnyPolicy not being set.",
"type":"boolean"
},
"SerialNumber":{
"type":"string"
},
@ -8179,6 +8213,20 @@
},
"type":"array"
},
"PolicyMapping":{
"properties":{
"IssuerDomainPolicy":{
"description":"IssuerDomainPolicy contains a policy OID the issuing certificate considers\nequivalent to SubjectDomainPolicy in the subject certificate.",
"type":"string"
},
"SubjectDomainPolicy":{
"description":"SubjectDomainPolicy contains a OID the issuing certificate considers\nequivalent to IssuerDomainPolicy in the subject certificate.",
"type":"string"
}
},
"title":"PolicyMapping represents a policy mapping entry in the policyMappings extension.",