Class: Google::Apis::ManagedidentitiesV1::TrustProp
- Inherits:
-
Object
- Object
- Google::Apis::ManagedidentitiesV1::TrustProp
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/managedidentities_v1/classes.rb,
lib/google/apis/managedidentities_v1/representations.rb,
lib/google/apis/managedidentities_v1/representations.rb
Overview
Represents a relationship between two domains. This allows a controller in one domain to authenticate a user in another domain. If the trust is being changed, it will be placed into the UPDATING state, which indicates that the resource is being reconciled. At this point, Get will reflect an intermediate state.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#last_trust_heartbeat_time ⇒ String
Output only.
-
#selective_authentication ⇒ Boolean
(also: #selective_authentication?)
Optional.
-
#state ⇒ String
Output only.
-
#state_description ⇒ String
Output only.
-
#target_dns_ip_addresses ⇒ Array<String>
Required.
-
#target_domain_name ⇒ String
Required.
-
#trust_direction ⇒ String
Required.
-
#trust_handshake_secret ⇒ String
Required.
-
#trust_type ⇒ String
Required.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TrustProp
constructor
A new instance of TrustProp.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TrustProp
Returns a new instance of TrustProp.
2433 2434 2435 |
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 2433 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. The time the instance was created.
Corresponds to the JSON property createTime
2373 2374 2375 |
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 2373 def create_time @create_time end |
#last_trust_heartbeat_time ⇒ String
Output only. The last heartbeat time when the trust was known to be connected.
Corresponds to the JSON property lastTrustHeartbeatTime
2378 2379 2380 |
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 2378 def last_trust_heartbeat_time @last_trust_heartbeat_time end |
#selective_authentication ⇒ Boolean Also known as: selective_authentication?
Optional. The trust authentication type, which decides whether the trusted
side has forest/domain wide access or selective access to an approved set of
resources.
Corresponds to the JSON property selectiveAuthentication
2385 2386 2387 |
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 2385 def selective_authentication @selective_authentication end |
#state ⇒ String
Output only. The current state of the trust.
Corresponds to the JSON property state
2391 2392 2393 |
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 2391 def state @state end |
#state_description ⇒ String
Output only. Additional information about the current state of the trust, if
available.
Corresponds to the JSON property stateDescription
2397 2398 2399 |
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 2397 def state_description @state_description end |
#target_dns_ip_addresses ⇒ Array<String>
Required. The target DNS server IP addresses which can resolve the remote
domain involved in the trust.
Corresponds to the JSON property targetDnsIpAddresses
2403 2404 2405 |
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 2403 def target_dns_ip_addresses @target_dns_ip_addresses end |
#target_domain_name ⇒ String
Required. The fully qualified target domain name which will be in trust with
the current domain.
Corresponds to the JSON property targetDomainName
2409 2410 2411 |
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 2409 def target_domain_name @target_domain_name end |
#trust_direction ⇒ String
Required. The trust direction, which decides if the current domain is trusted,
trusting, or both.
Corresponds to the JSON property trustDirection
2415 2416 2417 |
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 2415 def trust_direction @trust_direction end |
#trust_handshake_secret ⇒ String
Required. The trust secret used for the handshake with the target domain. This
will not be stored.
Corresponds to the JSON property trustHandshakeSecret
2421 2422 2423 |
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 2421 def trust_handshake_secret @trust_handshake_secret end |
#trust_type ⇒ String
Required. The type of trust represented by the trust resource.
Corresponds to the JSON property trustType
2426 2427 2428 |
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 2426 def trust_type @trust_type end |
#update_time ⇒ String
Output only. The last update time.
Corresponds to the JSON property updateTime
2431 2432 2433 |
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 2431 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 |
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 2438 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @last_trust_heartbeat_time = args[:last_trust_heartbeat_time] if args.key?(:last_trust_heartbeat_time) @selective_authentication = args[:selective_authentication] if args.key?(:selective_authentication) @state = args[:state] if args.key?(:state) @state_description = args[:state_description] if args.key?(:state_description) @target_dns_ip_addresses = args[:target_dns_ip_addresses] if args.key?(:target_dns_ip_addresses) @target_domain_name = args[:target_domain_name] if args.key?(:target_domain_name) @trust_direction = args[:trust_direction] if args.key?(:trust_direction) @trust_handshake_secret = args[:trust_handshake_secret] if args.key?(:trust_handshake_secret) @trust_type = args[:trust_type] if args.key?(:trust_type) @update_time = args[:update_time] if args.key?(:update_time) end |