Skip to content

Commit

Permalink
Generate current server sources.
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasvl committed Jan 23, 2019
1 parent 4fc39b6 commit 2097689
Show file tree
Hide file tree
Showing 46 changed files with 1,128 additions and 2,112 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ GTLR_EXTERN NSString * const kGTLRAlertCenter_CloudPubsubTopic_PayloadFormat_Pay
* This is only available for:
* * Suspicious login
* * Suspicious login (less secure app)
* * Suspicious programmatic login
* * User suspended (suspicious activity)
*/
@property(nonatomic, strong, nullable) GTLRAlertCenter_LoginDetails *loginDetails;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ NS_ASSUME_NONNULL_BEGIN
*/
@property(nonatomic, strong, nullable) NSArray<GTLRAndroidEnterprise_AutoInstallConstraint *> *autoInstallConstraint;

/** The auto install mode. If unset defaults to AVAILABLE. */
/** The auto install mode. If unset defaults to "doNotAutoInstall". */
@property(nonatomic, copy, nullable) NSString *autoInstallMode;

/**
Expand Down Expand Up @@ -2245,7 +2245,8 @@ NS_ASSUME_NONNULL_BEGIN
@property(nonatomic, copy, nullable) NSString *displayMode;

/**
* A list of icons representing this website. Must have at least one element.
* A list of icons representing this website. If absent, a default icon (for
* create) or the current icon (for update) will be used.
*/
@property(nonatomic, strong, nullable) NSArray<GTLRAndroidEnterprise_WebAppIcon *> *icons;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -535,34 +535,6 @@ GTLR_EXTERN NSString * const kGTLRAndroidEnterpriseRequestModeWaitForNotificatio

@end

/**
* Deprecated and unused.
*
* Method: androidenterprise.enterprises.getAndroidDevicePolicyConfig
*
* Authorization scope(s):
* @c kGTLRAuthScopeAndroidEnterprise
*/
@interface GTLRAndroidEnterpriseQuery_EnterprisesGetAndroidDevicePolicyConfig : GTLRAndroidEnterpriseQuery
// Previous library name was
// +[GTLQueryAndroidEnterprise queryForEnterprisesGetAndroidDevicePolicyConfigWithenterpriseId:]

/** The ID of the enterprise. */
@property(nonatomic, copy, nullable) NSString *enterpriseId;

/**
* Fetches a @c GTLRAndroidEnterprise_AndroidDevicePolicyConfig.
*
* Deprecated and unused.
*
* @param enterpriseId The ID of the enterprise.
*
* @return GTLRAndroidEnterpriseQuery_EnterprisesGetAndroidDevicePolicyConfig
*/
+ (instancetype)queryWithEnterpriseId:(NSString *)enterpriseId;

@end

/**
* Returns a service account and credentials. The service account can be bound
* to the enterprise by calling setAccount. The service account is unique to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -317,25 +317,6 @@ + (instancetype)queryWithEnterpriseId:(NSString *)enterpriseId {

@end

@implementation GTLRAndroidEnterpriseQuery_EnterprisesGetAndroidDevicePolicyConfig

@dynamic enterpriseId;

+ (instancetype)queryWithEnterpriseId:(NSString *)enterpriseId {
NSArray *pathParams = @[ @"enterpriseId" ];
NSString *pathURITemplate = @"enterprises/{enterpriseId}/androidDevicePolicyConfig";
GTLRAndroidEnterpriseQuery_EnterprisesGetAndroidDevicePolicyConfig *query =
[[self alloc] initWithPathURITemplate:pathURITemplate
HTTPMethod:nil
pathParameterNames:pathParams];
query.enterpriseId = enterpriseId;
query.expectedObjectClass = [GTLRAndroidEnterprise_AndroidDevicePolicyConfig class];
query.loggingName = @"androidenterprise.enterprises.getAndroidDevicePolicyConfig";
return query;
}

@end

@implementation GTLRAndroidEnterpriseQuery_EnterprisesGetServiceAccount

@dynamic enterpriseId, keyType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -823,6 +823,7 @@ NS_ASSUME_NONNULL_BEGIN
* values are:
* - Test (i.e. purchased from a license testing account)
* - Promo (i.e. purchased using a promo code)
* - Rewarded (i.e. from watching a video ad instead of paying)
*
* Uses NSNumber of intValue.
*/
Expand Down
18 changes: 18 additions & 0 deletions Source/GeneratedServices/Bigquery/GTLRBigqueryObjects.h
Original file line number Diff line number Diff line change
Expand Up @@ -935,6 +935,15 @@ NS_ASSUME_NONNULL_BEGIN
/** [Optional] Additional options if sourceFormat is set to GOOGLE_SHEETS. */
@property(nonatomic, strong, nullable) GTLRBigquery_GoogleSheetsOptions *googleSheetsOptions;

