class Google::Apis::ManagedidentitiesV1alpha1::Domain
If the domain 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.
Attributes
Optional. Configuration for audit logs. True if audit logs are enabled, else false. Default is audit logs disabled. Corresponds to the JSON property `auditLogsEnabled` @return [Boolean]
Optional. Configuration for audit logs. True if audit logs are enabled, else false. Default is audit logs disabled. Corresponds to the JSON property `auditLogsEnabled` @return [Boolean]
Output only. The time the instance was created. Synthetic field is populated automatically by CCFE. go/ccfe-synthetic-field-user-guide Corresponds to the JSON property `createTime` @return [String]
Output only. Fully-qualified domain name of the exposed domain used by clients to connect to the service. Similar to what would be chosen for an Active Directory that is set up on an internal network. Corresponds to the JSON property `fqdn` @return [String]
Optional. Resource labels to represent user provided metadata Corresponds to the JSON property `labels` @return [Hash<String,String>]
Required. Locations where domain needs to be provisioned. regions e.g. us- west1 or us-east4 Service supports up to 4 locations at once. Each location will use a /26 block. Corresponds to the JSON property `locations` @return [Array<String>]
Optional. Name of customer-visible admin used to perform Active Directory operations. If not specified `setupadmin` would be used. Corresponds to the JSON property `managedIdentitiesAdminName` @return [String]
Output only. Unique name of the domain in this scope including projects and location using the form: `projects/`project_id`/locations/global/domains/` domain_name“. Corresponds to the JSON property `name` @return [String]
Required. The CIDR range of internal addresses that are reserved for this domain. Reserved networks must be /24 or larger. Ranges must be unique and non- overlapping with existing subnets in [Domain].. Corresponds to the JSON property `reservedIpRange` @return [String]
Output only. The current state of this domain. Corresponds to the JSON property `state` @return [String]
Output only. Additional information about the current status of this domain, if available. Corresponds to the JSON property `statusMessage` @return [String]
Output only. The current trusts associated with the domain. Corresponds to the JSON property `trusts` @return [Array<Google::Apis::ManagedidentitiesV1alpha1::TrustProp>]
Output only. Last update time. Synthetic field is populated automatically by CCFE. Corresponds to the JSON property `updateTime` @return [String]
Public Class Methods
# File lib/google/apis/managedidentities_v1alpha1/classes.rb, line 405 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/managedidentities_v1alpha1/classes.rb, line 410 def update!(**args) @audit_logs_enabled = args[:audit_logs_enabled] if args.key?(:audit_logs_enabled) @authorized_networks = args[:authorized_networks] if args.key?(:authorized_networks) @create_time = args[:create_time] if args.key?(:create_time) @fqdn = args[:fqdn] if args.key?(:fqdn) @labels = args[:labels] if args.key?(:labels) @locations = args[:locations] if args.key?(:locations) @managed_identities_admin_name = args[:managed_identities_admin_name] if args.key?(:managed_identities_admin_name) @name = args[:name] if args.key?(:name) @reserved_ip_range = args[:reserved_ip_range] if args.key?(:reserved_ip_range) @state = args[:state] if args.key?(:state) @status_message = args[:status_message] if args.key?(:status_message) @trusts = args[:trusts] if args.key?(:trusts) @update_time = args[:update_time] if args.key?(:update_time) end