Class: Google::Apis::AdminDirectoryV1::TrustedAppId

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

Overview

JSON template for Trusted App Ids Resource object in Directory API.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TrustedAppId

Returns a new instance of TrustedAppId.



3092
3093
3094
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3092

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

Instance Attribute Details

#android_package_nameString

Android package name. Corresponds to the JSON property androidPackageName

Returns:

  • (String)


3070
3071
3072
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3070

def android_package_name
  @android_package_name
end

#certificate_hash_sha1String

SHA1 signature of the app certificate. Corresponds to the JSON property certificateHashSHA1

Returns:

  • (String)


3075
3076
3077
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3075

def certificate_hash_sha1
  @certificate_hash_sha1
end

#certificate_hash_sha256String

SHA256 signature of the app certificate. Corresponds to the JSON property certificateHashSHA256

Returns:

  • (String)


3080
3081
3082
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3080

def certificate_hash_sha256
  @certificate_hash_sha256
end

#etagString

Corresponds to the JSON property etag

Returns:

  • (String)


3085
3086
3087
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3085

def etag
  @etag
end

#kindString

Identifies the resource as a trusted AppId. Corresponds to the JSON property kind

Returns:

  • (String)


3090
3091
3092
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3090

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3097
3098
3099
3100
3101
3102
3103
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3097

def update!(**args)
  @android_package_name = args[:android_package_name] if args.key?(:android_package_name)
  @certificate_hash_sha1 = args[:certificate_hash_sha1] if args.key?(:certificate_hash_sha1)
  @certificate_hash_sha256 = args[:certificate_hash_sha256] if args.key?(:certificate_hash_sha256)
  @etag = args[:etag] if args.key?(:etag)
  @kind = args[:kind] if args.key?(:kind)
end