| OLD | NEW |
| 1 // This is a generated file (see the discoveryapis_generator project). | 1 // This is a generated file (see the discoveryapis_generator project). |
| 2 | 2 |
| 3 library googleapis_beta.oslogin.v1alpha; | 3 library googleapis_beta.oslogin.v1alpha; |
| 4 | 4 |
| 5 import 'dart:core' as core; | 5 import 'dart:core' as core; |
| 6 import 'dart:async' as async; | 6 import 'dart:async' as async; |
| 7 import 'dart:convert' as convert; | 7 import 'dart:convert' as convert; |
| 8 | 8 |
| 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; | 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; |
| 10 import 'package:http/http.dart' as http; | 10 import 'package:http/http.dart' as http; |
| 11 | 11 |
| 12 export 'package:_discoveryapis_commons/_discoveryapis_commons.dart' show | 12 export 'package:_discoveryapis_commons/_discoveryapis_commons.dart' show |
| 13 ApiRequestError, DetailedApiRequestError; | 13 ApiRequestError, DetailedApiRequestError; |
| 14 | 14 |
| 15 const core.String USER_AGENT = 'dart-api-client oslogin/v1alpha'; | 15 const core.String USER_AGENT = 'dart-api-client oslogin/v1alpha'; |
| 16 | 16 |
| 17 /** | 17 /** Manages OS login configuration for Directory API users. */ |
| 18 * A Google Cloud API for managing OS login configuration for Directory API | |
| 19 * users. | |
| 20 */ | |
| 21 class OsloginApi { | 18 class OsloginApi { |
| 22 /** View and manage your data across Google Cloud Platform services */ | 19 /** View and manage your data across Google Cloud Platform services */ |
| 23 static const CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platf
orm"; | 20 static const CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platf
orm"; |
| 24 | 21 |
| 25 /** View your data across Google Cloud Platform services */ | 22 /** View your data across Google Cloud Platform services */ |
| 26 static const CloudPlatformReadOnlyScope = "https://www.googleapis.com/auth/clo
ud-platform.read-only"; | 23 static const CloudPlatformReadOnlyScope = "https://www.googleapis.com/auth/clo
ud-platform.read-only"; |
| 27 | 24 |
| 28 | 25 |
| 29 final commons.ApiRequester _requester; | 26 final commons.ApiRequester _requester; |
| 30 | 27 |
| (...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 495 } | 492 } |
| 496 if (fingerprint != null) { | 493 if (fingerprint != null) { |
| 497 _json["fingerprint"] = fingerprint; | 494 _json["fingerprint"] = fingerprint; |
| 498 } | 495 } |
| 499 if (key != null) { | 496 if (key != null) { |
| 500 _json["key"] = key; | 497 _json["key"] = key; |
| 501 } | 498 } |
| 502 return _json; | 499 return _json; |
| 503 } | 500 } |
| 504 } | 501 } |
| OLD | NEW |