class Google::Apis::ApikeysV2::V2CloneKeyRequest
Request message for `CloneKey` method.
Attributes
key_id[RW]
User specified key id (optional). If specified, it will become the final component of the key resource name. The id must be unique within the project, must conform with RFC-1034, is restricted to lower-cased letters, and has a maximum length of 63 characters. In another word, the id must match the regular expression: `[a-z](`0,61`)?`. The id must NOT be a UUID-like string. Corresponds to the JSON property `keyId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/apikeys_v2/classes.rb, line 239 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/apikeys_v2/classes.rb, line 244 def update!(**args) @key_id = args[:key_id] if args.key?(:key_id) end