google-apis-admin_directory_v1 0.11.0 → 0.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9c21aff845fb75e04759f8b7e2bc035c99fe1979e89446b18bb1ed79cf4f4041
4
- data.tar.gz: 4d1e084cce6884aac535ce88d7d0841e3fd1683e401f7bb60cde106f568a7d70
3
+ metadata.gz: f7bc97214cf5c517f72bab59d0c6dba298243ccc2f1301c36c1bd0f42c138c31
4
+ data.tar.gz: e2668c42c8a86a3724c7afe28a1139f853a0ed1a6acea85c3cc0e7d9501e33cd
5
5
  SHA512:
6
- metadata.gz: b3a247a8065b25c0c702e72f8437f4ec8f28659c77f0695f7639a8eae9065b072c9976fead69a426fb175eb5f0b9838f02ef224241d3a440ee75d311232f8e52
7
- data.tar.gz: d4ba5d86ff541c9087f0194b79d05fd59f1db9a35472a7395f78729826cccc44d2e9337bcc5f60819e3557ad80559c3c86581fe5ae0f4d206acc8808f30afd22
6
+ metadata.gz: c035bf4659a652f0ae2dd6ef76a1efcbbe0b898894309220f8e47ab5abfe8d35d293392ecf2af700ac23fed3c6f0738e6ceb672757fee50f644f5a5520d1bf9b
7
+ data.tar.gz: 5d974a756c212a5848b65233c16af5ccd773496eb7f01de32a84ac5726b9bfda9facf5f465e2b9cf8a8a3fe8d865dc65b493a6fdcddc307d8f6ddef61f9f9a82
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-admin_directory_v1
2
2
 
3
+ ### v0.15.0 (2021-09-29)
4
+
5
+ * Regenerated from discovery document revision 20210928
6
+
7
+ ### v0.14.0 (2021-08-18)
8
+
9
+ * Regenerated from discovery document revision 20210817
10
+
11
+ ### v0.13.0 (2021-07-21)
12
+
13
+ * Regenerated from discovery document revision 20210720
14
+
15
+ ### v0.12.0 (2021-06-29)
16
+
17
+ * Regenerated using generator version 0.4.0
18
+
3
19
  ### v0.11.0 (2021-06-24)
4
20
 
5
21
  * Regenerated from discovery document revision 20210622
data/OVERVIEW.md CHANGED
@@ -79,7 +79,7 @@ Gem names for modern clients are often of the form `google-cloud-<service_name>`
79
79
 
80
80
  **For most users, we recommend the modern client, if one is available.** Compared with simple clients, modern clients are generally much easier to use and more Ruby-like, support more advanced features such as streaming and long-running operations, and often provide much better performance. You may consider using a simple client instead, if a modern client is not yet available for the service you want to use, or if you are not able to use gRPC on your infrastructure.
81
81
 
