Sha256: c94058367893d883c06b3771b7c606ccd1565601bc3238268c493c31bdbbaa21
Contents?: true
Size: 962 Bytes
Versions: 1
Compression:
Stored size: 962 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module OpenApiSDK module Shared # A request to store publishing secrets for a github target class GithubStorePublishingSecretsRequest < ::OpenApiSDK::Utils::FieldAugmented extend T::Sig # The generation lock ID field :generate_gen_lock_id, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('generate_gen_lock_id') } } # A map of secrets to store in the GitHub target field :secrets, T.nilable(T::Hash[Symbol, ::String]), { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('secrets') } } sig { params(generate_gen_lock_id: ::String, secrets: T.nilable(T::Hash[Symbol, ::String])).void } def initialize(generate_gen_lock_id: nil, secrets: nil) @generate_gen_lock_id = generate_gen_lock_id @secrets = secrets end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
speakeasy_client_sdk_ruby-4.2.24 | lib/open_api_sdk/models/shared/githubstorepublishingsecretsrequest.rb |