/**
* [Optional, Experimental] If hive partitioning is enabled, which mode to use.
* Two modes are supported: - AUTO: automatically infer partition key name(s)
* and type(s). - STRINGS: automatic infer partition key name(s). All types are
* strings. Not all storage formats support hive partitioning -- requesting
* hive partitioning on an unsupported format will lead to an error.
*/
@property(nonatomic, copy, nullable) NSString *hivePartitioningMode;

/**
* [Optional] Indicates if BigQuery should allow extra values that are not
* represented in the table schema. If true, the extra values are ignored. If
Expand Down Expand Up @@ -1442,6 +1451,15 @@ NS_ASSUME_NONNULL_BEGIN
*/
@property(nonatomic, copy, nullable) NSString *fieldDelimiter;

/**
* [Optional, Experimental] If hive partitioning is enabled, which mode to use.
* Two modes are supported: - AUTO: automatically infer partition key name(s)
* and type(s). - STRINGS: automatic infer partition key name(s). All types are
* strings. Not all storage formats support hive partitioning -- requesting
* hive partitioning on an unsupported format will lead to an error.
*/
@property(nonatomic, copy, nullable) NSString *hivePartitioningMode;

/**
* [Optional] Indicates if BigQuery should allow extra values that are not
* represented in the table schema. If true, the extra values are ignored. If
Expand Down
12 changes: 6 additions & 6 deletions Source/GeneratedServices/Bigquery/GTLRBigqueryObjects.m
Original file line number Diff line number Diff line change
Expand Up @@ -298,8 +298,8 @@ + (BOOL)isKindValidForClassRegistry {

@implementation GTLRBigquery_ExternalDataConfiguration
@dynamic autodetect, bigtableOptions, compression, csvOptions,
googleSheetsOptions, ignoreUnknownValues, maxBadRecords, schema,
sourceFormat, sourceUris;
googleSheetsOptions, hivePartitioningMode, ignoreUnknownValues,
maxBadRecords, schema, sourceFormat, sourceUris;

+ (NSDictionary<NSString *, Class> *)arrayPropertyToClassMap {
NSDictionary<NSString *, Class> *map = @{
Expand Down Expand Up @@ -455,10 +455,10 @@ @implementation GTLRBigquery_JobConfigurationLoad
@dynamic allowJaggedRows, allowQuotedNewlines, autodetect, clustering,
createDisposition, destinationEncryptionConfiguration,
destinationTable, destinationTableProperties, encoding, fieldDelimiter,
ignoreUnknownValues, maxBadRecords, nullMarker, projectionFields,
quote, rangePartitioning, schema, schemaInline, schemaInlineFormat,
schemaUpdateOptions, skipLeadingRows, sourceFormat, sourceUris,
timePartitioning, useAvroLogicalTypes, writeDisposition;
hivePartitioningMode, ignoreUnknownValues, maxBadRecords, nullMarker,
projectionFields, quote, rangePartitioning, schema, schemaInline,
schemaInlineFormat, schemaUpdateOptions, skipLeadingRows, sourceFormat,
sourceUris, timePartitioning, useAvroLogicalTypes, writeDisposition;

+ (NSDictionary<NSString *, Class> *)arrayPropertyToClassMap {
NSDictionary<NSString *, Class> *map = @{
Expand Down
8 changes: 4 additions & 4 deletions Source/GeneratedServices/CloudBuild/GTLRCloudBuildObjects.h
Original file line number Diff line number Diff line change
Expand Up @@ -1283,8 +1283,8 @@ GTLR_EXTERN NSString * const kGTLRCloudBuild_Hash_Type_Sha256;

/**
* Output only. Hash(es) of the build source, which can be used to verify that
* the originalsource integrity was maintained in the build. Note that
* `FileHashes` willonly be populated if `BuildOptions` has requested a
* the original source integrity was maintained in the build. Note that
* `FileHashes` will only be populated if `BuildOptions` has requested a
* `SourceProvenanceHash`.
* The keys to this map are file paths used as build source and the values
* contain the hash values for those files.
Expand All @@ -1310,8 +1310,8 @@ GTLR_EXTERN NSString * const kGTLRCloudBuild_Hash_Type_Sha256;

/**
* Output only. Hash(es) of the build source, which can be used to verify that
* the originalsource integrity was maintained in the build. Note that
* `FileHashes` willonly be populated if `BuildOptions` has requested a
* the original source integrity was maintained in the build. Note that
* `FileHashes` will only be populated if `BuildOptions` has requested a
* `SourceProvenanceHash`.
* The keys to this map are file paths used as build source and the values
* contain the hash values for those files.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// ----------------------------------------------------------------------------
// API:
// Cloud Filestore API (file/v1beta1)
// Cloud Filestore API (file/v1)
// Description:
// The Cloud Filestore API is used for creating and managing cloud file
// servers.
Expand Down
Loading

0 comments on commit 2097689

Please sign in to comment.