82
- The [product documentation](http://developers.google.com/admin-sdk/) may provide guidance regarding the preferred client library to use.
82
+ The [product documentation](https://developers.google.com/admin-sdk/) may provide guidance regarding the preferred client library to use.
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
@@ -770,6 +770,11 @@ module Google
770
770
  # @return [String]
771
771
  attr_accessor :boot_mode
772
772
 
773
+ # Information regarding CPU specs in the device.
774
+ # Corresponds to the JSON property `cpuInfo`
775
+ # @return [Array<Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuInfo>]
776
+ attr_accessor :cpu_info
777
+
773
778
  # Reports of CPU utilization and temperature (Read-only)
774
779
  # Corresponds to the JSON property `cpuStatusReports`
775
780
  # @return [Array<Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuStatusReport>]
@@ -969,6 +974,7 @@ module Google
969
974
  @annotated_user = args[:annotated_user] if args.key?(:annotated_user)
970
975
  @auto_update_expiration = args[:auto_update_expiration] if args.key?(:auto_update_expiration)
971
976
  @boot_mode = args[:boot_mode] if args.key?(:boot_mode)
977
+ @cpu_info = args[:cpu_info] if args.key?(:cpu_info)
972
978
  @cpu_status_reports = args[:cpu_status_reports] if args.key?(:cpu_status_reports)
973
979
  @device_files = args[:device_files] if args.key?(:device_files)
974
980
  @device_id = args[:device_id] if args.key?(:device_id)
@@ -1027,6 +1033,107 @@ module Google
1027
1033
  end
1028
1034
  end
1029
1035
 
1036
+ # CPU specs for a CPU.
1037
+ class CpuInfo
1038
+ include Google::Apis::Core::Hashable
1039
+
1040
+ # The CPU architecture.
1041
+ # Corresponds to the JSON property `architecture`
1042
+ # @return [String]
1043
+ attr_accessor :architecture
1044
+
1045
+ # Information for the Logical CPUs
1046
+ # Corresponds to the JSON property `logicalCpus`
1047
+ # @return [Array<Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuInfo::LogicalCpu>]
1048
+ attr_accessor :logical_cpus
1049
+
1050
+ # The max CPU clock speed in kHz.
1051
+ # Corresponds to the JSON property `maxClockSpeedKhz`
1052
+ # @return [Fixnum]
1053
+ attr_accessor :max_clock_speed_khz
1054
+
1055
+ # The CPU model name.
1056
+ # Corresponds to the JSON property `model`
1057
+ # @return [String]
1058
+ attr_accessor :model
1059
+
1060
+ def initialize(**args)
1061
+ update!(**args)
1062
+ end
1063
+
1064
+ # Update properties of this object
1065
+ def update!(**args)
1066
+ @architecture = args[:architecture] if args.key?(:architecture)
1067
+ @logical_cpus = args[:logical_cpus] if args.key?(:logical_cpus)
1068
+ @max_clock_speed_khz = args[:max_clock_speed_khz] if args.key?(:max_clock_speed_khz)
1069
+ @model = args[:model] if args.key?(:model)
1070
+ end
1071
+
1072
+ # Status of a single logical CPU.
1073
+ class LogicalCpu
1074
+ include Google::Apis::Core::Hashable
1075
+
1076
+ # C-States indicate the power consumption state of the CPU. For more information
1077
+ # look at documentation published by the CPU maker.
1078
+ # Corresponds to the JSON property `cStates`
1079
+ # @return [Array<Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuInfo::LogicalCpu::CState>]
1080
+ attr_accessor :c_states
1081
+
1082
+ # Current frequency the CPU is running at.
1083
+ # Corresponds to the JSON property `currentScalingFrequencyKhz`
1084
+ # @return [Fixnum]
1085
+ attr_accessor :current_scaling_frequency_khz
1086
+
1087
+ # Idle time since last boot.
1088
+ # Corresponds to the JSON property `idleDuration`
1089
+ # @return [String]
1090
+ attr_accessor :idle_duration
1091
+
1092
+ # Maximum frequency the CPU is allowed to run at, by policy.
1093
+ # Corresponds to the JSON property `maxScalingFrequencyKhz`
1094
+ # @return [Fixnum]
1095
+ attr_accessor :max_scaling_frequency_khz
1096
+
1097
+ def initialize(**args)
1098
+ update!(**args)
1099
+ end
1100
+
1101
+ # Update properties of this object
1102
+ def update!(**args)
1103
+ @c_states = args[:c_states] if args.key?(:c_states)
1104
+ @current_scaling_frequency_khz = args[:current_scaling_frequency_khz] if args.key?(:current_scaling_frequency_khz)
1105
+ @idle_duration = args[:idle_duration] if args.key?(:idle_duration)
1106
+ @max_scaling_frequency_khz = args[:max_scaling_frequency_khz] if args.key?(:max_scaling_frequency_khz)
1107
+ end
1108
+
1109
+ # Status of a single C-state. C-states are various modes the CPU can transition
1110
+ # to in order to use more or less power.
1111
+ class CState
1112
+ include Google::Apis::Core::Hashable
1113
+
1114
+ # Name of the state.
1115
+ # Corresponds to the JSON property `displayName`
1116
+ # @return [String]
1117
+ attr_accessor :display_name
1118
+
1119
+ # Time spent in the state since the last reboot.
1120
+ # Corresponds to the JSON property `sessionDuration`
1121
+ # @return [String]
1122
+ attr_accessor :session_duration
1123
+
1124
+ def initialize(**args)
1125
+ update!(**args)
1126
+ end
1127
+
1128
+ # Update properties of this object
1129
+ def update!(**args)
1130
+ @display_name = args[:display_name] if args.key?(:display_name)
1131
+ @session_duration = args[:session_duration] if args.key?(:session_duration)
1132
+ end
1133
+ end
1134
+ end
1135
+ end
1136
+
1030
1137
  #
1031
1138
  class CpuStatusReport
1032
1139
  include Google::Apis::Core::Hashable
@@ -3338,7 +3445,8 @@ module Google
3338
3445
  # @return [String]
3339
3446
  attr_accessor :schema_id
3340
3447
 
3341
- # The schema's name.
3448
+ # The schema's name. Each `schema_name` must be unique within a customer.
3449
+ # Reusing a name results in a `409: Entity already exists` error.
3342
3450
  # Corresponds to the JSON property `schemaName`
3343
3451
  # @return [String]
3344
3452
  attr_accessor :schema_name
@@ -3647,7 +3755,8 @@ module Google
3647
3755
  # @return [DateTime]
3648
3756
  attr_accessor :creation_time
3649
3757
 
3650
- # Custom fields of the user.
3758
+ # Custom fields of the user. The key is a `schema_name` and its values are `'
3759
+ # field_name': 'field_value'`.
3651
3760
  # Corresponds to the JSON property `customSchemas`
3652
3761
  # @return [Hash<String,Hash<String,Object>>]
3653
3762
  attr_accessor :custom_schemas
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AdminDirectoryV1
18
18
  # Version of the google-apis-admin_directory_v1 gem
19
- GEM_VERSION = "0.11.0"
19
+ GEM_VERSION = "0.15.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.3.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210622"
25
+ REVISION = "20210928"
26
26
  end
27
27
  end
28
28
  end
@@ -127,6 +127,24 @@ module Google
127
127
  include Google::Apis::Core::JsonObjectSupport
128
128
  end
129
129
 
130
+ class CpuInfo
131
+ class Representation < Google::Apis::Core::JsonRepresentation; end
132
+
133
+ class LogicalCpu
134
+ class Representation < Google::Apis::Core::JsonRepresentation; end
135
+
136
+ class CState
137
+ class Representation < Google::Apis::Core::JsonRepresentation; end
138
+
139
+ include Google::Apis::Core::JsonObjectSupport
140
+ end
141
+
142
+ include Google::Apis::Core::JsonObjectSupport
143
+ end
144
+
145
+ include Google::Apis::Core::JsonObjectSupport
146
+ end
147
+
130
148
  class CpuStatusReport
131
149
  class Representation < Google::Apis::Core::JsonRepresentation; end
132
150
 
@@ -808,6 +826,8 @@ module Google
808
826
  property :annotated_user, as: 'annotatedUser'
809
827
  property :auto_update_expiration, :numeric_string => true, as: 'autoUpdateExpiration'
810
828
  property :boot_mode, as: 'bootMode'
829
+ collection :cpu_info, as: 'cpuInfo', class: Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuInfo, decorator: Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuInfo::Representation
830
+
811
831
  collection :cpu_status_reports, as: 'cpuStatusReports', class: Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuStatusReport, decorator: Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuStatusReport::Representation
812
832
 
813
833
  collection :device_files, as: 'deviceFiles', class: Google::Apis::AdminDirectoryV1::ChromeOsDevice::DeviceFile, decorator: Google::Apis::AdminDirectoryV1::ChromeOsDevice::DeviceFile::Representation
@@ -861,6 +881,36 @@ module Google
861
881
  end
862
882
  end
863
883
 
884
+ class CpuInfo
885
+ # @private
886
+ class Representation < Google::Apis::Core::JsonRepresentation
887
+ property :architecture, as: 'architecture'
888
+ collection :logical_cpus, as: 'logicalCpus', class: Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuInfo::LogicalCpu, decorator: Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuInfo::LogicalCpu::Representation
889
+
890
+ property :max_clock_speed_khz, as: 'maxClockSpeedKhz'
891
+ property :model, as: 'model'
892
+ end
893
+
894
+ class LogicalCpu
895
+ # @private
896
+ class Representation < Google::Apis::Core::JsonRepresentation
897
+ collection :c_states, as: 'cStates', class: Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuInfo::LogicalCpu::CState, decorator: Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuInfo::LogicalCpu::CState::Representation
898
+
899
+ property :current_scaling_frequency_khz, as: 'currentScalingFrequencyKhz'
900
+ property :idle_duration, as: 'idleDuration'
901
+ property :max_scaling_frequency_khz, as: 'maxScalingFrequencyKhz'
902
+ end
903
+
904
+ class CState
905
+ # @private
906
+ class Representation < Google::Apis::Core::JsonRepresentation
907
+ property :display_name, as: 'displayName'
908
+ property :session_duration, as: 'sessionDuration'
909
+ end
910
+ end
911
+ end
912
+ end
913
+
864
914
  class CpuStatusReport
865
915
  # @private
866
916
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -32,7 +32,7 @@ module Google
32
32
  # Admin = Google::Apis::AdminDirectoryV1 # Alias the module
33
33
  # service = Admin::DirectoryService.new
34
34
  #
35
- # @see http://developers.google.com/admin-sdk/
35
+ # @see https://developers.google.com/admin-sdk/
36
36
  class DirectoryService < Google::Apis::Core::BaseService
37
37
  # @return [String]
38
38
  # API key. Your API key identifies your project and provides you with API access,
@@ -51,7 +51,7 @@ module Google
51
51
  @batch_path = 'batch'
52
52
  end
53
53
 
54
- # Delete an ASP issued by a user.
54
+ # Deletes an ASP issued by a user.
55
55
  # @param [String] user_key
56
56
  # Identifies the user in the API request. The value can be the user's primary
57
57
  # email address, alias email address, or unique user ID.
@@ -83,7 +83,7 @@ module Google
83
83
  execute_or_queue_command(command, &block)
84
84
  end
85
85
 
86
- # Get information about an ASP issued by a user.
86
+ # Gets information about an ASP issued by a user.
87
87
  # @param [String] user_key
88
88
  # Identifies the user in the API request. The value can be the user's primary
89
89
  # email address, alias email address, or unique user ID.
@@ -117,7 +117,7 @@ module Google
117
117
  execute_or_queue_command(command, &block)
118
118
  end
119
119
 
120
- # List the ASPs issued by a user.
120
+ # Lists the ASPs issued by a user.
121
121
  # @param [String] user_key
122
122
  # Identifies the user in the API request. The value can be the user's primary
123
123
  # email address, alias email address, or unique user ID.
@@ -148,7 +148,7 @@ module Google
148
148
  execute_or_queue_command(command, &block)
149
149
  end
150
150
 
151
- # Stop watching resources through this channel.
151
+ # Stops watching resources through this channel.
152
152
  # @param [Google::Apis::AdminDirectoryV1::Channel] channel_object
153
153
  # @param [String] fields
154
154
  # Selector specifying which fields to include in a partial response.
@@ -323,7 +323,7 @@ module Google
323
323
  execute_or_queue_command(command, &block)
324
324
  end
325
325
 
326
- # Move or insert multiple Chrome OS devices to an organizational unit. You can
326
+ # Moves or inserts multiple Chrome OS devices to an organizational unit. You can
327
327
  # move up to 50 devices at once.
328
328
  # @param [String] customer_id
329
329
  # Immutable ID of the Google Workspace account
@@ -551,7 +551,7 @@ module Google
551
551
  execute_or_queue_command(command, &block)
552
552
  end
553
553
 
554
- # Patch Customers via Apiary Patch Orchestration
554
+ # Patches a customer.
555
555
  # @param [String] customer_key
556
556
  # Id of the customer to be updated
557
557
  # @param [Google::Apis::AdminDirectoryV1::Customer] customer_object
@@ -1259,7 +1259,7 @@ module Google
1259
1259
  execute_or_queue_command(command, &block)
1260
1260
  end
1261
1261
 
1262
- # Retrieve all groups of a domain or of a user given a userKey (paginated)
1262
+ # Retrieves all groups of a domain or of a user given a userKey (paginated).
1263
1263
  # @param [String] customer
1264
1264
  # The unique ID for the customer's Google Workspace account. In case of a multi-
1265
1265
  # domain account, to fetch all groups for a customer, fill this field instead of
@@ -2312,7 +2312,7 @@ module Google
2312
2312
  execute_or_queue_command(command, &block)
2313
2313
  end
2314
2314
 
2315
- # Patches a building via Apiary Patch Orchestration.
2315
+ # Patches a building.
2316
2316
  # @param [String] customer
2317
2317
  # The unique ID for the customer's Google Workspace account. As an account
2318
2318
  # administrator, you can also use the `my_customer` alias to represent your
@@ -2554,7 +2554,7 @@ module Google
2554
2554
  execute_or_queue_command(command, &block)
2555
2555
  end
2556
2556
 
2557
- # Patches a calendar resource via Apiary Patch Orchestration.
2557
+ # Patches a calendar resource.
2558
2558
  # @param [String] customer
2559
2559
  # The unique ID for the customer's Google Workspace account. As an account
2560
2560
  # administrator, you can also use the `my_customer` alias to represent your
@@ -2773,7 +2773,7 @@ module Google
2773
2773
  execute_or_queue_command(command, &block)
2774
2774
  end
2775
2775
 
2776
- # Patches a feature via Apiary Patch Orchestration.
2776
+ # Patches a feature.
2777
2777
  # @param [String] customer
2778
2778
  # The unique ID for the customer's Google Workspace account. As an account
2779
2779
  # administrator, you can also use the `my_customer` alias to represent your
@@ -2916,7 +2916,7 @@ module Google
2916
2916
  execute_or_queue_command(command, &block)
2917
2917
  end
2918
2918
 
2919
- # Retrieve a role assignment.
2919
+ # Retrieves a role assignment.
2920
2920
  # @param [String] customer
2921
2921
  # Immutable ID of the Google Workspace account.
2922
2922
  # @param [String] role_assignment_id
@@ -3159,7 +3159,7 @@ module Google
3159
3159
  execute_or_queue_command(command, &block)
3160
3160
  end
3161
3161
 
3162
- # Patch role via Apiary Patch Orchestration
3162
+ # Patches a role.
3163
3163
  # @param [String] customer
3164
3164
  # Immutable ID of the Google Workspace account.
3165
3165
  # @param [String] role_id
@@ -3231,7 +3231,7 @@ module Google
3231
3231
  execute_or_queue_command(command, &block)
3232
3232
  end
3233
3233
 
3234
- # Delete schema
3234
+ # Deletes a schema.
3235
3235
  # @param [String] customer_id
3236
3236
  # Immutable ID of the Google Workspace account.
3237
3237
  # @param [String] schema_key
@@ -3262,7 +3262,7 @@ module Google
3262
3262
  execute_or_queue_command(command, &block)
3263
3263
  end
3264
3264
 
3265
- # Retrieve schema
3265
+ # Retrieves a schema.
3266
3266
  # @param [String] customer_id
3267
3267
  # Immutable ID of the Google Workspace account.
3268
3268
  # @param [String] schema_key
@@ -3295,7 +3295,7 @@ module Google
3295
3295
  execute_or_queue_command(command, &block)
3296
3296
  end
3297
3297
 
3298
- # Create schema.
3298
+ # Creates a schema.
3299
3299
  # @param [String] customer_id
3300
3300
  # Immutable ID of the Google Workspace account.
3301
3301
  # @param [Google::Apis::AdminDirectoryV1::Schema] schema_object
@@ -3328,7 +3328,7 @@ module Google
3328
3328
  execute_or_queue_command(command, &block)
3329
3329
  end
3330
3330
 
3331
- # Retrieve all schemas for a customer
3331
+ # Retrieves all schemas for a customer.
3332
3332
  # @param [String] customer_id
3333
3333
  # Immutable ID of the Google Workspace account.
3334
3334
  # @param [String] fields
@@ -3358,7 +3358,7 @@ module Google
3358
3358
  execute_or_queue_command(command, &block)
3359
3359
  end
3360
3360
 
3361
- # Patch Schema via Apiary Patch Orchestration
3361
+ # Patches a schema.
3362
3362
  # @param [String] customer_id
3363
3363
  # Immutable ID of the Google Workspace account.
3364
3364
  # @param [String] schema_key
@@ -3394,7 +3394,7 @@ module Google
3394
3394
  execute_or_queue_command(command, &block)
3395
3395
  end
3396
3396
 
3397
- # Update schema
3397
+ # Updates a schema.
3398
3398
  # @param [String] customer_id
3399
3399
  # Immutable ID of the Google Workspace account.
3400
3400
  # @param [String] schema_key
@@ -3430,7 +3430,7 @@ module Google
3430
3430
  execute_or_queue_command(command, &block)
3431
3431
  end
3432
3432
 
3433
- # Delete all access tokens issued by a user for an application.
3433
+ # Deletes all access tokens issued by a user for an application.
3434
3434
  # @param [String] user_key
3435
3435
  # Identifies the user in the API request. The value can be the user's primary
3436
3436
  # email address, alias email address, or unique user ID.
@@ -3462,7 +3462,7 @@ module Google
3462
3462
  execute_or_queue_command(command, &block)
3463
3463
  end
3464
3464
 
3465
- # Get information about an access token issued by a user.
3465
+ # Gets information about an access token issued by a user.
3466
3466
  # @param [String] user_key
3467
3467
  # Identifies the user in the API request. The value can be the user's primary
3468
3468
  # email address, alias email address, or unique user ID.
@@ -3527,7 +3527,7 @@ module Google
3527
3527
  execute_or_queue_command(command, &block)
3528
3528
  end
3529
3529
 
3530
- # Turn off 2-Step Verification for user.
3530
+ # Turns off 2-Step Verification for user.
3531
3531
  # @param [String] user_key
3532
3532
  # Identifies the user in the API request. The value can be the user's primary
3533
3533
  # email address, alias email address, or unique user ID.
@@ -3802,8 +3802,8 @@ module Google
3802
3802
  execute_or_queue_command(command, &block)
3803
3803
  end
3804
3804
 
3805
- # Sign a user out of all web and device sessions and reset their sign-in cookies.
3806
- # User will have to sign in by authenticating again.
3805
+ # Signs a user out of all web and device sessions and reset their sign-in
3806
+ # cookies. User will have to sign in by authenticating again.
3807
3807
  # @param [String] user_key
3808
3808
  # Identifies the target user in the API request. The value can be the user's
3809
3809
  # primary email address, alias email address, or unique user ID.
@@ -3899,7 +3899,7 @@ module Google
3899
3899
  execute_or_queue_command(command, &block)
3900
3900
  end
3901
3901
 
3902
- # Watch for changes in users list
3902
+ # Watches for changes in users list.
3903
3903
  # @param [Google::Apis::AdminDirectoryV1::Channel] channel_object
3904
3904
  # @param [String] custom_field_mask
3905
3905
  # Comma-separated list of schema names. All fields from these schemas are
@@ -4071,7 +4071,7 @@ module Google
4071
4071
  execute_or_queue_command(command, &block)
4072
4072
  end
4073
4073
 
4074
- # Watch for changes in users list.
4074
+ # Watches for changes in users list.
4075
4075
  # @param [String] user_key
4076
4076
  # Email or immutable ID of the user
4077
4077
  # @param [Google::Apis::AdminDirectoryV1::Channel] channel_object
@@ -4236,7 +4236,7 @@ module Google
4236
4236
  execute_or_queue_command(command, &block)
4237
4237
  end
4238
4238
 
4239
- # Generate new backup verification codes for the user.
4239
+ # Generates new backup verification codes for the user.
4240
4240
  # @param [String] user_key
4241
4241
  # Email or immutable ID of the user
4242
4242
  # @param [String] fields
@@ -4264,7 +4264,7 @@ module Google
4264
4264
  execute_or_queue_command(command, &block)
4265
4265
  end
4266
4266
 
4267
- # Invalidate the current backup verification codes for the user.
4267
+ # Invalidates the current backup verification codes for the user.
4268
4268
  # @param [String] user_key
4269
4269
  # Email or immutable ID of the user
4270
4270
  # @param [String] fields
@@ -25,7 +25,7 @@ module Google
25
25
  # resources like user, groups etc. It also provides audit and usage reports of
26
26
  # domain.
27
27
  #
28
- # @see http://developers.google.com/admin-sdk/
28
+ # @see https://developers.google.com/admin-sdk/
29
29
  module AdminDirectoryV1
30
30
  # Version of the Admin SDK API this client connects to.
31
31
  # This is NOT the gem version.
@@ -115,7 +115,7 @@ module Google
115
115
  # View user schemas on your domain
116
116
  AUTH_ADMIN_DIRECTORY_USERSCHEMA_READONLY = 'https://www.googleapis.com/auth/admin.directory.userschema.readonly'
117
117
 
118
- # See, edit, configure, and delete your Google Cloud Platform data
118
+ # See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
119
119
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
120
120
  end
121
121
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-admin_directory_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.15.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-28 00:00:00.000000000 Z
11
+ date: 2021-10-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.3'
19
+ version: '0.4'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.3'
29
+ version: '0.4'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-admin_directory_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-admin_directory_v1/v0.11.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-admin_directory_v1/v0.15.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-admin_directory_v1
63
63
  post_install_message:
64
64
  rdoc_options: []