Class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/beyondcorp_v1alpha/classes.rb,
lib/google/apis/beyondcorp_v1alpha/representations.rb,
lib/google/apis/beyondcorp_v1alpha/representations.rb

Overview

Message contains the JWT encryption information for the proxy server.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfo

Returns a new instance of GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfo.



2138
2139
2140
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2138

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#encryption_sa_emailString

Optional. Service Account for encryption key. Corresponds to the JSON property encryptionSaEmail

Returns:

  • (String)


2131
2132
2133
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2131

def encryption_sa_email
  @encryption_sa_email
end

#jwkString

Optional. JWK in string. Corresponds to the JSON property jwk

Returns:

  • (String)


2136
2137
2138
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2136

def jwk
  @jwk
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2143
2144
2145
2146
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2143

def update!(**args)
  @encryption_sa_email = args[:encryption_sa_email] if args.key?(:encryption_sa_email)
  @jwk = args[:jwk] if args.key?(:jwk)
end