repo_name
stringlengths
1
52
repo_creator
stringclasses
6 values
programming_language
stringclasses
4 values
code
stringlengths
0
9.68M
num_lines
int64
1
234k
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Represents a unique identifier for a version of a deployed RestApi that is callable /// by users. /// </summary> public partial class CreateStageResponse : AmazonWebServiceResponse { private AccessLogSettings _accessLogSettings; private bool? _cacheClusterEnabled; private CacheClusterSize _cacheClusterSize; private CacheClusterStatus _cacheClusterStatus; private CanarySettings _canarySettings; private string _clientCertificateId; private DateTime? _createdDate; private string _deploymentId; private string _description; private string _documentationVersion; private DateTime? _lastUpdatedDate; private Dictionary<string, MethodSetting> _methodSettings = new Dictionary<string, MethodSetting>(); private string _stageName; private Dictionary<string, string> _tags = new Dictionary<string, string>(); private bool? _tracingEnabled; private Dictionary<string, string> _variables = new Dictionary<string, string>(); private string _webAclArn; /// <summary> /// Gets and sets the property AccessLogSettings. /// <para> /// Settings for logging access in this stage. /// </para> /// </summary> public AccessLogSettings AccessLogSettings { get { return this._accessLogSettings; } set { this._accessLogSettings = value; } } // Check to see if AccessLogSettings property is set internal bool IsSetAccessLogSettings() { return this._accessLogSettings != null; } /// <summary> /// Gets and sets the property CacheClusterEnabled. /// <para> /// Specifies whether a cache cluster is enabled for the stage. /// </para> /// </summary> public bool CacheClusterEnabled { get { return this._cacheClusterEnabled.GetValueOrDefault(); } set { this._cacheClusterEnabled = value; } } // Check to see if CacheClusterEnabled property is set internal bool IsSetCacheClusterEnabled() { return this._cacheClusterEnabled.HasValue; } /// <summary> /// Gets and sets the property CacheClusterSize. /// <para> /// The stage's cache capacity in GB. For more information about choosing a cache size, /// see <a href="https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-caching.html">Enabling /// API caching to enhance responsiveness</a>. /// </para> /// </summary> public CacheClusterSize CacheClusterSize { get { return this._cacheClusterSize; } set { this._cacheClusterSize = value; } } // Check to see if CacheClusterSize property is set internal bool IsSetCacheClusterSize() { return this._cacheClusterSize != null; } /// <summary> /// Gets and sets the property CacheClusterStatus. /// <para> /// The status of the cache cluster for the stage, if enabled. /// </para> /// </summary> public CacheClusterStatus CacheClusterStatus { get { return this._cacheClusterStatus; } set { this._cacheClusterStatus = value; } } // Check to see if CacheClusterStatus property is set internal bool IsSetCacheClusterStatus() { return this._cacheClusterStatus != null; } /// <summary> /// Gets and sets the property CanarySettings. /// <para> /// Settings for the canary deployment in this stage. /// </para> /// </summary> public CanarySettings CanarySettings { get { return this._canarySettings; } set { this._canarySettings = value; } } // Check to see if CanarySettings property is set internal bool IsSetCanarySettings() { return this._canarySettings != null; } /// <summary> /// Gets and sets the property ClientCertificateId. /// <para> /// The identifier of a client certificate for an API stage. /// </para> /// </summary> public string ClientCertificateId { get { return this._clientCertificateId; } set { this._clientCertificateId = value; } } // Check to see if ClientCertificateId property is set internal bool IsSetClientCertificateId() { return this._clientCertificateId != null; } /// <summary> /// Gets and sets the property CreatedDate. /// <para> /// The timestamp when the stage was created. /// </para> /// </summary> public DateTime CreatedDate { get { return this._createdDate.GetValueOrDefault(); } set { this._createdDate = value; } } // Check to see if CreatedDate property is set internal bool IsSetCreatedDate() { return this._createdDate.HasValue; } /// <summary> /// Gets and sets the property DeploymentId. /// <para> /// The identifier of the Deployment that the stage points to. /// </para> /// </summary> public string DeploymentId { get { return this._deploymentId; } set { this._deploymentId = value; } } // Check to see if DeploymentId property is set internal bool IsSetDeploymentId() { return this._deploymentId != null; } /// <summary> /// Gets and sets the property Description. /// <para> /// The stage's description. /// </para> /// </summary> public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// <summary> /// Gets and sets the property DocumentationVersion. /// <para> /// The version of the associated API documentation. /// </para> /// </summary> public string DocumentationVersion { get { return this._documentationVersion; } set { this._documentationVersion = value; } } // Check to see if DocumentationVersion property is set internal bool IsSetDocumentationVersion() { return this._documentationVersion != null; } /// <summary> /// Gets and sets the property LastUpdatedDate. /// <para> /// The timestamp when the stage last updated. /// </para> /// </summary> public DateTime LastUpdatedDate { get { return this._lastUpdatedDate.GetValueOrDefault(); } set { this._lastUpdatedDate = value; } } // Check to see if LastUpdatedDate property is set internal bool IsSetLastUpdatedDate() { return this._lastUpdatedDate.HasValue; } /// <summary> /// Gets and sets the property MethodSettings. /// <para> /// A map that defines the method settings for a Stage resource. Keys (designated as <code>/{method_setting_key</code> /// below) are method paths defined as <code>{resource_path}/{http_method}</code> for /// an individual method override, or <code>/\*/\*</code> for overriding all methods in /// the stage. /// </para> /// </summary> public Dictionary<string, MethodSetting> MethodSettings { get { return this._methodSettings; } set { this._methodSettings = value; } } // Check to see if MethodSettings property is set internal bool IsSetMethodSettings() { return this._methodSettings != null && this._methodSettings.Count > 0; } /// <summary> /// Gets and sets the property StageName. /// <para> /// The name of the stage is the first path segment in the Uniform Resource Identifier /// (URI) of a call to API Gateway. Stage names can only contain alphanumeric characters, /// hyphens, and underscores. Maximum length is 128 characters. /// </para> /// </summary> public string StageName { get { return this._stageName; } set { this._stageName = value; } } // Check to see if StageName property is set internal bool IsSetStageName() { return this._stageName != null; } /// <summary> /// Gets and sets the property Tags. /// <para> /// The collection of tags. Each tag element is associated with a given resource. /// </para> /// </summary> public Dictionary<string, string> Tags { get { return this._tags; } set { this._tags = value; } } // Check to see if Tags property is set internal bool IsSetTags() { return this._tags != null && this._tags.Count > 0; } /// <summary> /// Gets and sets the property TracingEnabled. /// <para> /// Specifies whether active tracing with X-ray is enabled for the Stage. /// </para> /// </summary> public bool TracingEnabled { get { return this._tracingEnabled.GetValueOrDefault(); } set { this._tracingEnabled = value; } } // Check to see if TracingEnabled property is set internal bool IsSetTracingEnabled() { return this._tracingEnabled.HasValue; } /// <summary> /// Gets and sets the property Variables. /// <para> /// A map that defines the stage variables for a Stage resource. Variable names can have /// alphanumeric and underscore characters, and the values must match <code>[A-Za-z0-9-._~:/?#&amp;=,]+</code>. /// </para> /// </summary> public Dictionary<string, string> Variables { get { return this._variables; } set { this._variables = value; } } // Check to see if Variables property is set internal bool IsSetVariables() { return this._variables != null && this._variables.Count > 0; } /// <summary> /// Gets and sets the property WebAclArn. /// <para> /// The ARN of the WebAcl associated with the Stage. /// </para> /// </summary> public string WebAclArn { get { return this._webAclArn; } set { this._webAclArn = value; } } // Check to see if WebAclArn property is set internal bool IsSetWebAclArn() { return this._webAclArn != null; } } }
370
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the CreateUsagePlanKey operation. /// Creates a usage plan key for adding an existing API key to a usage plan. /// </summary> public partial class CreateUsagePlanKeyRequest : AmazonAPIGatewayRequest { private string _keyId; private string _keyType; private string _usagePlanId; /// <summary> /// Gets and sets the property KeyId. /// <para> /// The identifier of a UsagePlanKey resource for a plan customer. /// </para> /// </summary> [AWSProperty(Required=true)] public string KeyId { get { return this._keyId; } set { this._keyId = value; } } // Check to see if KeyId property is set internal bool IsSetKeyId() { return this._keyId != null; } /// <summary> /// Gets and sets the property KeyType. /// <para> /// The type of a UsagePlanKey resource for a plan customer. /// </para> /// </summary> [AWSProperty(Required=true)] public string KeyType { get { return this._keyType; } set { this._keyType = value; } } // Check to see if KeyType property is set internal bool IsSetKeyType() { return this._keyType != null; } /// <summary> /// Gets and sets the property UsagePlanId. /// <para> /// The Id of the UsagePlan resource representing the usage plan containing the to-be-created /// UsagePlanKey resource representing a plan customer. /// </para> /// </summary> [AWSProperty(Required=true)] public string UsagePlanId { get { return this._usagePlanId; } set { this._usagePlanId = value; } } // Check to see if UsagePlanId property is set internal bool IsSetUsagePlanId() { return this._usagePlanId != null; } } }
100
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Represents a usage plan key to identify a plan customer. /// </summary> public partial class CreateUsagePlanKeyResponse : AmazonWebServiceResponse { private string _id; private string _name; private string _type; private string _value; /// <summary> /// Gets and sets the property Id. /// <para> /// The Id of a usage plan key. /// </para> /// </summary> public string Id { get { return this._id; } set { this._id = value; } } // Check to see if Id property is set internal bool IsSetId() { return this._id != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of a usage plan key. /// </para> /// </summary> public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property Type. /// <para> /// The type of a usage plan key. Currently, the valid key type is <code>API_KEY</code>. /// </para> /// </summary> public string Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } /// <summary> /// Gets and sets the property Value. /// <para> /// The value of a usage plan key. /// </para> /// </summary> public string Value { get { return this._value; } set { this._value = value; } } // Check to see if Value property is set internal bool IsSetValue() { return this._value != null; } } }
114
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the CreateUsagePlan operation. /// Creates a usage plan with the throttle and quota limits, as well as the associated /// API stages, specified in the payload. /// </summary> public partial class CreateUsagePlanRequest : AmazonAPIGatewayRequest { private List<ApiStage> _apiStages = new List<ApiStage>(); private string _description; private string _name; private QuotaSettings _quota; private Dictionary<string, string> _tags = new Dictionary<string, string>(); private ThrottleSettings _throttle; /// <summary> /// Gets and sets the property ApiStages. /// <para> /// The associated API stages of the usage plan. /// </para> /// </summary> public List<ApiStage> ApiStages { get { return this._apiStages; } set { this._apiStages = value; } } // Check to see if ApiStages property is set internal bool IsSetApiStages() { return this._apiStages != null && this._apiStages.Count > 0; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description of the usage plan. /// </para> /// </summary> public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the usage plan. /// </para> /// </summary> [AWSProperty(Required=true)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property Quota. /// <para> /// The quota of the usage plan. /// </para> /// </summary> public QuotaSettings Quota { get { return this._quota; } set { this._quota = value; } } // Check to see if Quota property is set internal bool IsSetQuota() { return this._quota != null; } /// <summary> /// Gets and sets the property Tags. /// <para> /// The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag /// key can be up to 128 characters and must not start with <code>aws:</code>. The tag /// value can be up to 256 characters. /// </para> /// </summary> public Dictionary<string, string> Tags { get { return this._tags; } set { this._tags = value; } } // Check to see if Tags property is set internal bool IsSetTags() { return this._tags != null && this._tags.Count > 0; } /// <summary> /// Gets and sets the property Throttle. /// <para> /// The throttling limits of the usage plan. /// </para> /// </summary> public ThrottleSettings Throttle { get { return this._throttle; } set { this._throttle = value; } } // Check to see if Throttle property is set internal bool IsSetThrottle() { return this._throttle != null; } } }
157
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Represents a usage plan used to specify who can assess associated API stages. Optionally, /// target request rate and quota limits can be set. In some cases clients can exceed /// the targets that you set. Don’t rely on usage plans to control costs. Consider using /// <a href="https://docs.aws.amazon.com/cost-management/latest/userguide/budgets-managing-costs.html">Amazon /// Web Services Budgets</a> to monitor costs and <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html">WAF</a> /// to manage API requests. /// </summary> public partial class CreateUsagePlanResponse : AmazonWebServiceResponse { private List<ApiStage> _apiStages = new List<ApiStage>(); private string _description; private string _id; private string _name; private string _productCode; private QuotaSettings _quota; private Dictionary<string, string> _tags = new Dictionary<string, string>(); private ThrottleSettings _throttle; /// <summary> /// Gets and sets the property ApiStages. /// <para> /// The associated API stages of a usage plan. /// </para> /// </summary> public List<ApiStage> ApiStages { get { return this._apiStages; } set { this._apiStages = value; } } // Check to see if ApiStages property is set internal bool IsSetApiStages() { return this._apiStages != null && this._apiStages.Count > 0; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description of a usage plan. /// </para> /// </summary> public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// <summary> /// Gets and sets the property Id. /// <para> /// The identifier of a UsagePlan resource. /// </para> /// </summary> public string Id { get { return this._id; } set { this._id = value; } } // Check to see if Id property is set internal bool IsSetId() { return this._id != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of a usage plan. /// </para> /// </summary> public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property ProductCode. /// <para> /// The AWS Markeplace product identifier to associate with the usage plan as a SaaS product /// on AWS Marketplace. /// </para> /// </summary> public string ProductCode { get { return this._productCode; } set { this._productCode = value; } } // Check to see if ProductCode property is set internal bool IsSetProductCode() { return this._productCode != null; } /// <summary> /// Gets and sets the property Quota. /// <para> /// The target maximum number of permitted requests per a given unit time interval. /// </para> /// </summary> public QuotaSettings Quota { get { return this._quota; } set { this._quota = value; } } // Check to see if Quota property is set internal bool IsSetQuota() { return this._quota != null; } /// <summary> /// Gets and sets the property Tags. /// <para> /// The collection of tags. Each tag element is associated with a given resource. /// </para> /// </summary> public Dictionary<string, string> Tags { get { return this._tags; } set { this._tags = value; } } // Check to see if Tags property is set internal bool IsSetTags() { return this._tags != null && this._tags.Count > 0; } /// <summary> /// Gets and sets the property Throttle. /// <para> /// A map containing method level throttling information for API stage in a usage plan. /// </para> /// </summary> public ThrottleSettings Throttle { get { return this._throttle; } set { this._throttle = value; } } // Check to see if Throttle property is set internal bool IsSetThrottle() { return this._throttle != null; } } }
196
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the CreateVpcLink operation. /// Creates a VPC link, under the caller's account in a selected region, in an asynchronous /// operation that typically takes 2-4 minutes to complete and become operational. The /// caller must have permissions to create and update VPC Endpoint services. /// </summary> public partial class CreateVpcLinkRequest : AmazonAPIGatewayRequest { private string _description; private string _name; private Dictionary<string, string> _tags = new Dictionary<string, string>(); private List<string> _targetArns = new List<string>(); /// <summary> /// Gets and sets the property Description. /// <para> /// The description of the VPC link. /// </para> /// </summary> public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name used to label and identify the VPC link. /// </para> /// </summary> [AWSProperty(Required=true)] public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property Tags. /// <para> /// The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag /// key can be up to 128 characters and must not start with <code>aws:</code>. The tag /// value can be up to 256 characters. /// </para> /// </summary> public Dictionary<string, string> Tags { get { return this._tags; } set { this._tags = value; } } // Check to see if Tags property is set internal bool IsSetTags() { return this._tags != null && this._tags.Count > 0; } /// <summary> /// Gets and sets the property TargetArns. /// <para> /// The ARN of the network load balancer of the VPC targeted by the VPC link. The network /// load balancer must be owned by the same AWS account of the API owner. /// </para> /// </summary> [AWSProperty(Required=true)] public List<string> TargetArns { get { return this._targetArns; } set { this._targetArns = value; } } // Check to see if TargetArns property is set internal bool IsSetTargetArns() { return this._targetArns != null && this._targetArns.Count > 0; } } }
122
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// An API Gateway VPC link for a RestApi to access resources in an Amazon Virtual Private /// Cloud (VPC). /// </summary> public partial class CreateVpcLinkResponse : AmazonWebServiceResponse { private string _description; private string _id; private string _name; private VpcLinkStatus _status; private string _statusMessage; private Dictionary<string, string> _tags = new Dictionary<string, string>(); private List<string> _targetArns = new List<string>(); /// <summary> /// Gets and sets the property Description. /// <para> /// The description of the VPC link. /// </para> /// </summary> public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// <summary> /// Gets and sets the property Id. /// <para> /// The identifier of the VpcLink. It is used in an Integration to reference this VpcLink. /// </para> /// </summary> public string Id { get { return this._id; } set { this._id = value; } } // Check to see if Id property is set internal bool IsSetId() { return this._id != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name used to label and identify the VPC link. /// </para> /// </summary> public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property Status. /// <para> /// The status of the VPC link. The valid values are <code>AVAILABLE</code>, <code>PENDING</code>, /// <code>DELETING</code>, or <code>FAILED</code>. Deploying an API will wait if the status /// is <code>PENDING</code> and will fail if the status is <code>DELETING</code>. /// </para> /// </summary> public VpcLinkStatus Status { get { return this._status; } set { this._status = value; } } // Check to see if Status property is set internal bool IsSetStatus() { return this._status != null; } /// <summary> /// Gets and sets the property StatusMessage. /// <para> /// A description about the VPC link status. /// </para> /// </summary> public string StatusMessage { get { return this._statusMessage; } set { this._statusMessage = value; } } // Check to see if StatusMessage property is set internal bool IsSetStatusMessage() { return this._statusMessage != null; } /// <summary> /// Gets and sets the property Tags. /// <para> /// The collection of tags. Each tag element is associated with a given resource. /// </para> /// </summary> public Dictionary<string, string> Tags { get { return this._tags; } set { this._tags = value; } } // Check to see if Tags property is set internal bool IsSetTags() { return this._tags != null && this._tags.Count > 0; } /// <summary> /// Gets and sets the property TargetArns. /// <para> /// The ARN of the network load balancer of the VPC targeted by the VPC link. The network /// load balancer must be owned by the same AWS account of the API owner. /// </para> /// </summary> public List<string> TargetArns { get { return this._targetArns; } set { this._targetArns = value; } } // Check to see if TargetArns property is set internal bool IsSetTargetArns() { return this._targetArns != null && this._targetArns.Count > 0; } } }
175
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the DeleteApiKey operation. /// Deletes the ApiKey resource. /// </summary> public partial class DeleteApiKeyRequest : AmazonAPIGatewayRequest { private string _apiKey; /// <summary> /// Gets and sets the property ApiKey. /// <para> /// The identifier of the ApiKey resource to be deleted. /// </para> /// </summary> [AWSProperty(Required=true)] public string ApiKey { get { return this._apiKey; } set { this._apiKey = value; } } // Check to see if ApiKey property is set internal bool IsSetApiKey() { return this._apiKey != null; } } }
59
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// This is the response object from the DeleteApiKey operation. /// </summary> public partial class DeleteApiKeyResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the DeleteAuthorizer operation. /// Deletes an existing Authorizer resource. /// </summary> public partial class DeleteAuthorizerRequest : AmazonAPIGatewayRequest { private string _authorizerId; private string _restApiId; /// <summary> /// Gets and sets the property AuthorizerId. /// <para> /// The identifier of the Authorizer resource. /// </para> /// </summary> [AWSProperty(Required=true)] public string AuthorizerId { get { return this._authorizerId; } set { this._authorizerId = value; } } // Check to see if AuthorizerId property is set internal bool IsSetAuthorizerId() { return this._authorizerId != null; } /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } } }
79
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// This is the response object from the DeleteAuthorizer operation. /// </summary> public partial class DeleteAuthorizerResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the DeleteBasePathMapping operation. /// Deletes the BasePathMapping resource. /// </summary> public partial class DeleteBasePathMappingRequest : AmazonAPIGatewayRequest { private string _basePath; private string _domainName; /// <summary> /// Gets and sets the property BasePath. /// <para> /// The base path name of the BasePathMapping resource to delete. /// </para> /// /// <para> /// To specify an empty base path, set this parameter to <code>'(none)'</code>. /// </para> /// </summary> [AWSProperty(Required=true)] public string BasePath { get { return this._basePath; } set { this._basePath = value; } } // Check to see if BasePath property is set internal bool IsSetBasePath() { return this._basePath != null; } /// <summary> /// Gets and sets the property DomainName. /// <para> /// The domain name of the BasePathMapping resource to delete. /// </para> /// </summary> [AWSProperty(Required=true)] public string DomainName { get { return this._domainName; } set { this._domainName = value; } } // Check to see if DomainName property is set internal bool IsSetDomainName() { return this._domainName != null; } } }
83
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// This is the response object from the DeleteBasePathMapping operation. /// </summary> public partial class DeleteBasePathMappingResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the DeleteClientCertificate operation. /// Deletes the ClientCertificate resource. /// </summary> public partial class DeleteClientCertificateRequest : AmazonAPIGatewayRequest { private string _clientCertificateId; /// <summary> /// Gets and sets the property ClientCertificateId. /// <para> /// The identifier of the ClientCertificate resource to be deleted. /// </para> /// </summary> [AWSProperty(Required=true)] public string ClientCertificateId { get { return this._clientCertificateId; } set { this._clientCertificateId = value; } } // Check to see if ClientCertificateId property is set internal bool IsSetClientCertificateId() { return this._clientCertificateId != null; } } }
59
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// This is the response object from the DeleteClientCertificate operation. /// </summary> public partial class DeleteClientCertificateResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the DeleteDeployment operation. /// Deletes a Deployment resource. Deleting a deployment will only succeed if there are /// no Stage resources associated with it. /// </summary> public partial class DeleteDeploymentRequest : AmazonAPIGatewayRequest { private string _deploymentId; private string _restApiId; /// <summary> /// Gets and sets the property DeploymentId. /// <para> /// The identifier of the Deployment resource to delete. /// </para> /// </summary> [AWSProperty(Required=true)] public string DeploymentId { get { return this._deploymentId; } set { this._deploymentId = value; } } // Check to see if DeploymentId property is set internal bool IsSetDeploymentId() { return this._deploymentId != null; } /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } } }
80
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// This is the response object from the DeleteDeployment operation. /// </summary> public partial class DeleteDeploymentResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the DeleteDocumentationPart operation. /// Deletes a documentation part /// </summary> public partial class DeleteDocumentationPartRequest : AmazonAPIGatewayRequest { private string _documentationPartId; private string _restApiId; /// <summary> /// Gets and sets the property DocumentationPartId. /// <para> /// The identifier of the to-be-deleted documentation part. /// </para> /// </summary> [AWSProperty(Required=true)] public string DocumentationPartId { get { return this._documentationPartId; } set { this._documentationPartId = value; } } // Check to see if DocumentationPartId property is set internal bool IsSetDocumentationPartId() { return this._documentationPartId != null; } /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } } }
79
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// This is the response object from the DeleteDocumentationPart operation. /// </summary> public partial class DeleteDocumentationPartResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the DeleteDocumentationVersion operation. /// Deletes a documentation version. /// </summary> public partial class DeleteDocumentationVersionRequest : AmazonAPIGatewayRequest { private string _documentationVersion; private string _restApiId; /// <summary> /// Gets and sets the property DocumentationVersion. /// <para> /// The version identifier of a to-be-deleted documentation snapshot. /// </para> /// </summary> [AWSProperty(Required=true)] public string DocumentationVersion { get { return this._documentationVersion; } set { this._documentationVersion = value; } } // Check to see if DocumentationVersion property is set internal bool IsSetDocumentationVersion() { return this._documentationVersion != null; } /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } } }
79
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// This is the response object from the DeleteDocumentationVersion operation. /// </summary> public partial class DeleteDocumentationVersionResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the DeleteDomainName operation. /// Deletes the DomainName resource. /// </summary> public partial class DeleteDomainNameRequest : AmazonAPIGatewayRequest { private string _domainName; /// <summary> /// Gets and sets the property DomainName. /// <para> /// The name of the DomainName resource to be deleted. /// </para> /// </summary> [AWSProperty(Required=true)] public string DomainName { get { return this._domainName; } set { this._domainName = value; } } // Check to see if DomainName property is set internal bool IsSetDomainName() { return this._domainName != null; } } }
59
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// This is the response object from the DeleteDomainName operation. /// </summary> public partial class DeleteDomainNameResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the DeleteGatewayResponse operation. /// Clears any customization of a GatewayResponse of a specified response type on the /// given RestApi and resets it with the default settings. /// </summary> public partial class DeleteGatewayResponseRequest : AmazonAPIGatewayRequest { private GatewayResponseType _responseType; private string _restApiId; /// <summary> /// Gets and sets the property ResponseType. /// <para> /// The response type of the associated GatewayResponse. /// </para> /// </summary> [AWSProperty(Required=true)] public GatewayResponseType ResponseType { get { return this._responseType; } set { this._responseType = value; } } // Check to see if ResponseType property is set internal bool IsSetResponseType() { return this._responseType != null; } /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } } }
80
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// This is the response object from the DeleteGatewayResponse operation. /// </summary> public partial class DeleteGatewayResponseResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the DeleteIntegration operation. /// Represents a delete integration. /// </summary> public partial class DeleteIntegrationRequest : AmazonAPIGatewayRequest { private string _httpMethod; private string _resourceId; private string _restApiId; /// <summary> /// Gets and sets the property HttpMethod. /// <para> /// Specifies a delete integration request's HTTP method. /// </para> /// </summary> [AWSProperty(Required=true)] public string HttpMethod { get { return this._httpMethod; } set { this._httpMethod = value; } } // Check to see if HttpMethod property is set internal bool IsSetHttpMethod() { return this._httpMethod != null; } /// <summary> /// Gets and sets the property ResourceId. /// <para> /// Specifies a delete integration request's resource identifier. /// </para> /// </summary> [AWSProperty(Required=true)] public string ResourceId { get { return this._resourceId; } set { this._resourceId = value; } } // Check to see if ResourceId property is set internal bool IsSetResourceId() { return this._resourceId != null; } /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } } }
99
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// This is the response object from the DeleteIntegration operation. /// </summary> public partial class DeleteIntegrationResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the DeleteIntegrationResponse operation. /// Represents a delete integration response. /// </summary> public partial class DeleteIntegrationResponseRequest : AmazonAPIGatewayRequest { private string _httpMethod; private string _resourceId; private string _restApiId; private string _statusCode; /// <summary> /// Gets and sets the property HttpMethod. /// <para> /// Specifies a delete integration response request's HTTP method. /// </para> /// </summary> [AWSProperty(Required=true)] public string HttpMethod { get { return this._httpMethod; } set { this._httpMethod = value; } } // Check to see if HttpMethod property is set internal bool IsSetHttpMethod() { return this._httpMethod != null; } /// <summary> /// Gets and sets the property ResourceId. /// <para> /// Specifies a delete integration response request's resource identifier. /// </para> /// </summary> [AWSProperty(Required=true)] public string ResourceId { get { return this._resourceId; } set { this._resourceId = value; } } // Check to see if ResourceId property is set internal bool IsSetResourceId() { return this._resourceId != null; } /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } /// <summary> /// Gets and sets the property StatusCode. /// <para> /// Specifies a delete integration response request's status code. /// </para> /// </summary> [AWSProperty(Required=true)] public string StatusCode { get { return this._statusCode; } set { this._statusCode = value; } } // Check to see if StatusCode property is set internal bool IsSetStatusCode() { return this._statusCode != null; } } }
119
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// This is the response object from the DeleteIntegrationResponse operation. /// </summary> public partial class DeleteIntegrationResponseResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the DeleteMethod operation. /// Deletes an existing Method resource. /// </summary> public partial class DeleteMethodRequest : AmazonAPIGatewayRequest { private string _httpMethod; private string _resourceId; private string _restApiId; /// <summary> /// Gets and sets the property HttpMethod. /// <para> /// The HTTP verb of the Method resource. /// </para> /// </summary> [AWSProperty(Required=true)] public string HttpMethod { get { return this._httpMethod; } set { this._httpMethod = value; } } // Check to see if HttpMethod property is set internal bool IsSetHttpMethod() { return this._httpMethod != null; } /// <summary> /// Gets and sets the property ResourceId. /// <para> /// The Resource identifier for the Method resource. /// </para> /// </summary> [AWSProperty(Required=true)] public string ResourceId { get { return this._resourceId; } set { this._resourceId = value; } } // Check to see if ResourceId property is set internal bool IsSetResourceId() { return this._resourceId != null; } /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } } }
99
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// This is the response object from the DeleteMethod operation. /// </summary> public partial class DeleteMethodResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the DeleteMethodResponse operation. /// Deletes an existing MethodResponse resource. /// </summary> public partial class DeleteMethodResponseRequest : AmazonAPIGatewayRequest { private string _httpMethod; private string _resourceId; private string _restApiId; private string _statusCode; /// <summary> /// Gets and sets the property HttpMethod. /// <para> /// The HTTP verb of the Method resource. /// </para> /// </summary> [AWSProperty(Required=true)] public string HttpMethod { get { return this._httpMethod; } set { this._httpMethod = value; } } // Check to see if HttpMethod property is set internal bool IsSetHttpMethod() { return this._httpMethod != null; } /// <summary> /// Gets and sets the property ResourceId. /// <para> /// The Resource identifier for the MethodResponse resource. /// </para> /// </summary> [AWSProperty(Required=true)] public string ResourceId { get { return this._resourceId; } set { this._resourceId = value; } } // Check to see if ResourceId property is set internal bool IsSetResourceId() { return this._resourceId != null; } /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } /// <summary> /// Gets and sets the property StatusCode. /// <para> /// The status code identifier for the MethodResponse resource. /// </para> /// </summary> [AWSProperty(Required=true)] public string StatusCode { get { return this._statusCode; } set { this._statusCode = value; } } // Check to see if StatusCode property is set internal bool IsSetStatusCode() { return this._statusCode != null; } } }
119
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// This is the response object from the DeleteMethodResponse operation. /// </summary> public partial class DeleteMethodResponseResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the DeleteModel operation. /// Deletes a model. /// </summary> public partial class DeleteModelRequest : AmazonAPIGatewayRequest { private string _modelName; private string _restApiId; /// <summary> /// Gets and sets the property ModelName. /// <para> /// The name of the model to delete. /// </para> /// </summary> [AWSProperty(Required=true)] public string ModelName { get { return this._modelName; } set { this._modelName = value; } } // Check to see if ModelName property is set internal bool IsSetModelName() { return this._modelName != null; } /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } } }
79
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// This is the response object from the DeleteModel operation. /// </summary> public partial class DeleteModelResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the DeleteRequestValidator operation. /// Deletes a RequestValidator of a given RestApi. /// </summary> public partial class DeleteRequestValidatorRequest : AmazonAPIGatewayRequest { private string _requestValidatorId; private string _restApiId; /// <summary> /// Gets and sets the property RequestValidatorId. /// <para> /// The identifier of the RequestValidator to be deleted. /// </para> /// </summary> [AWSProperty(Required=true)] public string RequestValidatorId { get { return this._requestValidatorId; } set { this._requestValidatorId = value; } } // Check to see if RequestValidatorId property is set internal bool IsSetRequestValidatorId() { return this._requestValidatorId != null; } /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } } }
79
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// This is the response object from the DeleteRequestValidator operation. /// </summary> public partial class DeleteRequestValidatorResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the DeleteResource operation. /// Deletes a Resource resource. /// </summary> public partial class DeleteResourceRequest : AmazonAPIGatewayRequest { private string _resourceId; private string _restApiId; /// <summary> /// Gets and sets the property ResourceId. /// <para> /// The identifier of the Resource resource. /// </para> /// </summary> [AWSProperty(Required=true)] public string ResourceId { get { return this._resourceId; } set { this._resourceId = value; } } // Check to see if ResourceId property is set internal bool IsSetResourceId() { return this._resourceId != null; } /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } } }
79
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// This is the response object from the DeleteResource operation. /// </summary> public partial class DeleteResourceResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the DeleteRestApi operation. /// Deletes the specified API. /// </summary> public partial class DeleteRestApiRequest : AmazonAPIGatewayRequest { private string _restApiId; /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } } }
59
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// This is the response object from the DeleteRestApi operation. /// </summary> public partial class DeleteRestApiResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the DeleteStage operation. /// Deletes a Stage resource. /// </summary> public partial class DeleteStageRequest : AmazonAPIGatewayRequest { private string _restApiId; private string _stageName; /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } /// <summary> /// Gets and sets the property StageName. /// <para> /// The name of the Stage resource to delete. /// </para> /// </summary> [AWSProperty(Required=true)] public string StageName { get { return this._stageName; } set { this._stageName = value; } } // Check to see if StageName property is set internal bool IsSetStageName() { return this._stageName != null; } } }
79
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// This is the response object from the DeleteStage operation. /// </summary> public partial class DeleteStageResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the DeleteUsagePlanKey operation. /// Deletes a usage plan key and remove the underlying API key from the associated usage /// plan. /// </summary> public partial class DeleteUsagePlanKeyRequest : AmazonAPIGatewayRequest { private string _keyId; private string _usagePlanId; /// <summary> /// Gets and sets the property KeyId. /// <para> /// The Id of the UsagePlanKey resource to be deleted. /// </para> /// </summary> [AWSProperty(Required=true)] public string KeyId { get { return this._keyId; } set { this._keyId = value; } } // Check to see if KeyId property is set internal bool IsSetKeyId() { return this._keyId != null; } /// <summary> /// Gets and sets the property UsagePlanId. /// <para> /// The Id of the UsagePlan resource representing the usage plan containing the to-be-deleted /// UsagePlanKey resource representing a plan customer. /// </para> /// </summary> [AWSProperty(Required=true)] public string UsagePlanId { get { return this._usagePlanId; } set { this._usagePlanId = value; } } // Check to see if UsagePlanId property is set internal bool IsSetUsagePlanId() { return this._usagePlanId != null; } } }
81
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// This is the response object from the DeleteUsagePlanKey operation. /// </summary> public partial class DeleteUsagePlanKeyResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the DeleteUsagePlan operation. /// Deletes a usage plan of a given plan Id. /// </summary> public partial class DeleteUsagePlanRequest : AmazonAPIGatewayRequest { private string _usagePlanId; /// <summary> /// Gets and sets the property UsagePlanId. /// <para> /// The Id of the to-be-deleted usage plan. /// </para> /// </summary> [AWSProperty(Required=true)] public string UsagePlanId { get { return this._usagePlanId; } set { this._usagePlanId = value; } } // Check to see if UsagePlanId property is set internal bool IsSetUsagePlanId() { return this._usagePlanId != null; } } }
59
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// This is the response object from the DeleteUsagePlan operation. /// </summary> public partial class DeleteUsagePlanResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the DeleteVpcLink operation. /// Deletes an existing VpcLink of a specified identifier. /// </summary> public partial class DeleteVpcLinkRequest : AmazonAPIGatewayRequest { private string _vpcLinkId; /// <summary> /// Gets and sets the property VpcLinkId. /// <para> /// The identifier of the VpcLink. It is used in an Integration to reference this VpcLink. /// </para> /// </summary> [AWSProperty(Required=true)] public string VpcLinkId { get { return this._vpcLinkId; } set { this._vpcLinkId = value; } } // Check to see if VpcLinkId property is set internal bool IsSetVpcLinkId() { return this._vpcLinkId != null; } } }
59
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// This is the response object from the DeleteVpcLink operation. /// </summary> public partial class DeleteVpcLinkResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// An immutable representation of a RestApi resource that can be called by users using /// Stages. A deployment must be associated with a Stage for it to be callable over the /// Internet. /// </summary> public partial class Deployment { private Dictionary<string, Dictionary<string, MethodSnapshot>> _apiSummary = new Dictionary<string, Dictionary<string, MethodSnapshot>>(); private DateTime? _createdDate; private string _description; private string _id; /// <summary> /// Gets and sets the property ApiSummary. /// <para> /// A summary of the RestApi at the date and time that the deployment resource was created. /// </para> /// </summary> public Dictionary<string, Dictionary<string, MethodSnapshot>> ApiSummary { get { return this._apiSummary; } set { this._apiSummary = value; } } // Check to see if ApiSummary property is set internal bool IsSetApiSummary() { return this._apiSummary != null && this._apiSummary.Count > 0; } /// <summary> /// Gets and sets the property CreatedDate. /// <para> /// The date and time that the deployment resource was created. /// </para> /// </summary> public DateTime CreatedDate { get { return this._createdDate.GetValueOrDefault(); } set { this._createdDate = value; } } // Check to see if CreatedDate property is set internal bool IsSetCreatedDate() { return this._createdDate.HasValue; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description for the deployment resource. /// </para> /// </summary> public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// <summary> /// Gets and sets the property Id. /// <para> /// The identifier for the deployment resource. /// </para> /// </summary> public string Id { get { return this._id; } set { this._id = value; } } // Check to see if Id property is set internal bool IsSetId() { return this._id != null; } } }
116
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// The input configuration for a canary deployment. /// </summary> public partial class DeploymentCanarySettings { private double? _percentTraffic; private Dictionary<string, string> _stageVariableOverrides = new Dictionary<string, string>(); private bool? _useStageCache; /// <summary> /// Gets and sets the property PercentTraffic. /// <para> /// The percentage (0.0-100.0) of traffic routed to the canary deployment. /// </para> /// </summary> public double PercentTraffic { get { return this._percentTraffic.GetValueOrDefault(); } set { this._percentTraffic = value; } } // Check to see if PercentTraffic property is set internal bool IsSetPercentTraffic() { return this._percentTraffic.HasValue; } /// <summary> /// Gets and sets the property StageVariableOverrides. /// <para> /// A stage variable overrides used for the canary release deployment. They can override /// existing stage variables or add new stage variables for the canary release deployment. /// These stage variables are represented as a string-to-string map between stage variable /// names and their values. /// </para> /// </summary> public Dictionary<string, string> StageVariableOverrides { get { return this._stageVariableOverrides; } set { this._stageVariableOverrides = value; } } // Check to see if StageVariableOverrides property is set internal bool IsSetStageVariableOverrides() { return this._stageVariableOverrides != null && this._stageVariableOverrides.Count > 0; } /// <summary> /// Gets and sets the property UseStageCache. /// <para> /// A Boolean flag to indicate whether the canary release deployment uses the stage cache /// or not. /// </para> /// </summary> public bool UseStageCache { get { return this._useStageCache.GetValueOrDefault(); } set { this._useStageCache = value; } } // Check to see if UseStageCache property is set internal bool IsSetUseStageCache() { return this._useStageCache.HasValue; } } }
99
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// A documentation part for a targeted API entity. /// </summary> public partial class DocumentationPart { private string _id; private DocumentationPartLocation _location; private string _properties; /// <summary> /// Gets and sets the property Id. /// <para> /// The DocumentationPart identifier, generated by API Gateway when the <code>DocumentationPart</code> /// is created. /// </para> /// </summary> public string Id { get { return this._id; } set { this._id = value; } } // Check to see if Id property is set internal bool IsSetId() { return this._id != null; } /// <summary> /// Gets and sets the property Location. /// <para> /// The location of the API entity to which the documentation applies. Valid fields depend /// on the targeted API entity type. All the valid location fields are not required. If /// not explicitly specified, a valid location field is treated as a wildcard and associated /// documentation content may be inherited by matching entities, unless overridden. /// </para> /// </summary> public DocumentationPartLocation Location { get { return this._location; } set { this._location = value; } } // Check to see if Location property is set internal bool IsSetLocation() { return this._location != null; } /// <summary> /// Gets and sets the property Properties. /// <para> /// A content map of API-specific key-value pairs describing the targeted API entity. /// The map must be encoded as a JSON string, e.g., <code>"{ \"description\": \"The API /// does ...\" }"</code>. Only OpenAPI-compliant documentation-related fields from the /// properties map are exported and, hence, published as part of the API entity definitions, /// while the original documentation parts are exported in a OpenAPI extension of <code>x-amazon-apigateway-documentation</code>. /// </para> /// </summary> public string Properties { get { return this._properties; } set { this._properties = value; } } // Check to see if Properties property is set internal bool IsSetProperties() { return this._properties != null; } } }
103
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Specifies the target API entity to which the documentation applies. /// </summary> public partial class DocumentationPartLocation { private string _method; private string _name; private string _path; private string _statusCode; private DocumentationPartType _type; /// <summary> /// Gets and sets the property Method. /// <para> /// The HTTP verb of a method. It is a valid field for the API entity types of <code>METHOD</code>, /// <code>PATH_PARAMETER</code>, <code>QUERY_PARAMETER</code>, <code>REQUEST_HEADER</code>, /// <code>REQUEST_BODY</code>, <code>RESPONSE</code>, <code>RESPONSE_HEADER</code>, and /// <code>RESPONSE_BODY</code>. The default value is <code>*</code> for any method. When /// an applicable child entity inherits the content of an entity of the same type with /// more general specifications of the other <code>location</code> attributes, the child /// entity's <code>method</code> attribute must match that of the parent entity exactly. /// </para> /// </summary> public string Method { get { return this._method; } set { this._method = value; } } // Check to see if Method property is set internal bool IsSetMethod() { return this._method != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the targeted API entity. It is a valid and required field for the API /// entity types of <code>AUTHORIZER</code>, <code>MODEL</code>, <code>PATH_PARAMETER</code>, /// <code>QUERY_PARAMETER</code>, <code>REQUEST_HEADER</code>, <code>REQUEST_BODY</code> /// and <code>RESPONSE_HEADER</code>. It is an invalid field for any other entity type. /// </para> /// </summary> public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property Path. /// <para> /// The URL path of the target. It is a valid field for the API entity types of <code>RESOURCE</code>, /// <code>METHOD</code>, <code>PATH_PARAMETER</code>, <code>QUERY_PARAMETER</code>, <code>REQUEST_HEADER</code>, /// <code>REQUEST_BODY</code>, <code>RESPONSE</code>, <code>RESPONSE_HEADER</code>, and /// <code>RESPONSE_BODY</code>. The default value is <code>/</code> for the root resource. /// When an applicable child entity inherits the content of another entity of the same /// type with more general specifications of the other <code>location</code> attributes, /// the child entity's <code>path</code> attribute must match that of the parent entity /// as a prefix. /// </para> /// </summary> public string Path { get { return this._path; } set { this._path = value; } } // Check to see if Path property is set internal bool IsSetPath() { return this._path != null; } /// <summary> /// Gets and sets the property StatusCode. /// <para> /// The HTTP status code of a response. It is a valid field for the API entity types of /// <code>RESPONSE</code>, <code>RESPONSE_HEADER</code>, and <code>RESPONSE_BODY</code>. /// The default value is <code>*</code> for any status code. When an applicable child /// entity inherits the content of an entity of the same type with more general specifications /// of the other <code>location</code> attributes, the child entity's <code>statusCode</code> /// attribute must match that of the parent entity exactly. /// </para> /// </summary> public string StatusCode { get { return this._statusCode; } set { this._statusCode = value; } } // Check to see if StatusCode property is set internal bool IsSetStatusCode() { return this._statusCode != null; } /// <summary> /// Gets and sets the property Type. /// <para> /// The type of API entity to which the documentation content applies. Valid values are /// <code>API</code>, <code>AUTHORIZER</code>, <code>MODEL</code>, <code>RESOURCE</code>, /// <code>METHOD</code>, <code>PATH_PARAMETER</code>, <code>QUERY_PARAMETER</code>, <code>REQUEST_HEADER</code>, /// <code>REQUEST_BODY</code>, <code>RESPONSE</code>, <code>RESPONSE_HEADER</code>, and /// <code>RESPONSE_BODY</code>. Content inheritance does not apply to any entity of the /// <code>API</code>, <code>AUTHORIZER</code>, <code>METHOD</code>, <code>MODEL</code>, /// <code>REQUEST_BODY</code>, or <code>RESOURCE</code> type. /// </para> /// </summary> [AWSProperty(Required=true)] public DocumentationPartType Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } } }
161
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// A snapshot of the documentation of an API. /// </summary> public partial class DocumentationVersion { private DateTime? _createdDate; private string _description; private string _version; /// <summary> /// Gets and sets the property CreatedDate. /// <para> /// The date when the API documentation snapshot is created. /// </para> /// </summary> public DateTime CreatedDate { get { return this._createdDate.GetValueOrDefault(); } set { this._createdDate = value; } } // Check to see if CreatedDate property is set internal bool IsSetCreatedDate() { return this._createdDate.HasValue; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description of the API documentation snapshot. /// </para> /// </summary> public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// <summary> /// Gets and sets the property Version. /// <para> /// The version identifier of the API documentation snapshot. /// </para> /// </summary> public string Version { get { return this._version; } set { this._version = value; } } // Check to see if Version property is set internal bool IsSetVersion() { return this._version != null; } } }
95
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Represents a custom domain name as a user-friendly host name of an API (RestApi). /// </summary> public partial class DomainName { private string _certificateArn; private string _certificateName; private DateTime? _certificateUploadDate; private string _distributionDomainName; private string _distributionHostedZoneId; private DomainNameStatus _domainNameStatus; private string _domainNameStatusMessage; private EndpointConfiguration _endpointConfiguration; private MutualTlsAuthentication _mutualTlsAuthentication; private string _name; private string _ownershipVerificationCertificateArn; private string _regionalCertificateArn; private string _regionalCertificateName; private string _regionalDomainName; private string _regionalHostedZoneId; private SecurityPolicy _securityPolicy; private Dictionary<string, string> _tags = new Dictionary<string, string>(); /// <summary> /// Gets and sets the property CertificateArn. /// <para> /// The reference to an AWS-managed certificate that will be used by edge-optimized endpoint /// for this domain name. AWS Certificate Manager is the only supported source. /// </para> /// </summary> public string CertificateArn { get { return this._certificateArn; } set { this._certificateArn = value; } } // Check to see if CertificateArn property is set internal bool IsSetCertificateArn() { return this._certificateArn != null; } /// <summary> /// Gets and sets the property CertificateName. /// <para> /// The name of the certificate that will be used by edge-optimized endpoint for this /// domain name. /// </para> /// </summary> public string CertificateName { get { return this._certificateName; } set { this._certificateName = value; } } // Check to see if CertificateName property is set internal bool IsSetCertificateName() { return this._certificateName != null; } /// <summary> /// Gets and sets the property CertificateUploadDate. /// <para> /// The timestamp when the certificate that was used by edge-optimized endpoint for this /// domain name was uploaded. /// </para> /// </summary> public DateTime CertificateUploadDate { get { return this._certificateUploadDate.GetValueOrDefault(); } set { this._certificateUploadDate = value; } } // Check to see if CertificateUploadDate property is set internal bool IsSetCertificateUploadDate() { return this._certificateUploadDate.HasValue; } /// <summary> /// Gets and sets the property DistributionDomainName. /// <para> /// The domain name of the Amazon CloudFront distribution associated with this custom /// domain name for an edge-optimized endpoint. You set up this association when adding /// a DNS record pointing the custom domain name to this distribution name. For more information /// about CloudFront distributions, see the Amazon CloudFront documentation. /// </para> /// </summary> public string DistributionDomainName { get { return this._distributionDomainName; } set { this._distributionDomainName = value; } } // Check to see if DistributionDomainName property is set internal bool IsSetDistributionDomainName() { return this._distributionDomainName != null; } /// <summary> /// Gets and sets the property DistributionHostedZoneId. /// <para> /// The region-agnostic Amazon Route 53 Hosted Zone ID of the edge-optimized endpoint. /// The valid value is <code>Z2FDTNDATAQYW2</code> for all the regions. For more information, /// see Set up a Regional Custom Domain Name and AWS Regions and Endpoints for API Gateway. /// /// </para> /// </summary> public string DistributionHostedZoneId { get { return this._distributionHostedZoneId; } set { this._distributionHostedZoneId = value; } } // Check to see if DistributionHostedZoneId property is set internal bool IsSetDistributionHostedZoneId() { return this._distributionHostedZoneId != null; } /// <summary> /// Gets and sets the property DomainNameStatus. /// <para> /// The status of the DomainName migration. The valid values are <code>AVAILABLE</code> /// and <code>UPDATING</code>. If the status is <code>UPDATING</code>, the domain cannot /// be modified further until the existing operation is complete. If it is <code>AVAILABLE</code>, /// the domain can be updated. /// </para> /// </summary> public DomainNameStatus DomainNameStatus { get { return this._domainNameStatus; } set { this._domainNameStatus = value; } } // Check to see if DomainNameStatus property is set internal bool IsSetDomainNameStatus() { return this._domainNameStatus != null; } /// <summary> /// Gets and sets the property DomainNameStatusMessage. /// <para> /// An optional text message containing detailed information about status of the DomainName /// migration. /// </para> /// </summary> public string DomainNameStatusMessage { get { return this._domainNameStatusMessage; } set { this._domainNameStatusMessage = value; } } // Check to see if DomainNameStatusMessage property is set internal bool IsSetDomainNameStatusMessage() { return this._domainNameStatusMessage != null; } /// <summary> /// Gets and sets the property EndpointConfiguration. /// <para> /// The endpoint configuration of this DomainName showing the endpoint types of the domain /// name. /// </para> /// </summary> public EndpointConfiguration EndpointConfiguration { get { return this._endpointConfiguration; } set { this._endpointConfiguration = value; } } // Check to see if EndpointConfiguration property is set internal bool IsSetEndpointConfiguration() { return this._endpointConfiguration != null; } /// <summary> /// Gets and sets the property MutualTlsAuthentication. /// <para> /// The mutual TLS authentication configuration for a custom domain name. If specified, /// API Gateway performs two-way authentication between the client and the server. Clients /// must present a trusted certificate to access your API. /// </para> /// </summary> public MutualTlsAuthentication MutualTlsAuthentication { get { return this._mutualTlsAuthentication; } set { this._mutualTlsAuthentication = value; } } // Check to see if MutualTlsAuthentication property is set internal bool IsSetMutualTlsAuthentication() { return this._mutualTlsAuthentication != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The custom domain name as an API host name, for example, <code>my-api.example.com</code>. /// </para> /// </summary> public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property OwnershipVerificationCertificateArn. /// <para> /// The ARN of the public certificate issued by ACM to validate ownership of your custom /// domain. Only required when configuring mutual TLS and using an ACM imported or private /// CA certificate ARN as the regionalCertificateArn. /// </para> /// </summary> public string OwnershipVerificationCertificateArn { get { return this._ownershipVerificationCertificateArn; } set { this._ownershipVerificationCertificateArn = value; } } // Check to see if OwnershipVerificationCertificateArn property is set internal bool IsSetOwnershipVerificationCertificateArn() { return this._ownershipVerificationCertificateArn != null; } /// <summary> /// Gets and sets the property RegionalCertificateArn. /// <para> /// The reference to an AWS-managed certificate that will be used for validating the regional /// domain name. AWS Certificate Manager is the only supported source. /// </para> /// </summary> public string RegionalCertificateArn { get { return this._regionalCertificateArn; } set { this._regionalCertificateArn = value; } } // Check to see if RegionalCertificateArn property is set internal bool IsSetRegionalCertificateArn() { return this._regionalCertificateArn != null; } /// <summary> /// Gets and sets the property RegionalCertificateName. /// <para> /// The name of the certificate that will be used for validating the regional domain name. /// </para> /// </summary> public string RegionalCertificateName { get { return this._regionalCertificateName; } set { this._regionalCertificateName = value; } } // Check to see if RegionalCertificateName property is set internal bool IsSetRegionalCertificateName() { return this._regionalCertificateName != null; } /// <summary> /// Gets and sets the property RegionalDomainName. /// <para> /// The domain name associated with the regional endpoint for this custom domain name. /// You set up this association by adding a DNS record that points the custom domain name /// to this regional domain name. The regional domain name is returned by API Gateway /// when you create a regional endpoint. /// </para> /// </summary> public string RegionalDomainName { get { return this._regionalDomainName; } set { this._regionalDomainName = value; } } // Check to see if RegionalDomainName property is set internal bool IsSetRegionalDomainName() { return this._regionalDomainName != null; } /// <summary> /// Gets and sets the property RegionalHostedZoneId. /// <para> /// The region-specific Amazon Route 53 Hosted Zone ID of the regional endpoint. For more /// information, see Set up a Regional Custom Domain Name and AWS Regions and Endpoints /// for API Gateway. /// </para> /// </summary> public string RegionalHostedZoneId { get { return this._regionalHostedZoneId; } set { this._regionalHostedZoneId = value; } } // Check to see if RegionalHostedZoneId property is set internal bool IsSetRegionalHostedZoneId() { return this._regionalHostedZoneId != null; } /// <summary> /// Gets and sets the property SecurityPolicy. /// <para> /// The Transport Layer Security (TLS) version + cipher suite for this DomainName. The /// valid values are <code>TLS_1_0</code> and <code>TLS_1_2</code>. /// </para> /// </summary> public SecurityPolicy SecurityPolicy { get { return this._securityPolicy; } set { this._securityPolicy = value; } } // Check to see if SecurityPolicy property is set internal bool IsSetSecurityPolicy() { return this._securityPolicy != null; } /// <summary> /// Gets and sets the property Tags. /// <para> /// The collection of tags. Each tag element is associated with a given resource. /// </para> /// </summary> public Dictionary<string, string> Tags { get { return this._tags; } set { this._tags = value; } } // Check to see if Tags property is set internal bool IsSetTags() { return this._tags != null && this._tags.Count > 0; } } }
386
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// The endpoint configuration to indicate the types of endpoints an API (RestApi) or /// its custom domain name (DomainName) has. /// </summary> public partial class EndpointConfiguration { private List<string> _types = new List<string>(); private List<string> _vpcEndpointIds = new List<string>(); /// <summary> /// Gets and sets the property Types. /// <para> /// A list of endpoint types of an API (RestApi) or its custom domain name (DomainName). /// For an edge-optimized API and its custom domain name, the endpoint type is <code>"EDGE"</code>. /// For a regional API and its custom domain name, the endpoint type is <code>REGIONAL</code>. /// For a private API, the endpoint type is <code>PRIVATE</code>. /// </para> /// </summary> public List<string> Types { get { return this._types; } set { this._types = value; } } // Check to see if Types property is set internal bool IsSetTypes() { return this._types != null && this._types.Count > 0; } /// <summary> /// Gets and sets the property VpcEndpointIds. /// <para> /// A list of VpcEndpointIds of an API (RestApi) against which to create Route53 ALIASes. /// It is only supported for <code>PRIVATE</code> endpoint type. /// </para> /// </summary> public List<string> VpcEndpointIds { get { return this._vpcEndpointIds; } set { this._vpcEndpointIds = value; } } // Check to see if VpcEndpointIds property is set internal bool IsSetVpcEndpointIds() { return this._vpcEndpointIds != null && this._vpcEndpointIds.Count > 0; } } }
81
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the FlushStageAuthorizersCache operation. /// Flushes all authorizer cache entries on a stage. /// </summary> public partial class FlushStageAuthorizersCacheRequest : AmazonAPIGatewayRequest { private string _restApiId; private string _stageName; /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } /// <summary> /// Gets and sets the property StageName. /// <para> /// The name of the stage to flush. /// </para> /// </summary> [AWSProperty(Required=true)] public string StageName { get { return this._stageName; } set { this._stageName = value; } } // Check to see if StageName property is set internal bool IsSetStageName() { return this._stageName != null; } } }
79
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// This is the response object from the FlushStageAuthorizersCache operation. /// </summary> public partial class FlushStageAuthorizersCacheResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the FlushStageCache operation. /// Flushes a stage's cache. /// </summary> public partial class FlushStageCacheRequest : AmazonAPIGatewayRequest { private string _restApiId; private string _stageName; /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } /// <summary> /// Gets and sets the property StageName. /// <para> /// The name of the stage to flush its cache. /// </para> /// </summary> [AWSProperty(Required=true)] public string StageName { get { return this._stageName; } set { this._stageName = value; } } // Check to see if StageName property is set internal bool IsSetStageName() { return this._stageName != null; } } }
79
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// This is the response object from the FlushStageCache operation. /// </summary> public partial class FlushStageCacheResponse : AmazonWebServiceResponse { } }
38
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// A gateway response of a given response type and status code, with optional response /// parameters and mapping templates. /// </summary> public partial class GatewayResponse { private bool? _defaultResponse; private Dictionary<string, string> _responseParameters = new Dictionary<string, string>(); private Dictionary<string, string> _responseTemplates = new Dictionary<string, string>(); private GatewayResponseType _responseType; private string _statusCode; /// <summary> /// Gets and sets the property DefaultResponse. /// <para> /// A Boolean flag to indicate whether this GatewayResponse is the default gateway response /// (<code>true</code>) or not (<code>false</code>). A default gateway response is one /// generated by API Gateway without any customization by an API developer. /// </para> /// </summary> public bool DefaultResponse { get { return this._defaultResponse.GetValueOrDefault(); } set { this._defaultResponse = value; } } // Check to see if DefaultResponse property is set internal bool IsSetDefaultResponse() { return this._defaultResponse.HasValue; } /// <summary> /// Gets and sets the property ResponseParameters. /// <para> /// Response parameters (paths, query strings and headers) of the GatewayResponse as a /// string-to-string map of key-value pairs. /// </para> /// </summary> public Dictionary<string, string> ResponseParameters { get { return this._responseParameters; } set { this._responseParameters = value; } } // Check to see if ResponseParameters property is set internal bool IsSetResponseParameters() { return this._responseParameters != null && this._responseParameters.Count > 0; } /// <summary> /// Gets and sets the property ResponseTemplates. /// <para> /// Response templates of the GatewayResponse as a string-to-string map of key-value pairs. /// </para> /// </summary> public Dictionary<string, string> ResponseTemplates { get { return this._responseTemplates; } set { this._responseTemplates = value; } } // Check to see if ResponseTemplates property is set internal bool IsSetResponseTemplates() { return this._responseTemplates != null && this._responseTemplates.Count > 0; } /// <summary> /// Gets and sets the property ResponseType. /// <para> /// The response type of the associated GatewayResponse. /// </para> /// </summary> public GatewayResponseType ResponseType { get { return this._responseType; } set { this._responseType = value; } } // Check to see if ResponseType property is set internal bool IsSetResponseType() { return this._responseType != null; } /// <summary> /// Gets and sets the property StatusCode. /// <para> /// The HTTP status code for this GatewayResponse. /// </para> /// </summary> public string StatusCode { get { return this._statusCode; } set { this._statusCode = value; } } // Check to see if StatusCode property is set internal bool IsSetStatusCode() { return this._statusCode != null; } } }
137
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the GenerateClientCertificate operation. /// Generates a ClientCertificate resource. /// </summary> public partial class GenerateClientCertificateRequest : AmazonAPIGatewayRequest { private string _description; private Dictionary<string, string> _tags = new Dictionary<string, string>(); /// <summary> /// Gets and sets the property Description. /// <para> /// The description of the ClientCertificate. /// </para> /// </summary> public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// <summary> /// Gets and sets the property Tags. /// <para> /// The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag /// key can be up to 128 characters and must not start with <code>aws:</code>. The tag /// value can be up to 256 characters. /// </para> /// </summary> public Dictionary<string, string> Tags { get { return this._tags; } set { this._tags = value; } } // Check to see if Tags property is set internal bool IsSetTags() { return this._tags != null && this._tags.Count > 0; } } }
79
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Represents a client certificate used to configure client-side SSL authentication while /// sending requests to the integration endpoint. /// </summary> public partial class GenerateClientCertificateResponse : AmazonWebServiceResponse { private string _clientCertificateId; private DateTime? _createdDate; private string _description; private DateTime? _expirationDate; private string _pemEncodedCertificate; private Dictionary<string, string> _tags = new Dictionary<string, string>(); /// <summary> /// Gets and sets the property ClientCertificateId. /// <para> /// The identifier of the client certificate. /// </para> /// </summary> public string ClientCertificateId { get { return this._clientCertificateId; } set { this._clientCertificateId = value; } } // Check to see if ClientCertificateId property is set internal bool IsSetClientCertificateId() { return this._clientCertificateId != null; } /// <summary> /// Gets and sets the property CreatedDate. /// <para> /// The timestamp when the client certificate was created. /// </para> /// </summary> public DateTime CreatedDate { get { return this._createdDate.GetValueOrDefault(); } set { this._createdDate = value; } } // Check to see if CreatedDate property is set internal bool IsSetCreatedDate() { return this._createdDate.HasValue; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description of the client certificate. /// </para> /// </summary> public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// <summary> /// Gets and sets the property ExpirationDate. /// <para> /// The timestamp when the client certificate will expire. /// </para> /// </summary> public DateTime ExpirationDate { get { return this._expirationDate.GetValueOrDefault(); } set { this._expirationDate = value; } } // Check to see if ExpirationDate property is set internal bool IsSetExpirationDate() { return this._expirationDate.HasValue; } /// <summary> /// Gets and sets the property PemEncodedCertificate. /// <para> /// The PEM-encoded public key of the client certificate, which can be used to configure /// certificate authentication in the integration endpoint . /// </para> /// </summary> public string PemEncodedCertificate { get { return this._pemEncodedCertificate; } set { this._pemEncodedCertificate = value; } } // Check to see if PemEncodedCertificate property is set internal bool IsSetPemEncodedCertificate() { return this._pemEncodedCertificate != null; } /// <summary> /// Gets and sets the property Tags. /// <para> /// The collection of tags. Each tag element is associated with a given resource. /// </para> /// </summary> public Dictionary<string, string> Tags { get { return this._tags; } set { this._tags = value; } } // Check to see if Tags property is set internal bool IsSetTags() { return this._tags != null && this._tags.Count > 0; } } }
154
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the GetAccount operation. /// Gets information about the current Account resource. /// </summary> public partial class GetAccountRequest : AmazonAPIGatewayRequest { } }
39
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Represents an AWS account that is associated with API Gateway. /// </summary> public partial class GetAccountResponse : AmazonWebServiceResponse { private string _apiKeyVersion; private string _cloudwatchRoleArn; private List<string> _features = new List<string>(); private ThrottleSettings _throttleSettings; /// <summary> /// Gets and sets the property ApiKeyVersion. /// <para> /// The version of the API keys used for the account. /// </para> /// </summary> public string ApiKeyVersion { get { return this._apiKeyVersion; } set { this._apiKeyVersion = value; } } // Check to see if ApiKeyVersion property is set internal bool IsSetApiKeyVersion() { return this._apiKeyVersion != null; } /// <summary> /// Gets and sets the property CloudwatchRoleArn. /// <para> /// The ARN of an Amazon CloudWatch role for the current Account. /// </para> /// </summary> public string CloudwatchRoleArn { get { return this._cloudwatchRoleArn; } set { this._cloudwatchRoleArn = value; } } // Check to see if CloudwatchRoleArn property is set internal bool IsSetCloudwatchRoleArn() { return this._cloudwatchRoleArn != null; } /// <summary> /// Gets and sets the property Features. /// <para> /// A list of features supported for the account. When usage plans are enabled, the features /// list will include an entry of <code>"UsagePlans"</code>. /// </para> /// </summary> public List<string> Features { get { return this._features; } set { this._features = value; } } // Check to see if Features property is set internal bool IsSetFeatures() { return this._features != null && this._features.Count > 0; } /// <summary> /// Gets and sets the property ThrottleSettings. /// <para> /// Specifies the API request limits configured for the current Account. /// </para> /// </summary> public ThrottleSettings ThrottleSettings { get { return this._throttleSettings; } set { this._throttleSettings = value; } } // Check to see if ThrottleSettings property is set internal bool IsSetThrottleSettings() { return this._throttleSettings != null; } } }
115
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the GetApiKey operation. /// Gets information about the current ApiKey resource. /// </summary> public partial class GetApiKeyRequest : AmazonAPIGatewayRequest { private string _apiKey; private bool? _includeValue; /// <summary> /// Gets and sets the property ApiKey. /// <para> /// The identifier of the ApiKey resource. /// </para> /// </summary> [AWSProperty(Required=true)] public string ApiKey { get { return this._apiKey; } set { this._apiKey = value; } } // Check to see if ApiKey property is set internal bool IsSetApiKey() { return this._apiKey != null; } /// <summary> /// Gets and sets the property IncludeValue. /// <para> /// A boolean flag to specify whether (<code>true</code>) or not (<code>false</code>) /// the result contains the key value. /// </para> /// </summary> public bool IncludeValue { get { return this._includeValue.GetValueOrDefault(); } set { this._includeValue = value; } } // Check to see if IncludeValue property is set internal bool IsSetIncludeValue() { return this._includeValue.HasValue; } } }
79
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// A resource that can be distributed to callers for executing Method resources that /// require an API key. API keys can be mapped to any Stage on any RestApi, which indicates /// that the callers with the API key can make requests to that stage. /// </summary> public partial class GetApiKeyResponse : AmazonWebServiceResponse { private DateTime? _createdDate; private string _customerId; private string _description; private bool? _enabled; private string _id; private DateTime? _lastUpdatedDate; private string _name; private List<string> _stageKeys = new List<string>(); private Dictionary<string, string> _tags = new Dictionary<string, string>(); private string _value; /// <summary> /// Gets and sets the property CreatedDate. /// <para> /// The timestamp when the API Key was created. /// </para> /// </summary> public DateTime CreatedDate { get { return this._createdDate.GetValueOrDefault(); } set { this._createdDate = value; } } // Check to see if CreatedDate property is set internal bool IsSetCreatedDate() { return this._createdDate.HasValue; } /// <summary> /// Gets and sets the property CustomerId. /// <para> /// An AWS Marketplace customer identifier , when integrating with the AWS SaaS Marketplace. /// </para> /// </summary> public string CustomerId { get { return this._customerId; } set { this._customerId = value; } } // Check to see if CustomerId property is set internal bool IsSetCustomerId() { return this._customerId != null; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description of the API Key. /// </para> /// </summary> public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// <summary> /// Gets and sets the property Enabled. /// <para> /// Specifies whether the API Key can be used by callers. /// </para> /// </summary> public bool Enabled { get { return this._enabled.GetValueOrDefault(); } set { this._enabled = value; } } // Check to see if Enabled property is set internal bool IsSetEnabled() { return this._enabled.HasValue; } /// <summary> /// Gets and sets the property Id. /// <para> /// The identifier of the API Key. /// </para> /// </summary> public string Id { get { return this._id; } set { this._id = value; } } // Check to see if Id property is set internal bool IsSetId() { return this._id != null; } /// <summary> /// Gets and sets the property LastUpdatedDate. /// <para> /// The timestamp when the API Key was last updated. /// </para> /// </summary> public DateTime LastUpdatedDate { get { return this._lastUpdatedDate.GetValueOrDefault(); } set { this._lastUpdatedDate = value; } } // Check to see if LastUpdatedDate property is set internal bool IsSetLastUpdatedDate() { return this._lastUpdatedDate.HasValue; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the API Key. /// </para> /// </summary> public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property StageKeys. /// <para> /// A list of Stage resources that are associated with the ApiKey resource. /// </para> /// </summary> public List<string> StageKeys { get { return this._stageKeys; } set { this._stageKeys = value; } } // Check to see if StageKeys property is set internal bool IsSetStageKeys() { return this._stageKeys != null && this._stageKeys.Count > 0; } /// <summary> /// Gets and sets the property Tags. /// <para> /// The collection of tags. Each tag element is associated with a given resource. /// </para> /// </summary> public Dictionary<string, string> Tags { get { return this._tags; } set { this._tags = value; } } // Check to see if Tags property is set internal bool IsSetTags() { return this._tags != null && this._tags.Count > 0; } /// <summary> /// Gets and sets the property Value. /// <para> /// The value of the API Key. /// </para> /// </summary> public string Value { get { return this._value; } set { this._value = value; } } // Check to see if Value property is set internal bool IsSetValue() { return this._value != null; } } }
230
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the GetApiKeys operation. /// Gets information about the current ApiKeys resource. /// </summary> public partial class GetApiKeysRequest : AmazonAPIGatewayRequest { private string _customerId; private bool? _includeValues; private int? _limit; private string _nameQuery; private string _position; /// <summary> /// Gets and sets the property CustomerId. /// <para> /// The identifier of a customer in AWS Marketplace or an external system, such as a developer /// portal. /// </para> /// </summary> public string CustomerId { get { return this._customerId; } set { this._customerId = value; } } // Check to see if CustomerId property is set internal bool IsSetCustomerId() { return this._customerId != null; } /// <summary> /// Gets and sets the property IncludeValues. /// <para> /// A boolean flag to specify whether (<code>true</code>) or not (<code>false</code>) /// the result contains key values. /// </para> /// </summary> public bool IncludeValues { get { return this._includeValues.GetValueOrDefault(); } set { this._includeValues = value; } } // Check to see if IncludeValues property is set internal bool IsSetIncludeValues() { return this._includeValues.HasValue; } /// <summary> /// Gets and sets the property Limit. /// <para> /// The maximum number of returned results per page. The default value is 25 and the maximum /// value is 500. /// </para> /// </summary> public int Limit { get { return this._limit.GetValueOrDefault(); } set { this._limit = value; } } // Check to see if Limit property is set internal bool IsSetLimit() { return this._limit.HasValue; } /// <summary> /// Gets and sets the property NameQuery. /// <para> /// The name of queried API keys. /// </para> /// </summary> public string NameQuery { get { return this._nameQuery; } set { this._nameQuery = value; } } // Check to see if NameQuery property is set internal bool IsSetNameQuery() { return this._nameQuery != null; } /// <summary> /// Gets and sets the property Position. /// <para> /// The current pagination position in the paged result set. /// </para> /// </summary> public string Position { get { return this._position; } set { this._position = value; } } // Check to see if Position property is set internal bool IsSetPosition() { return this._position != null; } } }
137
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Represents a collection of API keys as represented by an ApiKeys resource. /// </summary> public partial class GetApiKeysResponse : AmazonWebServiceResponse { private List<ApiKey> _items = new List<ApiKey>(); private string _position; private List<string> _warnings = new List<string>(); /// <summary> /// Gets and sets the property Items. /// <para> /// The current page of elements from this collection. /// </para> /// </summary> public List<ApiKey> Items { get { return this._items; } set { this._items = value; } } // Check to see if Items property is set internal bool IsSetItems() { return this._items != null && this._items.Count > 0; } /// <summary> /// Gets and sets the property Position. /// </summary> public string Position { get { return this._position; } set { this._position = value; } } // Check to see if Position property is set internal bool IsSetPosition() { return this._position != null; } /// <summary> /// Gets and sets the property Warnings. /// <para> /// A list of warning messages logged during the import of API keys when the <code>failOnWarnings</code> /// option is set to true. /// </para> /// </summary> public List<string> Warnings { get { return this._warnings; } set { this._warnings = value; } } // Check to see if Warnings property is set internal bool IsSetWarnings() { return this._warnings != null && this._warnings.Count > 0; } } }
93
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the GetAuthorizer operation. /// Describe an existing Authorizer resource. /// </summary> public partial class GetAuthorizerRequest : AmazonAPIGatewayRequest { private string _authorizerId; private string _restApiId; /// <summary> /// Gets and sets the property AuthorizerId. /// <para> /// The identifier of the Authorizer resource. /// </para> /// </summary> [AWSProperty(Required=true)] public string AuthorizerId { get { return this._authorizerId; } set { this._authorizerId = value; } } // Check to see if AuthorizerId property is set internal bool IsSetAuthorizerId() { return this._authorizerId != null; } /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } } }
79
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Represents an authorization layer for methods. If enabled on a method, API Gateway /// will activate the authorizer when a client calls the method. /// </summary> public partial class GetAuthorizerResponse : AmazonWebServiceResponse { private string _authorizerCredentials; private int? _authorizerResultTtlInSeconds; private string _authorizerUri; private string _authType; private string _id; private string _identitySource; private string _identityValidationExpression; private string _name; private List<string> _providerarNs = new List<string>(); private AuthorizerType _type; /// <summary> /// Gets and sets the property AuthorizerCredentials. /// <para> /// Specifies the required credentials as an IAM role for API Gateway to invoke the authorizer. /// To specify an IAM role for API Gateway to assume, use the role's Amazon Resource Name /// (ARN). To use resource-based permissions on the Lambda function, specify null. /// </para> /// </summary> public string AuthorizerCredentials { get { return this._authorizerCredentials; } set { this._authorizerCredentials = value; } } // Check to see if AuthorizerCredentials property is set internal bool IsSetAuthorizerCredentials() { return this._authorizerCredentials != null; } /// <summary> /// Gets and sets the property AuthorizerResultTtlInSeconds. /// <para> /// The TTL in seconds of cached authorizer results. If it equals 0, authorization caching /// is disabled. If it is greater than 0, API Gateway will cache authorizer responses. /// If this field is not set, the default value is 300. The maximum value is 3600, or /// 1 hour. /// </para> /// </summary> public int AuthorizerResultTtlInSeconds { get { return this._authorizerResultTtlInSeconds.GetValueOrDefault(); } set { this._authorizerResultTtlInSeconds = value; } } // Check to see if AuthorizerResultTtlInSeconds property is set internal bool IsSetAuthorizerResultTtlInSeconds() { return this._authorizerResultTtlInSeconds.HasValue; } /// <summary> /// Gets and sets the property AuthorizerUri. /// <para> /// Specifies the authorizer's Uniform Resource Identifier (URI). For <code>TOKEN</code> /// or <code>REQUEST</code> authorizers, this must be a well-formed Lambda function URI, /// for example, <code>arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:{account_id}:function:{lambda_function_name}/invocations</code>. /// In general, the URI has this form <code>arn:aws:apigateway:{region}:lambda:path/{service_api}</code>, /// where <code>{region}</code> is the same as the region hosting the Lambda function, /// <code>path</code> indicates that the remaining substring in the URI should be treated /// as the path to the resource, including the initial <code>/</code>. For Lambda functions, /// this is usually of the form <code>/2015-03-31/functions/[FunctionARN]/invocations</code>. /// </para> /// </summary> public string AuthorizerUri { get { return this._authorizerUri; } set { this._authorizerUri = value; } } // Check to see if AuthorizerUri property is set internal bool IsSetAuthorizerUri() { return this._authorizerUri != null; } /// <summary> /// Gets and sets the property AuthType. /// <para> /// Optional customer-defined field, used in OpenAPI imports and exports without functional /// impact. /// </para> /// </summary> public string AuthType { get { return this._authType; } set { this._authType = value; } } // Check to see if AuthType property is set internal bool IsSetAuthType() { return this._authType != null; } /// <summary> /// Gets and sets the property Id. /// <para> /// The identifier for the authorizer resource. /// </para> /// </summary> public string Id { get { return this._id; } set { this._id = value; } } // Check to see if Id property is set internal bool IsSetId() { return this._id != null; } /// <summary> /// Gets and sets the property IdentitySource. /// <para> /// The identity source for which authorization is requested. For a <code>TOKEN</code> /// or <code>COGNITO_USER_POOLS</code> authorizer, this is required and specifies the /// request header mapping expression for the custom header holding the authorization /// token submitted by the client. For example, if the token header name is <code>Auth</code>, /// the header mapping expression is <code>method.request.header.Auth</code>. For the /// <code>REQUEST</code> authorizer, this is required when authorization caching is enabled. /// The value is a comma-separated string of one or more mapping expressions of the specified /// request parameters. For example, if an <code>Auth</code> header, a <code>Name</code> /// query string parameter are defined as identity sources, this value is <code>method.request.header.Auth</code>, /// <code>method.request.querystring.Name</code>. These parameters will be used to derive /// the authorization caching key and to perform runtime validation of the <code>REQUEST</code> /// authorizer by verifying all of the identity-related request parameters are present, /// not null and non-empty. Only when this is true does the authorizer invoke the authorizer /// Lambda function, otherwise, it returns a 401 Unauthorized response without calling /// the Lambda function. The valid value is a string of comma-separated mapping expressions /// of the specified request parameters. When the authorization caching is not enabled, /// this property is optional. /// </para> /// </summary> public string IdentitySource { get { return this._identitySource; } set { this._identitySource = value; } } // Check to see if IdentitySource property is set internal bool IsSetIdentitySource() { return this._identitySource != null; } /// <summary> /// Gets and sets the property IdentityValidationExpression. /// <para> /// A validation expression for the incoming identity token. For <code>TOKEN</code> authorizers, /// this value is a regular expression. For <code>COGNITO_USER_POOLS</code> authorizers, /// API Gateway will match the <code>aud</code> field of the incoming token from the client /// against the specified regular expression. It will invoke the authorizer's Lambda function /// when there is a match. Otherwise, it will return a 401 Unauthorized response without /// calling the Lambda function. The validation expression does not apply to the <code>REQUEST</code> /// authorizer. /// </para> /// </summary> public string IdentityValidationExpression { get { return this._identityValidationExpression; } set { this._identityValidationExpression = value; } } // Check to see if IdentityValidationExpression property is set internal bool IsSetIdentityValidationExpression() { return this._identityValidationExpression != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The name of the authorizer. /// </para> /// </summary> public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property ProviderARNs. /// <para> /// A list of the Amazon Cognito user pool ARNs for the <code>COGNITO_USER_POOLS</code> /// authorizer. Each element is of this format: <code>arn:aws:cognito-idp:{region}:{account_id}:userpool/{user_pool_id}</code>. /// For a <code>TOKEN</code> or <code>REQUEST</code> authorizer, this is not defined. /// /// </para> /// </summary> public List<string> ProviderARNs { get { return this._providerarNs; } set { this._providerarNs = value; } } // Check to see if ProviderARNs property is set internal bool IsSetProviderARNs() { return this._providerarNs != null && this._providerarNs.Count > 0; } /// <summary> /// Gets and sets the property Type. /// <para> /// The authorizer type. Valid values are <code>TOKEN</code> for a Lambda function using /// a single authorization token submitted in a custom header, <code>REQUEST</code> for /// a Lambda function using incoming request parameters, and <code>COGNITO_USER_POOLS</code> /// for using an Amazon Cognito user pool. /// </para> /// </summary> public AuthorizerType Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } } }
270
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the GetAuthorizers operation. /// Describe an existing Authorizers resource. /// </summary> public partial class GetAuthorizersRequest : AmazonAPIGatewayRequest { private int? _limit; private string _position; private string _restApiId; /// <summary> /// Gets and sets the property Limit. /// <para> /// The maximum number of returned results per page. The default value is 25 and the maximum /// value is 500. /// </para> /// </summary> public int Limit { get { return this._limit.GetValueOrDefault(); } set { this._limit = value; } } // Check to see if Limit property is set internal bool IsSetLimit() { return this._limit.HasValue; } /// <summary> /// Gets and sets the property Position. /// <para> /// The current pagination position in the paged result set. /// </para> /// </summary> public string Position { get { return this._position; } set { this._position = value; } } // Check to see if Position property is set internal bool IsSetPosition() { return this._position != null; } /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } } }
98
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Represents a collection of Authorizer resources. /// </summary> public partial class GetAuthorizersResponse : AmazonWebServiceResponse { private List<Authorizer> _items = new List<Authorizer>(); private string _position; /// <summary> /// Gets and sets the property Items. /// <para> /// The current page of elements from this collection. /// </para> /// </summary> public List<Authorizer> Items { get { return this._items; } set { this._items = value; } } // Check to see if Items property is set internal bool IsSetItems() { return this._items != null && this._items.Count > 0; } /// <summary> /// Gets and sets the property Position. /// </summary> public string Position { get { return this._position; } set { this._position = value; } } // Check to see if Position property is set internal bool IsSetPosition() { return this._position != null; } } }
73
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the GetBasePathMapping operation. /// Describe a BasePathMapping resource. /// </summary> public partial class GetBasePathMappingRequest : AmazonAPIGatewayRequest { private string _basePath; private string _domainName; /// <summary> /// Gets and sets the property BasePath. /// <para> /// The base path name that callers of the API must provide as part of the URL after the /// domain name. This value must be unique for all of the mappings across a single API. /// Specify '(none)' if you do not want callers to specify any base path name after the /// domain name. /// </para> /// </summary> [AWSProperty(Required=true)] public string BasePath { get { return this._basePath; } set { this._basePath = value; } } // Check to see if BasePath property is set internal bool IsSetBasePath() { return this._basePath != null; } /// <summary> /// Gets and sets the property DomainName. /// <para> /// The domain name of the BasePathMapping resource to be described. /// </para> /// </summary> [AWSProperty(Required=true)] public string DomainName { get { return this._domainName; } set { this._domainName = value; } } // Check to see if DomainName property is set internal bool IsSetDomainName() { return this._domainName != null; } } }
82
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Represents the base path that callers of the API must provide as part of the URL after /// the domain name. /// </summary> public partial class GetBasePathMappingResponse : AmazonWebServiceResponse { private string _basePath; private string _restApiId; private string _stage; /// <summary> /// Gets and sets the property BasePath. /// <para> /// The base path name that callers of the API must provide as part of the URL after the /// domain name. /// </para> /// </summary> public string BasePath { get { return this._basePath; } set { this._basePath = value; } } // Check to see if BasePath property is set internal bool IsSetBasePath() { return this._basePath != null; } /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } /// <summary> /// Gets and sets the property Stage. /// <para> /// The name of the associated stage. /// </para> /// </summary> public string Stage { get { return this._stage; } set { this._stage = value; } } // Check to see if Stage property is set internal bool IsSetStage() { return this._stage != null; } } }
97
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the GetBasePathMappings operation. /// Represents a collection of BasePathMapping resources. /// </summary> public partial class GetBasePathMappingsRequest : AmazonAPIGatewayRequest { private string _domainName; private int? _limit; private string _position; /// <summary> /// Gets and sets the property DomainName. /// <para> /// The domain name of a BasePathMapping resource. /// </para> /// </summary> [AWSProperty(Required=true)] public string DomainName { get { return this._domainName; } set { this._domainName = value; } } // Check to see if DomainName property is set internal bool IsSetDomainName() { return this._domainName != null; } /// <summary> /// Gets and sets the property Limit. /// <para> /// The maximum number of returned results per page. The default value is 25 and the maximum /// value is 500. /// </para> /// </summary> public int Limit { get { return this._limit.GetValueOrDefault(); } set { this._limit = value; } } // Check to see if Limit property is set internal bool IsSetLimit() { return this._limit.HasValue; } /// <summary> /// Gets and sets the property Position. /// <para> /// The current pagination position in the paged result set. /// </para> /// </summary> public string Position { get { return this._position; } set { this._position = value; } } // Check to see if Position property is set internal bool IsSetPosition() { return this._position != null; } } }
98
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Represents a collection of BasePathMapping resources. /// </summary> public partial class GetBasePathMappingsResponse : AmazonWebServiceResponse { private List<BasePathMapping> _items = new List<BasePathMapping>(); private string _position; /// <summary> /// Gets and sets the property Items. /// <para> /// The current page of elements from this collection. /// </para> /// </summary> public List<BasePathMapping> Items { get { return this._items; } set { this._items = value; } } // Check to see if Items property is set internal bool IsSetItems() { return this._items != null && this._items.Count > 0; } /// <summary> /// Gets and sets the property Position. /// </summary> public string Position { get { return this._position; } set { this._position = value; } } // Check to see if Position property is set internal bool IsSetPosition() { return this._position != null; } } }
73
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the GetClientCertificate operation. /// Gets information about the current ClientCertificate resource. /// </summary> public partial class GetClientCertificateRequest : AmazonAPIGatewayRequest { private string _clientCertificateId; /// <summary> /// Gets and sets the property ClientCertificateId. /// <para> /// The identifier of the ClientCertificate resource to be described. /// </para> /// </summary> [AWSProperty(Required=true)] public string ClientCertificateId { get { return this._clientCertificateId; } set { this._clientCertificateId = value; } } // Check to see if ClientCertificateId property is set internal bool IsSetClientCertificateId() { return this._clientCertificateId != null; } } }
59
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Represents a client certificate used to configure client-side SSL authentication while /// sending requests to the integration endpoint. /// </summary> public partial class GetClientCertificateResponse : AmazonWebServiceResponse { private string _clientCertificateId; private DateTime? _createdDate; private string _description; private DateTime? _expirationDate; private string _pemEncodedCertificate; private Dictionary<string, string> _tags = new Dictionary<string, string>(); /// <summary> /// Gets and sets the property ClientCertificateId. /// <para> /// The identifier of the client certificate. /// </para> /// </summary> public string ClientCertificateId { get { return this._clientCertificateId; } set { this._clientCertificateId = value; } } // Check to see if ClientCertificateId property is set internal bool IsSetClientCertificateId() { return this._clientCertificateId != null; } /// <summary> /// Gets and sets the property CreatedDate. /// <para> /// The timestamp when the client certificate was created. /// </para> /// </summary> public DateTime CreatedDate { get { return this._createdDate.GetValueOrDefault(); } set { this._createdDate = value; } } // Check to see if CreatedDate property is set internal bool IsSetCreatedDate() { return this._createdDate.HasValue; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description of the client certificate. /// </para> /// </summary> public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// <summary> /// Gets and sets the property ExpirationDate. /// <para> /// The timestamp when the client certificate will expire. /// </para> /// </summary> public DateTime ExpirationDate { get { return this._expirationDate.GetValueOrDefault(); } set { this._expirationDate = value; } } // Check to see if ExpirationDate property is set internal bool IsSetExpirationDate() { return this._expirationDate.HasValue; } /// <summary> /// Gets and sets the property PemEncodedCertificate. /// <para> /// The PEM-encoded public key of the client certificate, which can be used to configure /// certificate authentication in the integration endpoint . /// </para> /// </summary> public string PemEncodedCertificate { get { return this._pemEncodedCertificate; } set { this._pemEncodedCertificate = value; } } // Check to see if PemEncodedCertificate property is set internal bool IsSetPemEncodedCertificate() { return this._pemEncodedCertificate != null; } /// <summary> /// Gets and sets the property Tags. /// <para> /// The collection of tags. Each tag element is associated with a given resource. /// </para> /// </summary> public Dictionary<string, string> Tags { get { return this._tags; } set { this._tags = value; } } // Check to see if Tags property is set internal bool IsSetTags() { return this._tags != null && this._tags.Count > 0; } } }
154
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the GetClientCertificates operation. /// Gets a collection of ClientCertificate resources. /// </summary> public partial class GetClientCertificatesRequest : AmazonAPIGatewayRequest { private int? _limit; private string _position; /// <summary> /// Gets and sets the property Limit. /// <para> /// The maximum number of returned results per page. The default value is 25 and the maximum /// value is 500. /// </para> /// </summary> public int Limit { get { return this._limit.GetValueOrDefault(); } set { this._limit = value; } } // Check to see if Limit property is set internal bool IsSetLimit() { return this._limit.HasValue; } /// <summary> /// Gets and sets the property Position. /// <para> /// The current pagination position in the paged result set. /// </para> /// </summary> public string Position { get { return this._position; } set { this._position = value; } } // Check to see if Position property is set internal bool IsSetPosition() { return this._position != null; } } }
78
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Represents a collection of ClientCertificate resources. /// </summary> public partial class GetClientCertificatesResponse : AmazonWebServiceResponse { private List<ClientCertificate> _items = new List<ClientCertificate>(); private string _position; /// <summary> /// Gets and sets the property Items. /// <para> /// The current page of elements from this collection. /// </para> /// </summary> public List<ClientCertificate> Items { get { return this._items; } set { this._items = value; } } // Check to see if Items property is set internal bool IsSetItems() { return this._items != null && this._items.Count > 0; } /// <summary> /// Gets and sets the property Position. /// </summary> public string Position { get { return this._position; } set { this._position = value; } } // Check to see if Position property is set internal bool IsSetPosition() { return this._position != null; } } }
73
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the GetDeployment operation. /// Gets information about a Deployment resource. /// </summary> public partial class GetDeploymentRequest : AmazonAPIGatewayRequest { private string _deploymentId; private List<string> _embed = new List<string>(); private string _restApiId; /// <summary> /// Gets and sets the property DeploymentId. /// <para> /// The identifier of the Deployment resource to get information about. /// </para> /// </summary> [AWSProperty(Required=true)] public string DeploymentId { get { return this._deploymentId; } set { this._deploymentId = value; } } // Check to see if DeploymentId property is set internal bool IsSetDeploymentId() { return this._deploymentId != null; } /// <summary> /// Gets and sets the property Embed. /// <para> /// A query parameter to retrieve the specified embedded resources of the returned Deployment /// resource in the response. In a REST API call, this <code>embed</code> parameter value /// is a list of comma-separated strings, as in <code>GET /restapis/{restapi_id}/deployments/{deployment_id}?embed=var1,var2</code>. /// The SDK and other platform-dependent libraries might use a different format for the /// list. Currently, this request supports only retrieval of the embedded API summary /// this way. Hence, the parameter value must be a single-valued list containing only /// the <code>"apisummary"</code> string. For example, <code>GET /restapis/{restapi_id}/deployments/{deployment_id}?embed=apisummary</code>. /// </para> /// </summary> public List<string> Embed { get { return this._embed; } set { this._embed = value; } } // Check to see if Embed property is set internal bool IsSetEmbed() { return this._embed != null && this._embed.Count > 0; } /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } } }
104
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// An immutable representation of a RestApi resource that can be called by users using /// Stages. A deployment must be associated with a Stage for it to be callable over the /// Internet. /// </summary> public partial class GetDeploymentResponse : AmazonWebServiceResponse { private Dictionary<string, Dictionary<string, MethodSnapshot>> _apiSummary = new Dictionary<string, Dictionary<string, MethodSnapshot>>(); private DateTime? _createdDate; private string _description; private string _id; /// <summary> /// Gets and sets the property ApiSummary. /// <para> /// A summary of the RestApi at the date and time that the deployment resource was created. /// </para> /// </summary> public Dictionary<string, Dictionary<string, MethodSnapshot>> ApiSummary { get { return this._apiSummary; } set { this._apiSummary = value; } } // Check to see if ApiSummary property is set internal bool IsSetApiSummary() { return this._apiSummary != null && this._apiSummary.Count > 0; } /// <summary> /// Gets and sets the property CreatedDate. /// <para> /// The date and time that the deployment resource was created. /// </para> /// </summary> public DateTime CreatedDate { get { return this._createdDate.GetValueOrDefault(); } set { this._createdDate = value; } } // Check to see if CreatedDate property is set internal bool IsSetCreatedDate() { return this._createdDate.HasValue; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description for the deployment resource. /// </para> /// </summary> public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// <summary> /// Gets and sets the property Id. /// <para> /// The identifier for the deployment resource. /// </para> /// </summary> public string Id { get { return this._id; } set { this._id = value; } } // Check to see if Id property is set internal bool IsSetId() { return this._id != null; } } }
116
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the GetDeployments operation. /// Gets information about a Deployments collection. /// </summary> public partial class GetDeploymentsRequest : AmazonAPIGatewayRequest { private int? _limit; private string _position; private string _restApiId; /// <summary> /// Gets and sets the property Limit. /// <para> /// The maximum number of returned results per page. The default value is 25 and the maximum /// value is 500. /// </para> /// </summary> public int Limit { get { return this._limit.GetValueOrDefault(); } set { this._limit = value; } } // Check to see if Limit property is set internal bool IsSetLimit() { return this._limit.HasValue; } /// <summary> /// Gets and sets the property Position. /// <para> /// The current pagination position in the paged result set. /// </para> /// </summary> public string Position { get { return this._position; } set { this._position = value; } } // Check to see if Position property is set internal bool IsSetPosition() { return this._position != null; } /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } } }
98
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Represents a collection resource that contains zero or more references to your existing /// deployments, and links that guide you on how to interact with your collection. The /// collection offers a paginated view of the contained deployments. /// </summary> public partial class GetDeploymentsResponse : AmazonWebServiceResponse { private List<Deployment> _items = new List<Deployment>(); private string _position; /// <summary> /// Gets and sets the property Items. /// <para> /// The current page of elements from this collection. /// </para> /// </summary> public List<Deployment> Items { get { return this._items; } set { this._items = value; } } // Check to see if Items property is set internal bool IsSetItems() { return this._items != null && this._items.Count > 0; } /// <summary> /// Gets and sets the property Position. /// </summary> public string Position { get { return this._position; } set { this._position = value; } } // Check to see if Position property is set internal bool IsSetPosition() { return this._position != null; } } }
75
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the GetDocumentationPart operation. /// Gets a documentation part. /// </summary> public partial class GetDocumentationPartRequest : AmazonAPIGatewayRequest { private string _documentationPartId; private string _restApiId; /// <summary> /// Gets and sets the property DocumentationPartId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string DocumentationPartId { get { return this._documentationPartId; } set { this._documentationPartId = value; } } // Check to see if DocumentationPartId property is set internal bool IsSetDocumentationPartId() { return this._documentationPartId != null; } /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } } }
79
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// A documentation part for a targeted API entity. /// </summary> public partial class GetDocumentationPartResponse : AmazonWebServiceResponse { private string _id; private DocumentationPartLocation _location; private string _properties; /// <summary> /// Gets and sets the property Id. /// <para> /// The DocumentationPart identifier, generated by API Gateway when the <code>DocumentationPart</code> /// is created. /// </para> /// </summary> public string Id { get { return this._id; } set { this._id = value; } } // Check to see if Id property is set internal bool IsSetId() { return this._id != null; } /// <summary> /// Gets and sets the property Location. /// <para> /// The location of the API entity to which the documentation applies. Valid fields depend /// on the targeted API entity type. All the valid location fields are not required. If /// not explicitly specified, a valid location field is treated as a wildcard and associated /// documentation content may be inherited by matching entities, unless overridden. /// </para> /// </summary> public DocumentationPartLocation Location { get { return this._location; } set { this._location = value; } } // Check to see if Location property is set internal bool IsSetLocation() { return this._location != null; } /// <summary> /// Gets and sets the property Properties. /// <para> /// A content map of API-specific key-value pairs describing the targeted API entity. /// The map must be encoded as a JSON string, e.g., <code>"{ \"description\": \"The API /// does ...\" }"</code>. Only OpenAPI-compliant documentation-related fields from the /// properties map are exported and, hence, published as part of the API entity definitions, /// while the original documentation parts are exported in a OpenAPI extension of <code>x-amazon-apigateway-documentation</code>. /// </para> /// </summary> public string Properties { get { return this._properties; } set { this._properties = value; } } // Check to see if Properties property is set internal bool IsSetProperties() { return this._properties != null; } } }
103
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the GetDocumentationParts operation. /// Gets documentation parts. /// </summary> public partial class GetDocumentationPartsRequest : AmazonAPIGatewayRequest { private int? _limit; private LocationStatusType _locationStatus; private string _nameQuery; private string _path; private string _position; private string _restApiId; private DocumentationPartType _type; /// <summary> /// Gets and sets the property Limit. /// <para> /// The maximum number of returned results per page. The default value is 25 and the maximum /// value is 500. /// </para> /// </summary> public int Limit { get { return this._limit.GetValueOrDefault(); } set { this._limit = value; } } // Check to see if Limit property is set internal bool IsSetLimit() { return this._limit.HasValue; } /// <summary> /// Gets and sets the property LocationStatus. /// <para> /// The status of the API documentation parts to retrieve. Valid values are <code>DOCUMENTED</code> /// for retrieving DocumentationPart resources with content and <code>UNDOCUMENTED</code> /// for DocumentationPart resources without content. /// </para> /// </summary> public LocationStatusType LocationStatus { get { return this._locationStatus; } set { this._locationStatus = value; } } // Check to see if LocationStatus property is set internal bool IsSetLocationStatus() { return this._locationStatus != null; } /// <summary> /// Gets and sets the property NameQuery. /// <para> /// The name of API entities of the to-be-retrieved documentation parts. /// </para> /// </summary> public string NameQuery { get { return this._nameQuery; } set { this._nameQuery = value; } } // Check to see if NameQuery property is set internal bool IsSetNameQuery() { return this._nameQuery != null; } /// <summary> /// Gets and sets the property Path. /// <para> /// The path of API entities of the to-be-retrieved documentation parts. /// </para> /// </summary> public string Path { get { return this._path; } set { this._path = value; } } // Check to see if Path property is set internal bool IsSetPath() { return this._path != null; } /// <summary> /// Gets and sets the property Position. /// <para> /// The current pagination position in the paged result set. /// </para> /// </summary> public string Position { get { return this._position; } set { this._position = value; } } // Check to see if Position property is set internal bool IsSetPosition() { return this._position != null; } /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } /// <summary> /// Gets and sets the property Type. /// <para> /// The type of API entities of the to-be-retrieved documentation parts. /// </para> /// </summary> public DocumentationPartType Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } } }
176
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// The collection of documentation parts of an API. /// </summary> public partial class GetDocumentationPartsResponse : AmazonWebServiceResponse { private List<DocumentationPart> _items = new List<DocumentationPart>(); private string _position; /// <summary> /// Gets and sets the property Items. /// <para> /// The current page of elements from this collection. /// </para> /// </summary> public List<DocumentationPart> Items { get { return this._items; } set { this._items = value; } } // Check to see if Items property is set internal bool IsSetItems() { return this._items != null && this._items.Count > 0; } /// <summary> /// Gets and sets the property Position. /// </summary> public string Position { get { return this._position; } set { this._position = value; } } // Check to see if Position property is set internal bool IsSetPosition() { return this._position != null; } } }
73
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the GetDocumentationVersion operation. /// Gets a documentation version. /// </summary> public partial class GetDocumentationVersionRequest : AmazonAPIGatewayRequest { private string _documentationVersion; private string _restApiId; /// <summary> /// Gets and sets the property DocumentationVersion. /// <para> /// The version identifier of the to-be-retrieved documentation snapshot. /// </para> /// </summary> [AWSProperty(Required=true)] public string DocumentationVersion { get { return this._documentationVersion; } set { this._documentationVersion = value; } } // Check to see if DocumentationVersion property is set internal bool IsSetDocumentationVersion() { return this._documentationVersion != null; } /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } } }
79
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// A snapshot of the documentation of an API. /// </summary> public partial class GetDocumentationVersionResponse : AmazonWebServiceResponse { private DateTime? _createdDate; private string _description; private string _version; /// <summary> /// Gets and sets the property CreatedDate. /// <para> /// The date when the API documentation snapshot is created. /// </para> /// </summary> public DateTime CreatedDate { get { return this._createdDate.GetValueOrDefault(); } set { this._createdDate = value; } } // Check to see if CreatedDate property is set internal bool IsSetCreatedDate() { return this._createdDate.HasValue; } /// <summary> /// Gets and sets the property Description. /// <para> /// The description of the API documentation snapshot. /// </para> /// </summary> public string Description { get { return this._description; } set { this._description = value; } } // Check to see if Description property is set internal bool IsSetDescription() { return this._description != null; } /// <summary> /// Gets and sets the property Version. /// <para> /// The version identifier of the API documentation snapshot. /// </para> /// </summary> public string Version { get { return this._version; } set { this._version = value; } } // Check to see if Version property is set internal bool IsSetVersion() { return this._version != null; } } }
95
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the GetDocumentationVersions operation. /// Gets documentation versions. /// </summary> public partial class GetDocumentationVersionsRequest : AmazonAPIGatewayRequest { private int? _limit; private string _position; private string _restApiId; /// <summary> /// Gets and sets the property Limit. /// <para> /// The maximum number of returned results per page. The default value is 25 and the maximum /// value is 500. /// </para> /// </summary> public int Limit { get { return this._limit.GetValueOrDefault(); } set { this._limit = value; } } // Check to see if Limit property is set internal bool IsSetLimit() { return this._limit.HasValue; } /// <summary> /// Gets and sets the property Position. /// <para> /// The current pagination position in the paged result set. /// </para> /// </summary> public string Position { get { return this._position; } set { this._position = value; } } // Check to see if Position property is set internal bool IsSetPosition() { return this._position != null; } /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } } }
98
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// The collection of documentation snapshots of an API. /// </summary> public partial class GetDocumentationVersionsResponse : AmazonWebServiceResponse { private List<DocumentationVersion> _items = new List<DocumentationVersion>(); private string _position; /// <summary> /// Gets and sets the property Items. /// <para> /// The current page of elements from this collection. /// </para> /// </summary> public List<DocumentationVersion> Items { get { return this._items; } set { this._items = value; } } // Check to see if Items property is set internal bool IsSetItems() { return this._items != null && this._items.Count > 0; } /// <summary> /// Gets and sets the property Position. /// </summary> public string Position { get { return this._position; } set { this._position = value; } } // Check to see if Position property is set internal bool IsSetPosition() { return this._position != null; } } }
73
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the GetDomainName operation. /// Represents a domain name that is contained in a simpler, more intuitive URL that can /// be called. /// </summary> public partial class GetDomainNameRequest : AmazonAPIGatewayRequest { private string _domainName; /// <summary> /// Gets and sets the property DomainName. /// <para> /// The name of the DomainName resource. /// </para> /// </summary> [AWSProperty(Required=true)] public string DomainName { get { return this._domainName; } set { this._domainName = value; } } // Check to see if DomainName property is set internal bool IsSetDomainName() { return this._domainName != null; } } }
60
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Represents a custom domain name as a user-friendly host name of an API (RestApi). /// </summary> public partial class GetDomainNameResponse : AmazonWebServiceResponse { private string _certificateArn; private string _certificateName; private DateTime? _certificateUploadDate; private string _distributionDomainName; private string _distributionHostedZoneId; private DomainNameStatus _domainNameStatus; private string _domainNameStatusMessage; private EndpointConfiguration _endpointConfiguration; private MutualTlsAuthentication _mutualTlsAuthentication; private string _name; private string _ownershipVerificationCertificateArn; private string _regionalCertificateArn; private string _regionalCertificateName; private string _regionalDomainName; private string _regionalHostedZoneId; private SecurityPolicy _securityPolicy; private Dictionary<string, string> _tags = new Dictionary<string, string>(); /// <summary> /// Gets and sets the property CertificateArn. /// <para> /// The reference to an AWS-managed certificate that will be used by edge-optimized endpoint /// for this domain name. AWS Certificate Manager is the only supported source. /// </para> /// </summary> public string CertificateArn { get { return this._certificateArn; } set { this._certificateArn = value; } } // Check to see if CertificateArn property is set internal bool IsSetCertificateArn() { return this._certificateArn != null; } /// <summary> /// Gets and sets the property CertificateName. /// <para> /// The name of the certificate that will be used by edge-optimized endpoint for this /// domain name. /// </para> /// </summary> public string CertificateName { get { return this._certificateName; } set { this._certificateName = value; } } // Check to see if CertificateName property is set internal bool IsSetCertificateName() { return this._certificateName != null; } /// <summary> /// Gets and sets the property CertificateUploadDate. /// <para> /// The timestamp when the certificate that was used by edge-optimized endpoint for this /// domain name was uploaded. /// </para> /// </summary> public DateTime CertificateUploadDate { get { return this._certificateUploadDate.GetValueOrDefault(); } set { this._certificateUploadDate = value; } } // Check to see if CertificateUploadDate property is set internal bool IsSetCertificateUploadDate() { return this._certificateUploadDate.HasValue; } /// <summary> /// Gets and sets the property DistributionDomainName. /// <para> /// The domain name of the Amazon CloudFront distribution associated with this custom /// domain name for an edge-optimized endpoint. You set up this association when adding /// a DNS record pointing the custom domain name to this distribution name. For more information /// about CloudFront distributions, see the Amazon CloudFront documentation. /// </para> /// </summary> public string DistributionDomainName { get { return this._distributionDomainName; } set { this._distributionDomainName = value; } } // Check to see if DistributionDomainName property is set internal bool IsSetDistributionDomainName() { return this._distributionDomainName != null; } /// <summary> /// Gets and sets the property DistributionHostedZoneId. /// <para> /// The region-agnostic Amazon Route 53 Hosted Zone ID of the edge-optimized endpoint. /// The valid value is <code>Z2FDTNDATAQYW2</code> for all the regions. For more information, /// see Set up a Regional Custom Domain Name and AWS Regions and Endpoints for API Gateway. /// /// </para> /// </summary> public string DistributionHostedZoneId { get { return this._distributionHostedZoneId; } set { this._distributionHostedZoneId = value; } } // Check to see if DistributionHostedZoneId property is set internal bool IsSetDistributionHostedZoneId() { return this._distributionHostedZoneId != null; } /// <summary> /// Gets and sets the property DomainNameStatus. /// <para> /// The status of the DomainName migration. The valid values are <code>AVAILABLE</code> /// and <code>UPDATING</code>. If the status is <code>UPDATING</code>, the domain cannot /// be modified further until the existing operation is complete. If it is <code>AVAILABLE</code>, /// the domain can be updated. /// </para> /// </summary> public DomainNameStatus DomainNameStatus { get { return this._domainNameStatus; } set { this._domainNameStatus = value; } } // Check to see if DomainNameStatus property is set internal bool IsSetDomainNameStatus() { return this._domainNameStatus != null; } /// <summary> /// Gets and sets the property DomainNameStatusMessage. /// <para> /// An optional text message containing detailed information about status of the DomainName /// migration. /// </para> /// </summary> public string DomainNameStatusMessage { get { return this._domainNameStatusMessage; } set { this._domainNameStatusMessage = value; } } // Check to see if DomainNameStatusMessage property is set internal bool IsSetDomainNameStatusMessage() { return this._domainNameStatusMessage != null; } /// <summary> /// Gets and sets the property EndpointConfiguration. /// <para> /// The endpoint configuration of this DomainName showing the endpoint types of the domain /// name. /// </para> /// </summary> public EndpointConfiguration EndpointConfiguration { get { return this._endpointConfiguration; } set { this._endpointConfiguration = value; } } // Check to see if EndpointConfiguration property is set internal bool IsSetEndpointConfiguration() { return this._endpointConfiguration != null; } /// <summary> /// Gets and sets the property MutualTlsAuthentication. /// <para> /// The mutual TLS authentication configuration for a custom domain name. If specified, /// API Gateway performs two-way authentication between the client and the server. Clients /// must present a trusted certificate to access your API. /// </para> /// </summary> public MutualTlsAuthentication MutualTlsAuthentication { get { return this._mutualTlsAuthentication; } set { this._mutualTlsAuthentication = value; } } // Check to see if MutualTlsAuthentication property is set internal bool IsSetMutualTlsAuthentication() { return this._mutualTlsAuthentication != null; } /// <summary> /// Gets and sets the property Name. /// <para> /// The custom domain name as an API host name, for example, <code>my-api.example.com</code>. /// </para> /// </summary> public string Name { get { return this._name; } set { this._name = value; } } // Check to see if Name property is set internal bool IsSetName() { return this._name != null; } /// <summary> /// Gets and sets the property OwnershipVerificationCertificateArn. /// <para> /// The ARN of the public certificate issued by ACM to validate ownership of your custom /// domain. Only required when configuring mutual TLS and using an ACM imported or private /// CA certificate ARN as the regionalCertificateArn. /// </para> /// </summary> public string OwnershipVerificationCertificateArn { get { return this._ownershipVerificationCertificateArn; } set { this._ownershipVerificationCertificateArn = value; } } // Check to see if OwnershipVerificationCertificateArn property is set internal bool IsSetOwnershipVerificationCertificateArn() { return this._ownershipVerificationCertificateArn != null; } /// <summary> /// Gets and sets the property RegionalCertificateArn. /// <para> /// The reference to an AWS-managed certificate that will be used for validating the regional /// domain name. AWS Certificate Manager is the only supported source. /// </para> /// </summary> public string RegionalCertificateArn { get { return this._regionalCertificateArn; } set { this._regionalCertificateArn = value; } } // Check to see if RegionalCertificateArn property is set internal bool IsSetRegionalCertificateArn() { return this._regionalCertificateArn != null; } /// <summary> /// Gets and sets the property RegionalCertificateName. /// <para> /// The name of the certificate that will be used for validating the regional domain name. /// </para> /// </summary> public string RegionalCertificateName { get { return this._regionalCertificateName; } set { this._regionalCertificateName = value; } } // Check to see if RegionalCertificateName property is set internal bool IsSetRegionalCertificateName() { return this._regionalCertificateName != null; } /// <summary> /// Gets and sets the property RegionalDomainName. /// <para> /// The domain name associated with the regional endpoint for this custom domain name. /// You set up this association by adding a DNS record that points the custom domain name /// to this regional domain name. The regional domain name is returned by API Gateway /// when you create a regional endpoint. /// </para> /// </summary> public string RegionalDomainName { get { return this._regionalDomainName; } set { this._regionalDomainName = value; } } // Check to see if RegionalDomainName property is set internal bool IsSetRegionalDomainName() { return this._regionalDomainName != null; } /// <summary> /// Gets and sets the property RegionalHostedZoneId. /// <para> /// The region-specific Amazon Route 53 Hosted Zone ID of the regional endpoint. For more /// information, see Set up a Regional Custom Domain Name and AWS Regions and Endpoints /// for API Gateway. /// </para> /// </summary> public string RegionalHostedZoneId { get { return this._regionalHostedZoneId; } set { this._regionalHostedZoneId = value; } } // Check to see if RegionalHostedZoneId property is set internal bool IsSetRegionalHostedZoneId() { return this._regionalHostedZoneId != null; } /// <summary> /// Gets and sets the property SecurityPolicy. /// <para> /// The Transport Layer Security (TLS) version + cipher suite for this DomainName. The /// valid values are <code>TLS_1_0</code> and <code>TLS_1_2</code>. /// </para> /// </summary> public SecurityPolicy SecurityPolicy { get { return this._securityPolicy; } set { this._securityPolicy = value; } } // Check to see if SecurityPolicy property is set internal bool IsSetSecurityPolicy() { return this._securityPolicy != null; } /// <summary> /// Gets and sets the property Tags. /// <para> /// The collection of tags. Each tag element is associated with a given resource. /// </para> /// </summary> public Dictionary<string, string> Tags { get { return this._tags; } set { this._tags = value; } } // Check to see if Tags property is set internal bool IsSetTags() { return this._tags != null && this._tags.Count > 0; } } }
386
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the GetDomainNames operation. /// Represents a collection of DomainName resources. /// </summary> public partial class GetDomainNamesRequest : AmazonAPIGatewayRequest { private int? _limit; private string _position; /// <summary> /// Gets and sets the property Limit. /// <para> /// The maximum number of returned results per page. The default value is 25 and the maximum /// value is 500. /// </para> /// </summary> public int Limit { get { return this._limit.GetValueOrDefault(); } set { this._limit = value; } } // Check to see if Limit property is set internal bool IsSetLimit() { return this._limit.HasValue; } /// <summary> /// Gets and sets the property Position. /// <para> /// The current pagination position in the paged result set. /// </para> /// </summary> public string Position { get { return this._position; } set { this._position = value; } } // Check to see if Position property is set internal bool IsSetPosition() { return this._position != null; } } }
78
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Represents a collection of DomainName resources. /// </summary> public partial class GetDomainNamesResponse : AmazonWebServiceResponse { private List<DomainName> _items = new List<DomainName>(); private string _position; /// <summary> /// Gets and sets the property Items. /// <para> /// The current page of elements from this collection. /// </para> /// </summary> public List<DomainName> Items { get { return this._items; } set { this._items = value; } } // Check to see if Items property is set internal bool IsSetItems() { return this._items != null && this._items.Count > 0; } /// <summary> /// Gets and sets the property Position. /// </summary> public string Position { get { return this._position; } set { this._position = value; } } // Check to see if Position property is set internal bool IsSetPosition() { return this._position != null; } } }
73
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the GetExport operation. /// Exports a deployed version of a RestApi in a specified format. /// </summary> public partial class GetExportRequest : AmazonAPIGatewayRequest { private string _accepts; private string _exportType; private Dictionary<string, string> _parameters = new Dictionary<string, string>(); private string _restApiId; private string _stageName; /// <summary> /// Gets and sets the property Accepts. /// <para> /// The content-type of the export, for example <code>application/json</code>. Currently /// <code>application/json</code> and <code>application/yaml</code> are supported for /// <code>exportType</code> of<code>oas30</code> and <code>swagger</code>. This should /// be specified in the <code>Accept</code> header for direct API requests. /// </para> /// </summary> public string Accepts { get { return this._accepts; } set { this._accepts = value; } } // Check to see if Accepts property is set internal bool IsSetAccepts() { return this._accepts != null; } /// <summary> /// Gets and sets the property ExportType. /// <para> /// The type of export. Acceptable values are 'oas30' for OpenAPI 3.0.x and 'swagger' /// for Swagger/OpenAPI 2.0. /// </para> /// </summary> [AWSProperty(Required=true)] public string ExportType { get { return this._exportType; } set { this._exportType = value; } } // Check to see if ExportType property is set internal bool IsSetExportType() { return this._exportType != null; } /// <summary> /// Gets and sets the property Parameters. /// <para> /// A key-value map of query string parameters that specify properties of the export, /// depending on the requested <code>exportType</code>. For <code>exportType</code> <code>oas30</code> /// and <code>swagger</code>, any combination of the following parameters are supported: /// <code>extensions='integrations'</code> or <code>extensions='apigateway'</code> will /// export the API with x-amazon-apigateway-integration extensions. <code>extensions='authorizers'</code> /// will export the API with x-amazon-apigateway-authorizer extensions. <code>postman</code> /// will export the API with Postman extensions, allowing for import to the Postman tool /// </para> /// </summary> public Dictionary<string, string> Parameters { get { return this._parameters; } set { this._parameters = value; } } // Check to see if Parameters property is set internal bool IsSetParameters() { return this._parameters != null && this._parameters.Count > 0; } /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } /// <summary> /// Gets and sets the property StageName. /// <para> /// The name of the Stage that will be exported. /// </para> /// </summary> [AWSProperty(Required=true)] public string StageName { get { return this._stageName; } set { this._stageName = value; } } // Check to see if StageName property is set internal bool IsSetStageName() { return this._stageName != null; } } }
147
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// The binary blob response to GetExport, which contains the generated SDK. /// </summary> public partial class GetExportResponse : AmazonWebServiceResponse { private MemoryStream _body; private string _contentDisposition; private string _contentType; /// <summary> /// Gets and sets the property Body. /// <para> /// The binary blob response to GetExport, which contains the export. /// </para> /// </summary> public MemoryStream Body { get { return this._body; } set { this._body = value; } } // Check to see if Body property is set internal bool IsSetBody() { return this._body != null; } /// <summary> /// Gets and sets the property ContentDisposition. /// <para> /// The content-disposition header value in the HTTP response. /// </para> /// </summary> public string ContentDisposition { get { return this._contentDisposition; } set { this._contentDisposition = value; } } // Check to see if ContentDisposition property is set internal bool IsSetContentDisposition() { return this._contentDisposition != null; } /// <summary> /// Gets and sets the property ContentType. /// <para> /// The content-type header value in the HTTP response. This will correspond to a valid /// 'accept' type in the request. /// </para> /// </summary> public string ContentType { get { return this._contentType; } set { this._contentType = value; } } // Check to see if ContentType property is set internal bool IsSetContentType() { return this._contentType != null; } } }
96
aws-sdk-net
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the apigateway-2015-07-09.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.APIGateway.Model { /// <summary> /// Container for the parameters to the GetGatewayResponse operation. /// Gets a GatewayResponse of a specified response type on the given RestApi. /// </summary> public partial class GetGatewayResponseRequest : AmazonAPIGatewayRequest { private GatewayResponseType _responseType; private string _restApiId; /// <summary> /// Gets and sets the property ResponseType. /// <para> /// The response type of the associated GatewayResponse. /// </para> /// </summary> [AWSProperty(Required=true)] public GatewayResponseType ResponseType { get { return this._responseType; } set { this._responseType = value; } } // Check to see if ResponseType property is set internal bool IsSetResponseType() { return this._responseType != null; } /// <summary> /// Gets and sets the property RestApiId. /// <para> /// The string identifier of the associated RestApi. /// </para> /// </summary> [AWSProperty(Required=true)] public string RestApiId { get { return this._restApiId; } set { this._restApiId = value; } } // Check to see if RestApiId property is set internal bool IsSetRestApiId() { return this._restApiId != null; } } }
79