Send feedback
Method: googleapis.secretmanager.v1.projects.secrets.create
Stay organized with collections
Save and categorize content based on your preferences.
Creates a new Secret containing no SecretVersions.
Arguments
Parameters
parent
string
Required. The resource name of the project to associate with the Secret, in the format projects/*
.
secretId
string
Required. This must be unique within the project. A secret ID is a string with a maximum length of 255 characters and can contain uppercase and lowercase letters, numerals, and the hyphen (-
) and underscore (_
) characters.
body
object (Secret )
Required.
Raised exceptions
Exceptions
ConnectionError
In case of a network problem (such as DNS failure or refused connection).
HttpError
If the response status is >= 400 (excluding 429 and 503).
TimeoutError
If a long-running operation takes longer to finish than the specified timeout limit.
TypeError
If an operation or function receives an argument of the wrong type.
ValueError
If an operation or function receives an argument of the right type but an inappropriate value. For example, a negative timeout.
Response
If successful, the response contains an instance of Secret
.
Subworkflow snippet
Some fields might be optional or required.
To identify required fields, refer to the API documentation .
YAML
- create :
call : googleapis.secretmanager.v1.projects.secrets.create
args :
parent : ...
secretId : ...
body :
etag : ...
expireTime : ...
labels : ...
replication :
automatic :
customerManagedEncryption :
kmsKeyName : ...
userManaged :
replicas : ...
rotation :
nextRotationTime : ...
rotationPeriod : ...
topics : ...
ttl : ...
result : createResult
JSON
[
{
"create" : {
"call" : "googleapis.secretmanager.v1.projects.secrets.create" ,
"args" : {
"parent" : "..." ,
"secretId" : "..." ,
"body" : {
"etag" : "..." ,
"expireTime" : "..." ,
"labels" : "..." ,
"replication" : {
"automatic" : {
"customerManagedEncryption" : {
"kmsKeyName" : "..."
}
},
"userManaged" : {
"replicas" : "..."
}
},
"rotation" : {
"nextRotationTime" : "..." ,
"rotationPeriod" : "..."
},
"topics" : "..." ,
"ttl" : "..."
}
},
"result" : "createResult"
}
}
]
Send feedback
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-09-04 UTC.
Need to tell us more?
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-09-04 UTC."],[],[],null,["# Method: googleapis.secretmanager.v1.projects.secrets.create\n\nCreates a new Secret containing no SecretVersions.\n\nArguments\n---------\n\nRaised exceptions\n-----------------\n\nResponse\n--------\n\nIf successful, the response contains an instance of [`Secret`](/workflows/docs/reference/googleapis/secretmanager/v1/Overview#Secret).\n\nSubworkflow snippet\n-------------------\n\nSome fields might be optional or required.\nTo identify required fields, refer to the [API documentation](https://cloud.google.com/secret-manager/docs/reference/rest/v1/projects.secrets/create). \n\n### YAML\n\n```yaml\n- create:\n call: googleapis.secretmanager.v1.projects.secrets.create\n args:\n parent: ...\n secretId: ...\n body:\n etag: ...\n expireTime: ...\n labels: ...\n replication:\n automatic:\n customerManagedEncryption:\n kmsKeyName: ...\n userManaged:\n replicas: ...\n rotation:\n nextRotationTime: ...\n rotationPeriod: ...\n topics: ...\n ttl: ...\n result: createResult\n```\n\n### JSON\n\n```json\n[\n {\n \"create\": {\n \"call\": \"googleapis.secretmanager.v1.projects.secrets.create\",\n \"args\": {\n \"parent\": \"...\",\n \"secretId\": \"...\",\n \"body\": {\n \"etag\": \"...\",\n \"expireTime\": \"...\",\n \"labels\": \"...\",\n \"replication\": {\n \"automatic\": {\n \"customerManagedEncryption\": {\n \"kmsKeyName\": \"...\"\n }\n },\n \"userManaged\": {\n \"replicas\": \"...\"\n }\n },\n \"rotation\": {\n \"nextRotationTime\": \"...\",\n \"rotationPeriod\": \"...\"\n },\n \"topics\": \"...\",\n \"ttl\": \"...\"\n }\n },\n \"result\": \"createResult\"\n }\n }\n]\n```"]]