Class: Google::Apis::HealthcareV1beta1::Consent

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

Overview

Represents an end user's consent.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Consent

Returns a new instance of Consent.



720
721
722
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 720

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

Instance Attribute Details

Required. The resource name of the consent artifact that contains proof of the end user's consent, of the form projects/project_id/locations/location_id/ datasets/dataset_id/consentStores/consent_store_id/consentArtifacts/ consent_artifact_id`. Corresponds to the JSON propertyconsentArtifact`

Returns:

  • (String)


661
662
663
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 661

def consent_artifact
  @consent_artifact
end

#expire_timeString

Timestamp in UTC of when this consent is considered expired. Corresponds to the JSON property expireTime

Returns:

  • (String)


666
667
668
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 666

def expire_time
  @expire_time
end

#metadataHash<String,String>

User-supplied key-value pairs used to organize consent resources. Metadata keys must: - be between 1 and 63 characters long - have a UTF-8 encoding of maximum 128 bytes - begin with a letter - consist of up to 63 characters including lowercase letters, numeric characters, underscores, and dashes Metadata values must be: - be between 1 and 63 characters long - have a UTF-8 encoding of maximum 128 bytes - consist of up to 63 characters including lowercase letters, numeric characters, underscores, and dashes No more than 64 metadata entries can be associated with a given consent. Corresponds to the JSON property metadata

Returns:

  • (Hash<String,String>)


678
679
680
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 678

def 
  @metadata
end

#nameString

Resource name of the Consent, of the form projects/project_id/locations/ location_id/datasets/dataset_id/consentStores/consent_store_id/consents/ consent_id`. Corresponds to the JSON propertyname`

Returns:

  • (String)


685
686
687
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 685

def name
  @name
end

#policiesArray<Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1ConsentPolicy>

Represents an end user's consent in terms of the resources that can be accessed and under what conditions. Corresponds to the JSON property policies



691
692
693
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 691

def policies
  @policies
end

#revision_create_timeString

Output only. The timestamp that the revision was created. Corresponds to the JSON property revisionCreateTime

Returns:

  • (String)


696
697
698
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 696

def revision_create_time
  @revision_create_time
end

#revision_idString

Output only. The revision ID of the consent. The format is an 8-character hexadecimal string. Refer to a specific revision of a Consent by appending @ revision_id`to the Consent's resource name. Corresponds to the JSON propertyrevisionId`

Returns:

  • (String)


703
704
705
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 703

def revision_id
  @revision_id
end

#stateString

Indicates the current state of this consent. Corresponds to the JSON property state

Returns:

  • (String)


708
709
710
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 708

def state
  @state
end

#ttlString

Input only. The time to live for this consent from when it is created. Corresponds to the JSON property ttl

Returns:

  • (String)


713
714
715
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 713

def ttl
  @ttl
end

#user_idString

Required. User's UUID provided by the client. Corresponds to the JSON property userId

Returns:

  • (String)


718
719
720
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 718

def user_id
  @user_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



725
726
727
728
729
730
731
732
733
734
735
736
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 725

def update!(**args)
  @consent_artifact = args[:consent_artifact] if args.key?(:consent_artifact)
  @expire_time = args[:expire_time] if args.key?(:expire_time)
  @metadata = args[:metadata] if args.key?(:metadata)
  @name = args[:name] if args.key?(:name)
  @policies = args[:policies] if args.key?(:policies)
  @revision_create_time = args[:revision_create_time] if args.key?(:revision_create_time)
  @revision_id = args[:revision_id] if args.key?(:revision_id)
  @state = args[:state] if args.key?(:state)
  @ttl = args[:ttl] if args.key?(:ttl)
  @user_id = args[:user_id] if args.key?(:user_id)
end